Related:
- Excel: Empty cell in 2007
- Excel mod apk for pc - Download - Spreadsheets
- Kernel for excel repair - Download - Backup and recovery
- Vat calculation excel - Guide
- Menu déroulant excel - Guide
- Excel online macros - Guide
4 responses
mubashir aziz
Posts
190
Registration date
Sunday 12 April 2009
Status
Member
Last seen
16 February 2010
166
28 May 2009 à 22:32
28 May 2009 à 22:32
You just use NA() function and excel chart will treat it as empty cell ..... then you can hide it in printing by File > Page Setup > Sheet > Cell Error <Blank> ...
You can hide Error values by conditional formating by putting this formula =+ISNA(C5) suppose values are in C5 ......
So your formula is
=if((sum(a1:a5))=0,NA(),(sum(a1:a5)))
You can hide Error values by conditional formating by putting this formula =+ISNA(C5) suppose values are in C5 ......
So your formula is
=if((sum(a1:a5))=0,NA(),(sum(a1:a5)))
PicaPica
Posts
1
Registration date
Friday 17 April 2009
Status
Member
Last seen
17 April 2009
2
17 Apr 2009 à 23:51
17 Apr 2009 à 23:51
Did you find an answer?
I have the same problem.
Inan IF-function, I do not know which empty result would make an empty cell.
I have the same problem.
Inan IF-function, I do not know which empty result would make an empty cell.
I had the same problem but the 1st person to post figured out the answer accidently,
=if((sum(a1:a5))=0,"",(sum(a1:a5))) is WRONG
=if((sum(a1:a5))=0," ",(sum(a1:a5))) is RIGHT
i put in the exact formula as him but put " " instead of "" and it works
=if((sum(a1:a5))=0,"",(sum(a1:a5))) is WRONG
=if((sum(a1:a5))=0," ",(sum(a1:a5))) is RIGHT
i put in the exact formula as him but put " " instead of "" and it works
29 Sep 2009 à 17:57
Brilliant ! I've been struggling with this since yesterday, awesome stuff.
(I used the #N/A method - it still seemed to count " " as Zero)
Ta - Nathan.
22 Mar 2012 à 14:12
22 Mar 2012 à 14:22
Found a better solution! Leave your formulas and let them return the zeros.
Then in your chart, add data labels, then format the labels to hide the zeros. Got to Edit Labels, Number options, and use a Custom format and enter 0;;; then click Add. You might have to change the 0 to 0.0 or 0% or whatever is appropriate for your data values.
The format string syntax is:
positive value format; negative value format; zero value format; text value format.
13 Jun 2012 à 08:56