I have a formula =sum(t2*.01*v2) I want the maximum result to be $1500.00
J jv Feb 25, 2005 #3 Peo Sjoblom said: =MAX(1500,sum(t2*.01*v2)) -- Regards, Peo Sjoblom Click to expand...
B BobT Feb 25, 2005 #4 That's a MIN instead of MAX -----Original Message----- =MAX(1500,sum(t2*.01*v2)) -- Regards, Peo Sjoblom . Click to expand...
That's a MIN instead of MAX -----Original Message----- =MAX(1500,sum(t2*.01*v2)) -- Regards, Peo Sjoblom . Click to expand...
J JE McGimpsey Feb 25, 2005 #5 One way: =MIN(1500,T2*V2*0.01) Note that your SUM() is superfluous - it returns the same value as =t2*0.1*v2
One way: =MIN(1500,T2*V2*0.01) Note that your SUM() is superfluous - it returns the same value as =t2*0.1*v2