Fill Cells From A List On Another Sheet

Jan 10, 2009

I need to populate a range of cells with names from a list on another sheet based on the contents of another cell.

In the attached example;

on sheet 2 cell E3 has a number in it that corresponds to a number in column D on sheet 1, I want to use that as the reference to fill in cell E4 on sheet 2 with the value in column A on sheet 1, then I need to populate the YELLOW cells on sheet 2 with the names from sheet 1 column C that also match the values in sheet 2 cell E3.

The attached file has an example. I have been trying to use LOOKUP and VLOOKUP but can't get it to work.

Can someone please take a look at this for me?

View 6 Replies


ADVERTISEMENT

Dropdown List To Auto-fill Cells

Feb 19, 2013

I would like to auto-fill cells based on what I select from a drop down list.

For Example:

Drop Down List is located in A1(already created). Let's say it lists items like bathroom,front of building, dinning room etc.

I have created on sheet 2 a list of responsibilities for each item on the drop list. The list has a header for example bathroom and a below it list the responsibilities. I did this for every item on the drop list.

Now, is it possible to select bathroom from the drop down land when selected the list I created in sheet 2 show up in the cell next to bathroom? Also, is it possible to have this happen every time i select a different item from the drop down list?

View 6 Replies View Related

Fill Cells With Lookup From Dropdown List

Feb 18, 2007

I want our sales people to be able to select from the list of products we manufacture and have they corresponding information automatically populate. For example, if the salesperson is trying to put a quote together for 500 lbs. of Stainless Steel nails, they can select the correct size and have the list price, cost, margin (etc...) fill in the adjacent cells automatically.

View 5 Replies View Related

Selecting Multiple Cells To Fill From Dropdown List

Apr 1, 2014

I've made a drop down list and when I select multiple cells and choose from the drop down list, it only fills one. Here's pictures:

So in that first picture, I've selected multiple cells. But when I drop down the menu and click my selection, this happens:

Why is it that all the cells I've selected does not fill with the option that I chose from the drop down. I highly doubt that I have to manually click all the ones I want to fill with what I choose from the drop down list.

View 1 Replies View Related

Auto Fill Cells Depending On Drop Down List Selection

Sep 22, 2008

I am trying to make a calendar spreadsheet to enable me to track allowance payments i am due from my company.

This payment is worked out by three conditions - where i am working (7 regions), how many days of the week (4,5,6 or7) and how many hours (<7,8-9 or 10-12)

I have made drop down lists to select each of the values for the three conditions and want to show the total for them

i can total the entire spreadheet for the month up using fairly large "COUNTIF" statements, but i want to be able to show what the exact amount is in each cell not just a complete total.

i.e. i am away for 6 days i get £15 extra, if i am in Europe i get another £50 and if i work 12 hours i get £30.

I want to be able to calculate this total in each cell for that day.

I can send a copy of the spreadsheet i have got at the moment if that will make things clearer than what i have tried to explain.

View 12 Replies View Related

Use Dropdown To Fill Cells From A Different Sheet

Jan 6, 2010

I have 2 sheets that are used for an inventory that tracks hours on a tool that we use where I work. One sheet allows the user to add items to the inventory along with the current hours on the items. On another sheet, I have several dropdown boxes based on the category of items that are autopopulated with the item's serial numbers through data validation. So far, I'm only able to have the serial numbers fill the dropdown boxes, but I also need to have the hours associated with the individual serial numbers transfer over to this sheet as well in the cell adjacent to the dropdown list.

I assume the pseudocode for this would be for each cell in the dropdown sheet, if it matches a cell in the inventory sheet, grab the cell's value in the hours column and paste it into the adjacent cell on the dropdown sheet, but I'm not sure how to do the actual VBA for it.
I've included my sanitized workbook so you get a better idea of what I need.

View 8 Replies View Related

Select An Item From Drop Down List And Automatically Fill A Number Of Cells

Nov 15, 2008

I am kind of new to Excel programming and would like to know if there is a solution to my problem. What I need is to have a dropdown list (I know how to make this) then select an item from the drop down, then based on the name i select, Excel automatically fill up the rest of the cells.

For example, from the drop down list I select the company name then Excel automatically type the address, phone number, Fax number and the contact name of the company for me in corresponding cells. Is there a way to do this?

View 3 Replies View Related

VBA To Fill In Three Cells Based On Data Validation Dropdown List Selection

Dec 26, 2012

I've created seven names in my data validation source list on Sheet 3 in the following range of cells, A2-A7. My data drop down validation list is located on Sheet 1, A2 in the same workbook. I would like to trigger a macro based on the name I select in this drop validation drop down list that will fill out an address, telephone number, and email address in the following cells next to my data validation drop down list on Sheet 1: B2, B3, and B4. I want it to be designed so that users will select a name and have that person's corresponding address, telephone number, and email address fill right next to their name on the same sheet.

