Need Help with Formula

Status
Not open for further replies.

bamaisgreat

Well-known Member
Joined
Jan 23, 2012
Messages
831
Office Version
  1. 365
Platform
  1. Windows
I need help with the formula below.
I need it to NOT do the 0.09*C4 when CASH WPT is in c4

=IF(F4<>"CASH WPT",0,0.09*C4)
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Do you mean like this...

Code:
=IF(AND(F4<>"CASH WPT",C4="CASH WPT"),0,0.09*C4)
 
Upvote 0
I need TAX 9% which is D4 to be 0 if F4 says Cash WPT
=IF(F4<>"CASH WPT",0,0.09*C4)







<style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>

<colgroup><col style="width: 60px"><col width="62"><col width="55"><col width="100"><col width="100"><col width="100"><col width="100"></colgroup><tbody>
[TD="align: center"]Pallet Number[/TD]
[TD="align: center"]Price Marked[/TD]
[TD="align: center"]Sold For[/TD]
[TD="align: center"]Tax 9%[/TD]
[TD="align: center"]CC 3%[/TD]
[TD="align: center"]Payment Method[/TD]
[TD="align: center"]Total[/TD]

[TD="align: center"]A1[/TD]
[TD="align: center"]350.00[/TD]
[TD="align: center"]325.00[/TD]
[TD="align: center"]29.25[/TD]
[TD="bgcolor: #fafafa, align: center"]0.00[/TD]
[TD="align: center"]Cash WPT



[/TD]
[TD="bgcolor: #ff9900, align: center"]354.25[/TD]

</tbody>
<style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>
 
Upvote 0
Just change the "<>" to an = sign...

Code:
=IF(F4="CASH WPT",0,0.09*C4)
 
Upvote 0
Status
Not open for further replies.

Forum statistics

Threads
1,225,195
Messages
6,183,485
Members
453,162
Latest member
Coldone

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top