Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
Ken Ken is offline
external usenet poster
 
Posts: 590
Default how do I display negative numbers a "0"?

If a formula gives me a negative number, I want to disply it as zero. Can
you show me how to make that work? In other words, if a formula creates a
value of
"-14", I want it to show up as "0" in the cell.
  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 207
Default how do I display negative numbers a "0"?

Ken,
If your formula is as follows:
"=A1-B1"

You would need to edit as follows:
"=IF((A1-B1)0,(A1-B1),0)"

What this tells excel is, if A1-B1 is greater than 0 (True), then give me
that result. If A1-B1 is greater than 0 (False), then give me a 0.
hth

"Ken" wrote:

If a formula gives me a negative number, I want to disply it as zero. Can
you show me how to make that work? In other words, if a formula creates a
value of
"-14", I want it to show up as "0" in the cell.

  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 15,768
Default how do I display negative numbers a "0"?

One way...

=MAX(0,your_formula)

=MAX(0,B1-A1)

--
Biff
Microsoft Excel MVP


"Ken" wrote in message
...
If a formula gives me a negative number, I want to disply it as zero.
Can
you show me how to make that work? In other words, if a formula creates a
value of
"-14", I want it to show up as "0" in the cell.



  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 905
Default how do I display negative numbers a "0"?

"Ken" wrote:
if a formula creates a value of "-14",
I want it to show up as "0" in the cell.


If you want to change the value to zero, then:

=MAX(0, A1-A2)

where A1-A2 represents your formula.

If you want the value to remain -14, and you only want to change the way it
is displayed(!), then use a Custom format. The right Custom format to use
depends on what your original format is. If it is General, then:

General;\0;General

PS: I am assuming that you meant the formula creates the number -14, not
the string "-14". Right?


----- original message -----

"Ken" wrote in message
...
If a formula gives me a negative number, I want to disply it as zero.
Can
you show me how to make that work? In other words, if a formula creates a
value of
"-14", I want it to show up as "0" in the cell.


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell Steve Kay Excel Discussion (Misc queries) 2 August 8th 08 01:54 AM
Display "0" for negative numbers Bryce Excel Worksheet Functions 3 April 11th 08 06:58 PM
My Column display as "numbers" instead of "alphabets" ali Excel Discussion (Misc queries) 1 October 24th 07 05:16 AM
"find and replace" negative numbers pk Excel Worksheet Functions 5 March 16th 06 09:39 PM
Vlookup and "-" negative numbers are giving me a #N/A DMB Excel Discussion (Misc queries) 12 January 16th 06 03:11 PM


All times are GMT +1. The time now is 10:13 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"