I have a workbook with 9 pages. Each of the pages get information from the previous page except the last two which pull information from all the page. Basically it's a daily sales report which automatically generates a weekly report.
On the weekly report I want the cells that pull information from the daily report to remain blank if the daily number is 0. How would I write the custom format for that? If possible, I don't even want the symbol to show up when the cell value is 0.
2007-08-18
09:45:47
·
2 answers
·
asked by
Justin H
7
in
Computers & Internet
➔ Software
Serena: your solution work perfectly except for one thing. When the cell is used to calculate another cell, the calculated value will read #Value! when the value is 0.
For example if c1 has the formula "if(Fri!c1=0,"",Fri!c1)" and the value is 0.
The cell with the formula c1+c5 will read #Value!. But it works fine when c1 has a value other than 0.
2007-08-18
11:03:58 ·
update #1