Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am using the =IF(ISNA(VLOOKUP(...)),0,VLOOKUP(...)) to return a zero value.
For printing purposes I need the 0 to not show in the cell (blank cell). I can do this by using the accounting format, but a dash (-) still shows in the cell. The sheet is protected to protect the formula. How can I protect AND not show anything in the cell WHILE keeping the value at "0"? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can use set the custom format to
;;""; See Worksheet and Excel table basics Formatting numbers in Excel help file for details. "RLD" wrote: I am using the =IF(ISNA(VLOOKUP(...)),0,VLOOKUP(...)) to return a zero value. For printing purposes I need the 0 to not show in the cell (blank cell). I can do this by using the accounting format, but a dash (-) still shows in the cell. The sheet is protected to protect the formula. How can I protect AND not show anything in the cell WHILE keeping the value at "0"? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I cannot use ;;""; because it returns no value. I need the value to remain
at 0 because it is part of another SUM formula. "Hakyab" wrote: You can use set the custom format to ;;""; See Worksheet and Excel table basics Formatting numbers in Excel help file for details. "RLD" wrote: I am using the =IF(ISNA(VLOOKUP(...)),0,VLOOKUP(...)) to return a zero value. For printing purposes I need the 0 to not show in the cell (blank cell). I can do this by using the accounting format, but a dash (-) still shows in the cell. The sheet is protected to protect the formula. How can I protect AND not show anything in the cell WHILE keeping the value at "0"? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try something like:
General;-General;;@ (Positive;Negative;Zero;Text) If you're really using =sum(), you could return "" in your long formula: =if(isna(vlookup()),"",vlookup()) =Sum() will ignore the text (an empty string). But if you're doing arithmetic (like =a1+b1), this won't work. RLD wrote: I cannot use ;;""; because it returns no value. I need the value to remain at 0 because it is part of another SUM formula. "Hakyab" wrote: You can use set the custom format to ;;""; See Worksheet and Excel table basics Formatting numbers in Excel help file for details. "RLD" wrote: I am using the =IF(ISNA(VLOOKUP(...)),0,VLOOKUP(...)) to return a zero value. For printing purposes I need the 0 to not show in the cell (blank cell). I can do this by using the accounting format, but a dash (-) still shows in the cell. The sheet is protected to protect the formula. How can I protect AND not show anything in the cell WHILE keeping the value at "0"? -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi RLD,
Try Tools Options Under the Window Options deselect the Zero value check box. "RLD" wrote: I cannot use ;;""; because it returns no value. I need the value to remain at 0 because it is part of another SUM formula. "Hakyab" wrote: You can use set the custom format to ;;""; See Worksheet and Excel table basics Formatting numbers in Excel help file for details. "RLD" wrote: I am using the =IF(ISNA(VLOOKUP(...)),0,VLOOKUP(...)) to return a zero value. For printing purposes I need the 0 to not show in the cell (blank cell). I can do this by using the accounting format, but a dash (-) still shows in the cell. The sheet is protected to protect the formula. How can I protect AND not show anything in the cell WHILE keeping the value at "0"? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
IF formula returns blank cells--only want values to show | Excel Worksheet Functions | |||
one column of cells show ####. Values show when I open it. Help | Excel Discussion (Misc queries) | |||
Zero values to show blank | Excel Worksheet Functions | |||
show $ in blank cells | Excel Discussion (Misc queries) | |||
zero values in charts-don't want to show as zero, but as blank | Excel Discussion (Misc queries) |