Formula Help

  • Thread starter Thread starter picktr
  • Start date Start date
P

picktr

=SUM(I5-35)*0.8

I need the above formula, in cell K5,
to also include-

If the result is >= 22
True=22
False=SUM(I5-35)*0.8

Thanks

To
 
Excel has an IF function with this format:

IF( expression , true value , false value )

So in your example, it would be:

=IF( SUM(I5-35)*0.8 >= 22 , 22 , SUM(I5-35)*0.8 )

-Robert
 
Try this:

=MIN(0.8*(I5-35),22)
--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


=SUM(I5-35)*0.8

I need the above formula, in cell K5,
to also include-

If the result is >= 22
True=22
False=SUM(I5-35)*0.8

Thanks

Tom
 
Why the SUM function?

--

Regards,

Peo Sjoblom

Excel has an IF function with this format:

IF( expression , true value , false value )

So in your example, it would be:

=IF( SUM(I5-35)*0.8 >= 22 , 22 , SUM(I5-35)*0.8 )

-Robert
 

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


Back
Top