dichotomous
Registered User.
- Local time
- Today, 20:48
- Joined
- Oct 19, 2012
- Messages
- 62
I have a data base to manage members of a boat club.
I have a fees table - just used for String. The fees table only has FeesID, Fee.
$72.50, $36.25 $145.00
Members pay fees depending on their category. So, my members table:
MemberID - Autonumber
Name - Shorttext
CardCode# - number
Category - number
If they are a category 1, then they pay the $145.00
If a 2, then, they are a lifetime member and no fee is payable.
If a 6, they are a veteran and pay half price.
Etc.....
I don't want to store fees payable, rather, calculate it in a query.
How can I do this. Where, a category 1 = $145.00.
I thought about an "if and then", procedure, but am probably wrong.
Please help.
thank you.
I have a fees table - just used for String. The fees table only has FeesID, Fee.
$72.50, $36.25 $145.00
Members pay fees depending on their category. So, my members table:
MemberID - Autonumber
Name - Shorttext
CardCode# - number
Category - number
If they are a category 1, then they pay the $145.00
If a 2, then, they are a lifetime member and no fee is payable.
If a 6, they are a veteran and pay half price.
Etc.....
I don't want to store fees payable, rather, calculate it in a query.
How can I do this. Where, a category 1 = $145.00.
I thought about an "if and then", procedure, but am probably wrong.
Please help.
thank you.