If calculations

C

ClassyCleaning

I need to calculate sales tax from two states with different sales taxes. I
want to designate one cell with a T or N and then have my invoice calculate
the sales tax pertaning to that state depending on what that cell has in it.
How do I build this formula?
 
P

Pete_UK

Something like:

=IF(A1="T",6.5%,IF(A1="N",5%,0))

where A1 contains T or N (and I've guessed the tax rates).

Hope this helps.

Pete
 
C

ClassyCleaning

That worked. Thanks.

Pete_UK said:
Something like:

=IF(A1="T",6.5%,IF(A1="N",5%,0))

where A1 contains T or N (and I've guessed the tax rates).

Hope this helps.

Pete
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top