![]() |
Vlookup if #N/A then enter enter data in cell I4
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! |
Vlookup if #N/A then enter enter data in cell I4
=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! |
Vlookup if #N/A then enter enter data in cell I4
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! |
Vlookup if #N/A then enter enter data in cell I4
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! |
All times are GMT +1. The time now is 02:46 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com