IF formula

marcidee

Board Regular
Joined
May 23, 2016
Messages
196
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

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
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

Forum statistics

Threads
1,223,099
Messages
6,170,111
Members
452,302
Latest member
TaMere

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