I read another post that is exactly what I want to do. They told her to do
the following :
Hello all!!

Is there an "if" formula (or any other) that will return an
entire row?
For example:
Column A has my salespersons names
Columns B - J have other info
i have my "master list" of all contacts, and then I have a separate sheet
for each of my salespeople.
What formula would i use (if it is even possible) to have excel look for
"Mike" on the master sheet & then return all the other info next to his name
onto "Mike's sheet" each time it sees his name ?
Let me know if i need to explain that more clearly!
Thanks in advance for your time & help!
VLOOKUP("mike",Sheet1!$A$1:$J$1000,2,FALSE)
insert a column, B, number it 1-??, count the space over to the column you
want it to pick up the info. if cell B13 has the number 3 in it, it will pick
up that information in col. 3,
so change the 2 in the formula to B?.
VLOOKUP("mike",Sheet1!$A$1:$J$1000,B3,FALSE)
copy and paste accross the page -- CBrausa
------------------------------------------------------------------------
Vlookup("mike",Sheet1!$a$1:$j$1000,3,false) will pull from column c
Vlookup("mike",Sheet1!$a$1:$j$1000,4,false) will pull from column d
Vlookup("mike",Sheet1!$a$1:$j$1000,5,false) will pull from column e
Vlookup("mike",Sheet1!$a$1:$j$1000,6,false) will pull from column f
Vlookup("mike",Sheet1!$a$1:$j$1000,7,false) will pull from column g
etc... etc...
But this is not dynamic. I put this in say Mike's spreadsheet. Like it says
above but the first row is the only thing it pulls from the master
spreadsheet. I try copying the formula down but it just copies the first row
- It does not get any other data for Mike from the Master spreadsheet. If I
enter something else for Mike, it doesn't automatically put the info on
Mike's sheet.