Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I need to have a cell display a number or zero whichever is greater.
example: D35-H21 OR ZERO WHICH EVER IS GREATER |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=max(D35-H21,0)
-- Regards, Dave "cfiser" wrote: I need to have a cell display a number or zero whichever is greater. example: D35-H21 OR ZERO WHICH EVER IS GREATER |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=MAX(D35-H21,0)
-- Regards, Peo Sjoblom "cfiser" wrote in message ... I need to have a cell display a number or zero whichever is greater. example: D35-H21 OR ZERO WHICH EVER IS GREATER |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() This should work. =IF(D35-H21<0,0,D35-H21) Cheers, Steve -- SteveG ------------------------------------------------------------------------ SteveG's Profile: http://www.excelforum.com/member.php...fo&userid=7571 View this thread: http://www.excelforum.com/showthread...hreadid=490192 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
THANK YOU, THATS WHAT I NEEDED
"David Billigmeier" wrote: =max(D35-H21,0) -- Regards, Dave "cfiser" wrote: I need to have a cell display a number or zero whichever is greater. example: D35-H21 OR ZERO WHICH EVER IS GREATER |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
THANK YOU, THATS EXACTLY WHAT I NEEDED
"Peo Sjoblom" wrote: =MAX(D35-H21,0) -- Regards, Peo Sjoblom "cfiser" wrote in message ... I need to have a cell display a number or zero whichever is greater. example: D35-H21 OR ZERO WHICH EVER IS GREATER |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
counting number of times value is greater than previous week | Excel Worksheet Functions | |||
2nd attempt ~ complicated formula | Excel Worksheet Functions | |||
change display font to actual selected font | Excel Discussion (Misc queries) | |||
Display ONLY fraction portion of number | Excel Discussion (Misc queries) | |||
How do I multiply Column G Totals by a number and display the res. | Excel Discussion (Misc queries) |