Using the "or" with "if"

  • Thread starter Thread starter Dwayne Hoover
  • Start date Start date
D

Dwayne Hoover

Here is my command:

=IF(D16>(D15*0.85),D16*0.01)

Now I also want to add and "or" type command here:

=IF(D16>(D15*0.85)or (E16>E15),D16*0.01)

How would I write it out?
 
Hi Dwayne,

=IF(OR(D16>D15*.85,E16>E15),D16*0.01,"")

or (guessing these are percentages)

=IF(OR(D16>D15*85%,E16>E15),D16*1%,"")


--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Dwayne

=IF(OR(D16>D15*0.85,E16>E15),D16*0.01)

Regards
Peter
 

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