How do I create If then statements

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am looking to create an if then statement to create an equation

If b5 is greater than or equal to B17; then b5*f1

If b5 is less than b17 then b5*f2

Can anyone help me form this into an excel cell to calculate?

Thank you

Julie Niedfeldt
 
Hi Julie
A straight If formula should do that:

=if(B5>=B17,B5*F1,B5*F2)

IF (condition, condition true, condition false)

Best regds

Chris Lav
 

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

Back
Top