Returning A Minimum Figure

H

Hammer

Cell D9 =sum of Cell D8 (12.5) minus cell D3 (4) giving an answer of 8.5.

How do i get cell D9 to show a minumum of 9 if the answer falls below 9.
 
F

FrankWood

Try this and see if it does what you are looking for.

=IF(D8-D3<=9,9,D8-D3)

Hope it helps,

Frank
 
D

Dave Peterson

=max(9,d8-d3)

if the result of your formula is less than 9, then =max() will use the 9.

You could also use:
=if(d8-d3<9,9,d8-d3)
If you find it easier to remember.
 
M

Ms-Exl-Learner

This will show the result 9 if the D8-D4 value is less than 9 otherwise it
will result you the as per the formula D8-D4
=IF(D8-D4<9,9,D8-D4)

If you want to show the result as blank if the D8-D4 result is greater than
9 then use the below one.
=IF(D8-D4<9,9,"")

Remember to Click Yes, if this post helps!
 

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

Similar Threads

Stripe out duplicate data 5
Simple Calculation Bug 1
multiple IF calculations 6
Pls Help - blank cell/formula issue 7
Payment calculation 1
SUM & OFFSET 1
series of formulas to get to one formula 0
IF Question 3

Top