• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Struggling to get the three results on an IF OR statement

Hi all,

I've attached a quick sheet showing my problem.

I want to record 2.5% of two cells if the other cell states "Credit Card" or "Y", but I can't seem to add on the other result I need.

If the cell states "Debit Card" I want to get a result of 0.3%

The sheet will make it clearer

Thanks guys

Regards

Brian
 

Attachments

  • debit card charge.xlsx
    10.1 KB · Views: 10
Hi Brian ,

Something like this ?

=IF(OR(F4="Y",E4="Credit Card"),(G4+H4)*0.025,IF(E4 = "Debit Card", (G4+H4)*0.03, 0))

Narayan
 
Back
Top