Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am creating an electronic order form and need to show #VALUE! as a blank
cell. When using =IF(ISERROR(A2)="TRUE"," ",<REST OF FORMULA), I can no longer total that column. Any suggestions? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Firstly you are checking for the text string "TRUE", whereas you ought to
check for the boolean value TRUE. Secondly for such a boolean you don't need ...=TRUE, you just need =IF(ISERROR(A2),... Thirdly you are writing a non-zero length string " " where you could get away with the empty string "" Fourthly, you'll find that totalling the column using a formula like =SUM(F1:F14) will work in situations where =F1+F2+... won't. -- David Biddulph "kgb1953" wrote in message ... I am creating an electronic order form and need to show #VALUE! as a blank cell. When using =IF(ISERROR(A2)="TRUE"," ",<REST OF FORMULA), I can no longer total that column. Any suggestions? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
If cell blank return a blank | Excel Worksheet Functions | |||
Return a value to a cell that is blank | Excel Discussion (Misc queries) | |||
return a blank cell | Excel Worksheet Functions | |||
use IF to return a truly blank cell | Excel Discussion (Misc queries) | |||
return zero from a blank cell | Excel Worksheet Functions |