Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Is there a way that you can keep formulas from showing 0's. I want the
totals to only show when the value is < 0 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Give us an example of the formulas you are using -- davesexcel ------------------------------------------------------------------------ davesexcel's Profile: http://www.excelforum.com/member.php...o&userid=31708 View this thread: http://www.excelforum.com/showthread...hreadid=522146 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
one way:
Format/Cells/Number/Custom ;General;;@ or replace General with your desired format. You can also use something like: =IF(<currentformula<0, <currentformula, "") For instance, if your formula is =SUM(A1:A10) then use =IF(SUM(A1:A10)<0, SUM(A1:A10), "") In article , Sandy wrote: Is there a way that you can keep formulas from showing 0's. I want the totals to only show when the value is < 0 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You can wrap your formula in an IF statement, such as........
=IF(YourFormula<=0,"",YourFormula) Vaya con Dios, Chuck, CABGx3 "Sandy" wrote: Is there a way that you can keep formulas from showing 0's. I want the totals to only show when the value is < 0 |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
What I have is just a simple @SUM all the way down one column, until the
spreadsheet is completed most of the cells show zeros. The big guy doesn't want to see the zeros "if there is no data I don't want to see anything. Well there is no data today but there will be tommorow I don want to have to cut and paste all these every day. Does that help "davesexcel" wrote: Give us an example of the formulas you are using -- davesexcel ------------------------------------------------------------------------ davesexcel's Profile: http://www.excelforum.com/member.php...o&userid=31708 View this thread: http://www.excelforum.com/showthread...hreadid=522146 |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One way:
=IF(COUNT(A:A),SUM(A:A),"") In article , Sandy wrote: What I have is just a simple @SUM all the way down one column, until the spreadsheet is completed most of the cells show zeros. The big guy doesn't want to see the zeros "if there is no data I don't want to see anything. Well there is no data today but there will be tommorow I don want to have to cut and paste all these every day. Does that help "davesexcel" wrote: Give us an example of the formulas you are using -- davesexcel ------------------------------------------------------------------------ davesexcel's Profile: http://www.excelforum.com/member.php...o&userid=31708 View this thread: http://www.excelforum.com/showthread...hreadid=522146 |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Goto tools options view, uncheck zero values -- davesexcel ------------------------------------------------------------------------ davesexcel's Profile: http://www.excelforum.com/member.php...o&userid=31708 View this thread: http://www.excelforum.com/showthread...hreadid=522146 |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Note that real 0 data values will also be hidden, and it applies to the
entire workbook. In article , davesexcel wrote: Goto tools options view, uncheck zero values |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks, never thought of that
"davesexcel" wrote: Goto tools options view, uncheck zero values -- davesexcel ------------------------------------------------------------------------ davesexcel's Profile: http://www.excelforum.com/member.php...o&userid=31708 View this thread: http://www.excelforum.com/showthread...hreadid=522146 |
#10
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I think I have used
=ISERROR(CELL) first go to format, then conditional formatting. Use formula is, type in =ISERROR selcet the range. Then go to format and on the font colour select WHITE. I hope this works for you. "Sandy" wrote: Is there a way that you can keep formulas from showing 0's. I want the totals to only show when the value is < 0 |
#11
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you very much for your reply. I was just looking for this answer.
-- Roger "JE McGimpsey" wrote: one way: Format/Cells/Number/Custom ;General;;@ or replace General with your desired format. You can also use something like: =IF(<currentformula<0, <currentformula, "") For instance, if your formula is =SUM(A1:A10) then use =IF(SUM(A1:A10)<0, SUM(A1:A10), "") In article , Sandy wrote: Is there a way that you can keep formulas from showing 0's. I want the totals to only show when the value is < 0 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to hide formulas? | Excel Discussion (Misc queries) | |||
Lock Columns and Hide Formula's | Excel Worksheet Functions | |||
Problem with named formula's | Excel Worksheet Functions | |||
Formulas | Excel Worksheet Functions | |||
Dynamic Formulas with Dynamic Ranges | Excel Worksheet Functions |