A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Tax rate changes by date



 
 
Thread Tools Display Modes
  #1  
Old September 6th, 2006, 06:55 AM posted to microsoft.public.access.forms
Len Chaston
external usenet poster
 
Posts: 4
Default Tax rate changes by date

I have a simple database for issuing purchase orders. I have a table & form
for the main PO and then another table/subform for the individual items on
the PO. I have 2 fields for the taxes in our Province - Provincial Sales Tax
(PST) and our federal Goods & Services Tax (GST). These are logical fields
if the taxes apply to the PO item.

Our GST just changed on July 1st, and there is rumours of our PST changing
some time early next year.

I have seen a thread for being able to calculate the taxes based on the
effective date of the tax, but I can no longer find it, and I did not
understand it completely.

I have created a table called Tax Rate, which has the fields:
TaxID (primary key)
TaxType
TaxRate
TaxEffectiveDate

How do I calculate the taxes on the individual PO items, based on the date
of the PO?

Thanks in advance for the help!
  #2  
Old September 6th, 2006, 09:52 AM posted to microsoft.public.access.forms
Allen Browne
external usenet poster
 
Posts: 11,706
Default Tax rate changes by date

Instead of logical fields for PST and GST (yes/no), use fields where you
store the tax *rate*:
PstRate Number (size Double, format Percent)
GstRate Number (size Double, format Percent)

This solves all the problems: you can:
- Use 0 for a row that is tax-exempt.
- Set the rate to whatever is appropriate at the time.
- Retain the right values for old records when the tax changes.
- Cope with sales in different regions (where tax rates are different.)
- Even handle regions that have different tax rates on differents product
types.

I'm not sure if both rates can apply to one item. If not, it would be better
to use these 2 fields instead:
TaxType drop-down list for "GST" or "PST"
TaxRate Number the rate of gst/pst that applies in this case.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Len Chaston" wrote in message
...
I have a simple database for issuing purchase orders. I have a table &
form
for the main PO and then another table/subform for the individual items on
the PO. I have 2 fields for the taxes in our Province - Provincial Sales
Tax
(PST) and our federal Goods & Services Tax (GST). These are logical
fields
if the taxes apply to the PO item.

Our GST just changed on July 1st, and there is rumours of our PST changing
some time early next year.

I have seen a thread for being able to calculate the taxes based on the
effective date of the tax, but I can no longer find it, and I did not
understand it completely.

I have created a table called Tax Rate, which has the fields:
TaxID (primary key)
TaxType
TaxRate
TaxEffectiveDate

How do I calculate the taxes on the individual PO items, based on the date
of the PO?

Thanks in advance for the help!



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 12:38 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.