formula/function that prints only positve numbers

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a overtime worksheet, but I only want the computed totals above 40
hours to print in the Overtime column (not the negative numbers). Is there a
formula-function that will provide such??
 
Try the MAX function.

=MAX(A1,0)

This returns the larger of the two values A1 or 0. Thus, if A1 is ever
negative, 0 will be returned. You can substitute whatever formula you're
currently using for A1.

Another option, if you don't want 0's, is an IF Statement.

=IF(A1<=0,"",A1)

This states that if A1 (or your formula) is less than or equal to 0, return
a blank (double quotes), otherwise return the value of A1.

HTH,
Elkar
 
THANK YOU...THANK YOU...

Elkar said:
Try the MAX function.

=MAX(A1,0)

This returns the larger of the two values A1 or 0. Thus, if A1 is ever
negative, 0 will be returned. You can substitute whatever formula you're
currently using for A1.

Another option, if you don't want 0's, is an IF Statement.

=IF(A1<=0,"",A1)

This states that if A1 (or your formula) is less than or equal to 0, return
a blank (double quotes), otherwise return the value of A1.

HTH,
Elkar
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top