wrong syntax

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

Guest

Im trying to do something like this but i havent gotten the right syntax
if c:4 is >300 and <400 subtract 43 and multiply by .36
 
Hi

2 possible solutions - the first one returns an empty string (or any other
result on your choice), when conditions aren't filled, the other returns 0
in this case:
=IF(AND(C4>300,C4<400),(C4-43)*0.36,"")
=AND(C4>300,C4<400)*(C4-43)*0.36


Arvi Laanemets
 

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