Equations

L

links_now

the equation is =SUM(B4*C4)/144 the answer is 2.5 if I want the minimum
answer to be 3 how would I do it or is it possible
 
S

SteveW

Depends on the meaning of your data.

If (and 144 is a clue - square inches in a square foot) you want to round
your
answer up to the next whole number
then use the =ROUNDUP() function
ie =ROUNDUP(SUM(B4*C4)/144,0)

Steve
 
D

David Biddulph

=MAX(3,(B4*C4)/144)

You don't need the SUM() function, as you aren't summing.
 
Top