if function?

  • Thread starter Thread starter Joann
  • Start date Start date
J

Joann

Ok, I have a cell that I want to populate below but i don't know how to write
this formula....

If K27<.85, then I want the result to be J27-Q27.
But if K27>.85, then I want the result to be Q27.

Can you please help me write this formula?

Joann
 
What about if it is equal to .85 ? In my example I assume less or equal .85

=IF(K27<=0.85,J27-Q27,Q27)
 
Back
Top