Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
I hope I can explain this clearly.
I need advise on how to write a formula that will: 1) look thru a string of cells in a column for a match to a number specified in another cell 2)then return the person name located in the cell next to the match Sounds simple except ther will be multiple matches to the number and each match can have a different name. I need to show all the names that match, seperated by a comma, in this one cell. |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
The VLOOKUP function should do this. If the value to be matched is in A1 and
the list of data is in B1:C100, then use =VLOOKUP(A1,B1:C100,2,FALSE) That will scan down column B until a value matches A1, go to the next column and return the data there. If no match is found, the formula will return #N/A. The FALSE in the formula indicates that VLOOKUP is to match the exact value in A1. -- Cordially, Chip Pearson Microsoft Most Valuable Professional Excel Product Group Pearson Software Consulting, LLC www.cpearson.com (email on web site) "PSU35" wrote in message ... I hope I can explain this clearly. I need advise on how to write a formula that will: 1) look thru a string of cells in a column for a match to a number specified in another cell 2)then return the person name located in the cell next to the match Sounds simple except ther will be multiple matches to the number and each match can have a different name. I need to show all the names that match, seperated by a comma, in this one cell. |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Chip
What is the FALSE for? Do I replace that with something ? "Chip Pearson" wrote: The VLOOKUP function should do this. If the value to be matched is in A1 and the list of data is in B1:C100, then use =VLOOKUP(A1,B1:C100,2,FALSE) That will scan down column B until a value matches A1, go to the next column and return the data there. If no match is found, the formula will return #N/A. The FALSE in the formula indicates that VLOOKUP is to match the exact value in A1. -- Cordially, Chip Pearson Microsoft Most Valuable Professional Excel Product Group Pearson Software Consulting, LLC www.cpearson.com (email on web site) "PSU35" wrote in message ... I hope I can explain this clearly. I need advise on how to write a formula that will: 1) look thru a string of cells in a column for a match to a number specified in another cell 2)then return the person name located in the cell next to the match Sounds simple except ther will be multiple matches to the number and each match can have a different name. I need to show all the names that match, seperated by a comma, in this one cell. |
#4
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Chip
Tried the formula with "False" and it returns only one name, the first one it see's. Without "False" it return the last name it see's. It's not giving me all the names. "Chip Pearson" wrote: The VLOOKUP function should do this. If the value to be matched is in A1 and the list of data is in B1:C100, then use =VLOOKUP(A1,B1:C100,2,FALSE) That will scan down column B until a value matches A1, go to the next column and return the data there. If no match is found, the formula will return #N/A. The FALSE in the formula indicates that VLOOKUP is to match the exact value in A1. -- Cordially, Chip Pearson Microsoft Most Valuable Professional Excel Product Group Pearson Software Consulting, LLC www.cpearson.com (email on web site) "PSU35" wrote in message ... I hope I can explain this clearly. I need advise on how to write a formula that will: 1) look thru a string of cells in a column for a match to a number specified in another cell 2)then return the person name located in the cell next to the match Sounds simple except ther will be multiple matches to the number and each match can have a different name. I need to show all the names that match, seperated by a comma, in this one cell. |
#5
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Use datafilterautofilter on the number
-- Don Guillett Microsoft MVP Excel SalesAid Software "PSU35" wrote in message ... I hope I can explain this clearly. I need advise on how to write a formula that will: 1) look thru a string of cells in a column for a match to a number specified in another cell 2)then return the person name located in the cell next to the match Sounds simple except ther will be multiple matches to the number and each match can have a different name. I need to show all the names that match, seperated by a comma, in this one cell. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Is there a formula to capture the hyperlink from a cell? | Excel Worksheet Functions | |||
Macro to capture worksheet names | Excel Worksheet Functions | |||
'IF' FORMULA TO CAPTURE CERTAIN CELL VALUES | Excel Worksheet Functions | |||
'IF' FORMULA TO CAPTURE CERTAIN CELL VALUES | Excel Worksheet Functions | |||
'IF' FORMULA TO CAPTURE CERTAIN CELL VALUES | Excel Worksheet Functions |