Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am using vlookup to return data for a particular reference number. If the
reference number is not available I would like to replace the #N/A returns with the wording "No Response". Is this possible? Thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try
=IF(ISNA(your_formula),"No response",your_formula) HTH JG "jimar" wrote: I am using vlookup to return data for a particular reference number. If the reference number is not available I would like to replace the #N/A returns with the wording "No Response". Is this possible? Thanks |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks for your answer but I've tried using your example and the formula is:-
=IF(ISNA(VLOOKUP($A6,'Voluntary Sector Final.xls'!voluntary,8,FALSE),"No Response",VLOOKUP($A6,'Voluntary Sector Final.xls'!voluntary,8,FALSE))) However my worksheet won't accept it and is indicating difficulty wth the "No Response" part of the formula. Any ideas? "pinmaster" wrote: Try =IF(ISNA(your_formula),"No response",your_formula) HTH JG "jimar" wrote: I am using vlookup to return data for a particular reference number. If the reference number is not available I would like to replace the #N/A returns with the wording "No Response". Is this possible? Thanks |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One of your parentheses is in the wrong place, try:
=IF(ISNA(VLOOKUP($A6,'Voluntary Sector Final.xls'!voluntary,8,FALSE)),"No Response",VLOOKUP($A6,'Voluntary Sector Final.xls'!voluntary,8,FALSE)) Regards JG "jimar" wrote: Thanks for your answer but I've tried using your example and the formula is:- =IF(ISNA(VLOOKUP($A6,'Voluntary Sector Final.xls'!voluntary,8,FALSE),"No Response",VLOOKUP($A6,'Voluntary Sector Final.xls'!voluntary,8,FALSE))) However my worksheet won't accept it and is indicating difficulty wth the "No Response" part of the formula. Any ideas? "pinmaster" wrote: Try =IF(ISNA(your_formula),"No response",your_formula) HTH JG "jimar" wrote: I am using vlookup to return data for a particular reference number. If the reference number is not available I would like to replace the #N/A returns with the wording "No Response". Is this possible? Thanks |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks, it works perfectly.
"pinmaster" wrote: One of your parentheses is in the wrong place, try: =IF(ISNA(VLOOKUP($A6,'Voluntary Sector Final.xls'!voluntary,8,FALSE)),"No Response",VLOOKUP($A6,'Voluntary Sector Final.xls'!voluntary,8,FALSE)) Regards JG "jimar" wrote: Thanks for your answer but I've tried using your example and the formula is:- =IF(ISNA(VLOOKUP($A6,'Voluntary Sector Final.xls'!voluntary,8,FALSE),"No Response",VLOOKUP($A6,'Voluntary Sector Final.xls'!voluntary,8,FALSE))) However my worksheet won't accept it and is indicating difficulty wth the "No Response" part of the formula. Any ideas? "pinmaster" wrote: Try =IF(ISNA(your_formula),"No response",your_formula) HTH JG "jimar" wrote: I am using vlookup to return data for a particular reference number. If the reference number is not available I would like to replace the #N/A returns with the wording "No Response". Is this possible? Thanks |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(ISNA(VLOOKUP)),"NO RESPONSE",VLOOKUP())
"jimar" wrote: I am using vlookup to return data for a particular reference number. If the reference number is not available I would like to replace the #N/A returns with the wording "No Response". Is this possible? Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Adding "and" to Spellnumber code | Excel Discussion (Misc queries) | |||
VLOOKUP result is not showing up - only the formula | Excel Worksheet Functions | |||
EXCEL:NUMBER TO GREEK WORDS | Excel Worksheet Functions | |||
vlookup and filename returning same result on each sheet. | Excel Discussion (Misc queries) | |||
Conversion | Excel Worksheet Functions |