Need formula to add VAT in conditions

jimmmi

Board Regular
Joined
Jun 28, 2014
Messages
86
Hello i need a formula which adds VAT 13% if a specific word entered in cell.
In red i explain what i need. I have to type of invoices, one that i add VAT 13% and the other which i don't.
If i add the word "export invoice" in B3, i want the E3 total to just copy to F3.
I i add the word normal Invoice like B2 i want the formula to copy and add 13% to F2.
Help me please
Excel-Example_zpsisymybxz.jpg
 
It depends on which type of invoice you don't enter a type for.

If you leave it blank for normal invoices
=IF(b2="Export Invoice",E2,IF(OR(B2="",B2="Normal Invoice"),E2*1.13,"Check invoice type"))

If you leave it blank for export invoices
=IF(OR(B2="",b2="Export Invoice"),E2,IF(B2="Normal Invoice",E2*1.13,"Check invoice type"))

If you are not consistent with data entry then excel will also not be consistent.
 
Upvote 0

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.

Forum statistics

Threads
1,215,771
Messages
6,126,796
Members
449,337
Latest member
BBV123

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