Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Have a few LOOKUP arguments setup in a sheet. I need for it to show a blank if there is no value instead of the #N/A error. Anyone know how to do this? -- kermitforney ------------------------------------------------------------------------ kermitforney's Profile: http://www.excelforum.com/member.php...o&userid=32536 View this thread: http://www.excelforum.com/showthread...hreadid=523669 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Try this... =IF(ISERROR(LOOKUP(formula),"",LOOKUP(formula)) -- kraljb ------------------------------------------------------------------------ kraljb's Profile: http://www.excelforum.com/member.php...fo&userid=9955 View this thread: http://www.excelforum.com/showthread...hreadid=523669 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You could use something like this:
=IF(ISERROR(LOOKUP()),"",LOOKUP()) HTH, Elkar "kermitforney" wrote: Have a few LOOKUP arguments setup in a sheet. I need for it to show a blank if there is no value instead of the #N/A error. Anyone know how to do this? -- kermitforney ------------------------------------------------------------------------ kermitforney's Profile: http://www.excelforum.com/member.php...o&userid=32536 View this thread: http://www.excelforum.com/showthread...hreadid=523669 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Thanks guys! I am familiar with ISERROR but I was wondering if there was another way. Just curious I guess. hehe.:) -- kermitforney ------------------------------------------------------------------------ kermitforney's Profile: http://www.excelforum.com/member.php...o&userid=32536 View this thread: http://www.excelforum.com/showthread...hreadid=523669 |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Care to post the LOOKUP formula you have if it's indeed one with the
LOOKUP function? |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You could try:
=IF(ISNA(LOOKUP(formula),"",LOOKUP(formula)) This will only replace #N/A with "", but will report other errors. Hope this helps. Pete |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() instead of iserror you could use if(isblank(lookup(....),"",lookup(...)) HTH, Gary -- GaryE Posted from - http://www.officehelp.in |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Cool, thanks guys. -- kermitforney ------------------------------------------------------------------------ kermitforney's Profile: http://www.excelforum.com/member.php...o&userid=32536 View this thread: http://www.excelforum.com/showthread...hreadid=523669 |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() GaryE Wrote: instead of iserror you could use if(isblank(lookup(....),"",lookup(...)) HTH, Gary -I tries ISBLANK in the same syntax you have shown above but for some reason it still show a 0? Not sure why but there is no error it just displays a -0. ![]() -- kermitforney ------------------------------------------------------------------------ kermitforney's Profile: http://www.excelforum.com/member.php...o&userid=32536 View this thread: http://www.excelforum.com/showthread...hreadid=523669 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Instead of a negative number, I'd like to show zero... | Excel Worksheet Functions | |||
enter numbers in blank cells | Excel Worksheet Functions | |||
CONCATENATE problem with blank cells | Excel Discussion (Misc queries) | |||
Counting blank and filled cells within a range. | Excel Discussion (Misc queries) | |||
UDF and Calculation tree | Links and Linking in Excel |