View 6 Replies View Related

Compare Two Cells If They Match Then Fill In The Cell From Another Sheet?

Oct 19, 2012

I am trying to compare two cells and if they match then I want to fill in a list on sheet one from sheet two.

I have the absolute working when I compare one cell to one cell, but I can't get it to compare one cell to a range of cells (two weeks of days)

Here is the absolute one I have working:

=IF(C1='Data Sorted'!A1,'Data Sorted'!A2,"")

Here is what I tried that doesn't work:

=IF(C1='Data Sorted'!A1:N1,'Data Sorted'!A2,"")

View 6 Replies View Related

Search For Text And Then Auto Fill Cells On New Sheet?

Aug 18, 2014

I need to create a formula that searches the first table and autofills the second based on the teacher name. So when Mr. M is listed in column e, all the data to the right automatically appears on the second sheet.

View 3 Replies View Related

Cells Cross Referancing Data From Another Sheet To Fill Themselves In?

Apr 15, 2009

I would like cells to fill themselves in automatically on one sheet, by getting the figure from the cell to the right of them, and seeing where the same figure lies on a different sheet. which ever row this figure lies in will be used to grab a different figure from colum "C" of the same row. This is the figure i would like to be put back on the first sheet.

Im aware that i havent explained this very well but i hope that my attached spread sheet with a couple of notes and highlighted bit will explain it much better.

Thank you very much in advance to anyone who can help me with this!

Jake

View 14 Replies View Related

VB To Fill Color Yellow The Same Two Cells On Each Sheet In Workbook

Aug 20, 2013

I have a macro that generates multiple sheets in a work book then formats the data on each sheet the same, I would like to highlight the same two cells in each sheet with a background color of yellow. My format code is below, I can seem to get fill to work with the sh. property

For Each sh In Worksheets
sh.Range("O1").Value = "Total Amount"
sh.Range("P1").FormulaR1C1 = "=SUM(RC[-2]:R[99]C[-2])"

[Code]...

View 2 Replies View Related

Auto Fill Dates: The Sheet To List The Dates In A Column For Each Month Automatically

Jun 17, 2007

I have a sheet with a date and the number of months on it which will change. I need the sheet to list the dates in a column for each month automatically: e.g. Two cells contain date “jan07” and the period “10” months. The rows A1 to A10 should have jan07…jan16 listed automatically. If I change then change the number of month to 11 I would like the rows A1 to A11 to update automatically.

View 6 Replies View Related

Can I Fill Non-adjacent Cells With The Fill Feature? (example Listed)

Nov 7, 2008

how to enter data in non-adjacent cells using a fill command.

Here is what I am trying to do:
in the column, I am holding ctrl button to select every 10th cell down the sheet. I need to enter a date in every selected cell that is exactly 7 days apart, i.e., 11/7/08 then 11/14/08 then 11/21/08, etc.... but no other dates or data.

I have tried to figure out a way to do this other than manually, but am confounded.

View 9 Replies View Related

Find Row List Box, Copy Cells To New Sheet

May 5, 2007

I have a large sheet with serial numbers of machines in one column and more or less important information in other columns.
I’m trying to write a macro that is activated by selecting a serial number from a list box. The macro should then find the right row and copy cells from that row and paste them on another sheet to create a summary of that machine.

View 9 Replies View Related

Search Contents Of Cells In Row From List Of Text Values On A Separate Sheet

Jul 13, 2006

If this has been requested already, I apologize, please direct me to the right thread and flog me with USB cable. I've been searching the forum for an answer for a couple of hours now for the answer to this:

I have a list of words in column A on a sheet and I'm trying to write a formula on another sheet that will check all cells on a pre-populated row and return a value if any of the words from the list on are contained in any of the cells in the row. I've attached an example spreadsheet

View 3 Replies View Related

Fill Data Automatically In Other Sheet Using Name Or Text Into Particular Sheet?

Dec 21, 2013

i want automatically filled data in customers sheet when i enter his name only (in other sheet)

i am using this formula but this gives me empty cell in between when name comes after a few cells

=IF('all people'!A3:A6='all people'!$K$1,'all people'!B3:B6,"")

some one gave me example workbook but that formula is working in the same sheet

and i need it to work in another sheet and i could not do that

download sample work book to understand this formula

View 8 Replies View Related

Excel 2007 :: Auto Fill From Sheet 1 To Sheet 2?

Feb 9, 2012

I want to do the following -

Whenever I enter a value say "X" in Sheet1, ColumnA I want the value to be autofilled into sheet 2, ColumnA if and only if value does not exist in sheet2, Column A.

