Need help writing an IF Formula

Copper Contributor

How would I write an IF formula for the following example. 

 

If Cell f3 is greater than 16, then in cell G3, return the number 16, however if cell f3 is less than or equal to 16, return the actual number that is in cell f3 to cell G3. 

4 Replies

@tdorschn 

 

Try this:  =IF(F3>=16,16,F3)

I forgot to say the formula goes in cell G3

@tdorschn , or

=MIN(16,F3)

 

Worked Perfect. Thanks so much!!!

@LarBar