IF formula is greater than X use it, if not use X

D

dschneider3

I'm trying to use the IF function to do the following: IF(C16+C17)*.3>1600,
(C16+C17)*.3, 1600.

In English: If the sum of this range times 30% is greater than 1600 then
display the sum of this range times 30%, else display 1600.

I can't get this to work? Can anyone help me?
 
P

Paul C

You seem to be missing a set of ()
your formula should be
=IF((C16+C17)*.3>1600, (C16+C17)*.3, 1600)
 
J

Joe User

dschneider3 said:
I'm trying to use the IF function to do the following:
IF(C16+C17)*.3>1600, (C16+C17)*.3, 1600.

=MIN(1600, (C16+C17)*30%)


----- original message -----
 
J

John

It's time for me to quit .
This should be it =IF((C16+C17*1.3>1600),(C16+C17)*1.3,1600)
John
 
J

Joe User

Teethless mama said:
Should it be MAX?

ABS'ly. I mix up left and right, too. I even had written MAX initially,
but changed it to MIN at the last minute, ass-u-me-ing I had made the same
mistake and mis-rereading the OP's posting. D'oh!


----- original message -----
 

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

Top