How to achieve this in Excel 2007 ?

View 1 Replies View Related

Asymmetric Fill (fill Out Column B Referencing Column A, But Only Incrementing By 1 Row In A Every 2 Cells In B)

Feb 1, 2010

Is there some easy way to fill out column B referencing column A, but only incrementing by 1 row in A every 2 cells in B?

Example:

Column A:
A1 = 1
A2 = 2
A3 = 3
etc...

Column B (I would like to fill this, referencing column A):
B1 = A1
B2 empty
B3 = A2
B4 empty
B5 = A3
etc

View 4 Replies View Related

List Box Fill Query

Jan 29, 2008

I want to fill a list box with a range from the active worksheet. I want the user to be able to mulit select names and these then be transferred to another worksheet to capture training. I'm getting runtime error 381.

View 9 Replies View Related

Fill Down In Filtered List With Vba

Apr 25, 2007

I have a macro I'm working on and am requesting your help.

In my filtered data, I have an empty column. For each cell in that column, I'd like to insert text, based on the results of the filter criteria.

I am using VBA only, modifying a huge .txt file into a .xls file. The ranges are dynamic.

I am successful in my results, aside from this issue.

View 6 Replies View Related

Fill Blanks In List

Sep 19, 2007

How to fill or copy contents of

View 4 Replies View Related

Fill List Validation Without Range

Jun 22, 2009

I'm trying to fill a list with some hard values. When I use the macro recorder it adds formula="choice 1;choice 2; etc", these are all separate values in the list. However if I use this within a macro I only have one option with all three values combined.

View 4 Replies View Related

How To Elegantly Fill A List / Combobox

Feb 29, 2008

I am using the method below to fill a list or combo box. It works but is slow when there are to many entries.

Is there a more elegant way to do this? I heard there was a method using the Excel filter function that makes the whole procedure below not necessary....

View 9 Replies View Related

XL07 List Box Fill With No Repeats

Jan 2, 2009

programming in VBA as compared to python, java, and c++. My question is relatively simple. I have a listbox that I want to populate. I've figured out how to populate it using the ListFillRange, but can't figure how to populate so that I have a list of items, but doubles or repeats don't show up. I have a list of 1's, 2's, 3's, and 4's and I only want 1, 2,3,4 showing up as well as any additional numbers added to the list.

View 9 Replies View Related

Auto Fill In- Way To Take A Drop Down List

Nov 8, 2009

is there a way to take a drop down list and pick 1 then have excel fill in the info i seven cell example if list box is 3 then cell 1-7 = 1 and is list box is 1 cell 1=1 cell 2-0 cell 3 = 0 cell 4-7 = 1

View 9 Replies View Related

Fill Blanks In List With Cell Above

Aug 12, 2006

at present i have data in column A That could look like

a1 = fred
a2 to a6 is blank
a7 =bill
a8 is blank
a9 = steve
a10 to a 20 is blank

what the idea is that a1 get copied to a2,a3,a4,a5,a6
a7 get copied to a8
a9 get copied to a10 to a20

these cells could vary on what information is in them and what cells contain information or not

my macro goes to a1 looks for the last cell with data in it then copies itto the cell below then loops back to a1 ans repeats itself

this macro takes about 1 minute to run as the column has about 5000 cells being used. is there a faster way to do this

View 9 Replies View Related

Fill ListBox & Allow Editing Of List

Oct 17, 2006

I am trying to set the controlscource property for a listbox but i get a "Invalid Property Value" error. I am useing the

ActiveWorkbook. Names.Add Name:="Amm_Edit", RefersToR1C1:="=Developments!R" & (Rynommer + 4) & "C" & Kolomnommer & ":R" & (Rynommer + 33) & "C" & Kolomnommer
ListBox0.ControlSource = "Amm_Edit"

The first line definetly works but the second gives me the error. Why is this?

I want the user to be able to edit some of the data I have in excel. It there some other way around this problem?

View 9 Replies View Related

Fill List Based On Chosen Value In Another

Jan 14, 2008

I am trying to use combo box to display my data, here are the details. I am having 20 Departments, and have Budget and Actual values for those Departments for each month for the year 2008, tell me the logic to use combo box as dropdown list for Dept. and how can i get values in first 5 to 10 rows after changing the Department in Dropdown list(Combo Box)

View 5 Replies View Related

List/Fill Numbers Between Two Values

May 9, 2008

I have two numbers...let's say 1 to 10.

I would like to fill in the middle numbers to lst in Excel as 1 2 3 4 5 6 7 8 9 10.

see attached for an example of waht I'm trying to do.

I can manually do this with the fill handle but I have numbers to fill in the thousands in some cases and tens in others. I would like to automate this process if possible.

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved