Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Dear All,
I regularly check my phone bills and see who I text and call, but when I access my phone bill online, all I get is numbers, as they don't have the names.... I was thinking, if I save this list out and have it in a sheet, excel can look at another sheet and if the number matches replace the number with a name.. Is this easy to do? Regards Paul. |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
You could build a table on that second sheet.
Column A would contain the phone numbers and column B would contain the name. Name that sheet -- Table. Then you could use a formula like this in an empty cell on the sheet with the data: =vlookup(a2,table!a:b,2,false) You'll see an error (#n/a) if there isn't a match. You could hide by changing your formula: =if(isna(vlookup(a2,table!a:b,2,false)),"Missing", vlookup(a2,table!a:b,2,false))) You could use =iferror() in xl2007 to hide the #n/a error. Debra Dalgleish has lots of notes: http://www.contextures.com/xlFunctions02.html (for =vlookup()) and http://contextures.com/xlFunctions02.html#Trouble "Kardon Coupé" wrote: Dear All, I regularly check my phone bills and see who I text and call, but when I access my phone bill online, all I get is numbers, as they don't have the names.... I was thinking, if I save this list out and have it in a sheet, excel can look at another sheet and if the number matches replace the number with a name.. Is this easy to do? Regards Paul. -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
That worked for me, thanks... =-)
"Dave Peterson" wrote in message ... You could build a table on that second sheet. Column A would contain the phone numbers and column B would contain the name. Name that sheet -- Table. Then you could use a formula like this in an empty cell on the sheet with the data: =vlookup(a2,table!a:b,2,false) You'll see an error (#n/a) if there isn't a match. You could hide by changing your formula: =if(isna(vlookup(a2,table!a:b,2,false)),"Missing", vlookup(a2,table!a:b,2,false))) You could use =iferror() in xl2007 to hide the #n/a error. Debra Dalgleish has lots of notes: http://www.contextures.com/xlFunctions02.html (for =vlookup()) and http://contextures.com/xlFunctions02.html#Trouble "Kardon Coupé" wrote: Dear All, I regularly check my phone bills and see who I text and call, but when I access my phone bill online, all I get is numbers, as they don't have the names.... I was thinking, if I save this list out and have it in a sheet, excel can look at another sheet and if the number matches replace the number with a name.. Is this easy to do? Regards Paul. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Replace entire cell content | Excel Discussion (Misc queries) | |||
How to Find/Replace * (asterisk) in cell content | Excel Discussion (Misc queries) | |||
Search and Replace Entire Cell Content | Excel Discussion (Misc queries) | |||
replace the content of cell | Excel Discussion (Misc queries) | |||
Automatically replace cell value with next in list... | Excel Worksheet Functions |