Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Okay,
I'm making a Sales quotation sheet: In it I have a database of customer addresses in columns like this: Column A Column B Column C... Company Address City State Zip So on... I want to be able to select a company in one cell (I've already created a list in Data Validation) and have the address, city, state, etc come up below like this: Company Name (select this cell) Address City, St Zip Phone Fax So in sum: Select one cell, the cells below fill in automatically the address info from the database columns. Make sense? Thanks everyone!!! |
#2
![]() |
|||
|
|||
![]()
If the company names are unique, it looks like you could use =vlookup() to
return those other values: =if(a1="","",vlookup(a1,sheet2!A:G,2,false)) and =if(a1="","",vlookup(a1,sheet2!A:G,3,false)) and so forth. and maybe: =if(a1="","",vlookup(a1,sheet2!A:G,3,false) & ", " & vlookup(a1,sheet2!A:G,4,false) & " " & vlookup(a1,sheet2!A:G,5,false)) (remember to change the lookup range (I used A:G) to match your needs.) Visit Debra Dalgleish's site: http://www.contextures.com/xlFunctions02.html for nice instructions. Jennifer Carr wrote: Okay, I'm making a Sales quotation sheet: In it I have a database of customer addresses in columns like this: Column A Column B Column C... Company Address City State Zip So on... I want to be able to select a company in one cell (I've already created a list in Data Validation) and have the address, city, state, etc come up below like this: Company Name (select this cell) Address City, St Zip Phone Fax So in sum: Select one cell, the cells below fill in automatically the address info from the database columns. Make sense? Thanks everyone!!! -- Dave Peterson |
#3
![]() |
|||
|
|||
![]()
Jennifer Carr wrote:
I knew a Jennifer Carr in college.. at Dickinson MP- -- "Learning is a behavior that results from consequences." B.F. Skinner |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
OsCommerce - Easy Populate Script - CSV/TXT Conversion Problem. | Excel Discussion (Misc queries) | |||
Should be really easy lookup ! | Excel Worksheet Functions | |||
new user with easy question? not easy for me | New Users to Excel | |||
Converting worksheets to workbooks. Is there an easy way? | Excel Discussion (Misc queries) | |||
An easy macro question and one I believe to be a little more diffi | Excel Worksheet Functions |