Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am performing a vlookup and looking for data in another worksheet. If the
worksheet doesn't contain a match the vlookup brings back a "#N/A" like it is suppose to. However if it doesn't find a match I want it to show what is in cell "I4" instead of "#N/A". Thanks! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(ISNA("VLOOKUP_formula No quotes",I4,"VLOOKUP_formula No quotes")
HTH, Paul -- "duketter" wrote in message ... I am performing a vlookup and looking for data in another worksheet. If the worksheet doesn't contain a match the vlookup brings back a "#N/A" like it is suppose to. However if it doesn't find a match I want it to show what is in cell "I4" instead of "#N/A". Thanks! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Something like this:
=If(ISNA(Vlookup(25,Sheet2!A1:C100,3,0)),I4,Vlooku p(25,Sheet2!A1:C100,3,0)) -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "duketter" wrote in message ... I am performing a vlookup and looking for data in another worksheet. If the worksheet doesn't contain a match the vlookup brings back a "#N/A" like it is suppose to. However if it doesn't find a match I want it to show what is in cell "I4" instead of "#N/A". Thanks! |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try a formula like this.
=if(isna(Vlookup(...)), I4, Vlookup(...)) -- HTH... Jim Thomlinson "duketter" wrote: I am performing a vlookup and looking for data in another worksheet. If the worksheet doesn't contain a match the vlookup brings back a "#N/A" like it is suppose to. However if it doesn't find a match I want it to show what is in cell "I4" instead of "#N/A". Thanks! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro to select cells in column enter data then press enter | New Users to Excel | |||
Enter multiple numbers in a cell so total shows when enter keypres | Excel Worksheet Functions | |||
Auto enter date when data in enter in another cell | Excel Worksheet Functions | |||
enter data on 1 sheet and make it enter on next avail row on 2nd s | Excel Discussion (Misc queries) | |||
how do I enter a RETURN (Enter) in a cell in EXCEL2003 | Excel Discussion (Misc queries) |