Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am doing a inward/outward stocktake and sometimes it returns a negative
number. I want to be able to display this negative number as zero but display any positive numbers as they are. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
=MAX(your formula,0) -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "sue" wrote in message ... I am doing a inward/outward stocktake and sometimes it returns a negative number. I want to be able to display this negative number as zero but display any positive numbers as they are. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This should do it for you
=IF(A1<0,0,"formula") -- -John Northwest11 Please rate when your question is answered to help us and others know what is helpful. "Ragdyer" wrote: Try this: =MAX(your formula,0) -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "sue" wrote in message ... I am doing a inward/outward stocktake and sometimes it returns a negative number. I want to be able to display this negative number as zero but display any positive numbers as they are. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you want to display 0, but retain the negative value in the cell, you
could try a custom number format: #;"0";0 "sue" wrote: I am doing a inward/outward stocktake and sometimes it returns a negative number. I want to be able to display this negative number as zero but display any positive numbers as they are. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Custom number format codes for negative numbers | Excel Discussion (Misc queries) | |||
change a currency number display | Excel Discussion (Misc queries) | |||
remove negative from number | Excel Worksheet Functions | |||
Change Number to a negative in VBA | Excel Discussion (Misc queries) | |||
How do I change the display of a negative number to just read 0? | Excel Discussion (Misc queries) |