I have a pretty large spreadsheet to enter all our company's vehicle maintenance logs. I have 3 columns 1. Cost 2. Tax 3. Total Cost. Currently I have it selecting the sales tax from another cell but the problem I am starting to run into is that not all of the places we take the vehicles to have the same tax rate. So I started changing the spreadsheet and started inputting an IF function. The problem I am running into is that it is getting pretty long. I am not sure if the IF function is the best option for this purpose. The other issue I foresee are for the vehicles located at other offices (different cities). If the state would simply have one stupid sale tax rate, I'd be happy but so far I these three tax rates 7%, 7.25% & 7.5%, and I have multiple shops that fall within the same tax rate, but I have to enter each one of them individually.
Here is my formula that isn't all that long, but has the potential to be really long with 30 different shops that we could use throughout the state of Ohio.
=IF(U14=Lists!C$20,Q14*0.075,IF(U14=Lists!C$27,Q14*0.0725,IF(U14=Lists!C$29,Q14*0.07,IF(U14=Lists!C$9,Q14*0.075,0))))
I have 22 tabs in total on my spreadsheet, 17 (1 per vehicle) of them are where I enter each invoice whenever we have a work done on the vehicles. The "Lists" tab contains Column A listing all sorts of repair types, Column C is for the Service Centers, Column J has 5 different Sales Tax Rates. As you can see in my formula, I have 7.5% listed twice because of two different shops and I was about to enter a third when I decided to search online for something easier.
Here is my formula that isn't all that long, but has the potential to be really long with 30 different shops that we could use throughout the state of Ohio.
=IF(U14=Lists!C$20,Q14*0.075,IF(U14=Lists!C$27,Q14*0.0725,IF(U14=Lists!C$29,Q14*0.07,IF(U14=Lists!C$9,Q14*0.075,0))))
I have 22 tabs in total on my spreadsheet, 17 (1 per vehicle) of them are where I enter each invoice whenever we have a work done on the vehicles. The "Lists" tab contains Column A listing all sorts of repair types, Column C is for the Service Centers, Column J has 5 different Sales Tax Rates. As you can see in my formula, I have 7.5% listed twice because of two different shops and I was about to enter a third when I decided to search online for something easier.