IF formula

marcidee

Board Regular
Joined
May 23, 2016
Messages
184
Office Version
  1. 2019
Please can someone help me expand this IF formula:

=if( E7 = "20% (VAT on Expenses)", K7 /1.2 , "")

I would like to expand this to:

IF E7 states 'No VAT' or 'Zero Rated Expenses' enter the value of K7 (answer will be placed in M7)

So the whole statement is:
IF E7 states:
No VAT or
Zero Rated Expenses - Insert the value of K7 (in M7)

If E7 has:
VAT on Expenses - K7/1.2 (in M7)

Thank you
Marc
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Try:
Excel Formula:
=if(E7="20% (VAT on Expenses)",K7/1.2,if(or(E7="No Vat",E7="Zero Rated Expenses"),K7,""))
 
Upvote 0
Solution
You are welcome.
 
Upvote 0

Forum statistics

Threads
1,215,972
Messages
6,128,027
Members
449,414
Latest member
sameri

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