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 » Database Design
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Form Design - Monthly Cycle



 
 
Thread Tools Display Modes
  #1  
Old October 9th, 2008, 11:02 PM posted to microsoft.public.access.tablesdbdesign
John
external usenet poster
 
Posts: 2,649
Default Form Design - Monthly Cycle

Hi,

I have a table that includes several fields related to the members of a
club. To be a member of this club, you must pay $30 a month. I created a form
that I can enter a new member and his/her payment. My question is how do I
continue the tracking of the payments for the future months? For example,
suppost someone paid their dues on 10/8/2008, (that means that this person is
up do date for October), now how can I enter the payment once the month of
November reaches. Thank you.

John
  #2  
Old October 10th, 2008, 12:39 AM posted to microsoft.public.access.tablesdbdesign
Jeff Boyce
external usenet poster
 
Posts: 8,621
Default Form Design - Monthly Cycle

John

"enter the payment" where?

Since we don't have a very clear description of your table structure (or
your form), it hard to offer any specific suggestions.

If your table were well-normalized, it might look something like:

tblPayment
PaymentID
MemberID
PaymentAmount
PaymentDate

More info, please!

Regards

Jeff Boyce
Microsoft Office/Access MVP

"John" wrote in message
...
Hi,

I have a table that includes several fields related to the members of a
club. To be a member of this club, you must pay $30 a month. I created a
form
that I can enter a new member and his/her payment. My question is how do I
continue the tracking of the payments for the future months? For example,
suppost someone paid their dues on 10/8/2008, (that means that this person
is
up do date for October), now how can I enter the payment once the month of
November reaches. Thank you.

John



  #3  
Old October 10th, 2008, 01:21 AM posted to microsoft.public.access.tablesdbdesign
Steve[_57_]
external usenet poster
 
Posts: 598
Default Form Design - Monthly Cycle

You do it with the following tables:
TblMember
MemberID
Other fields about a member

TblPaymentType
PaymentTypeID
PaymentType

TblPayment
PaymentID
MemberID
PaymentTypeID
PaymentAmount
PaymentDate

Create a form/subform where the main form is based onTblMember and the
subform is based on TblPayment. You will be able to enter new members in the
main form. You will be able to enter recurring payments by a member in the
subform. When a member makes a payment, just navigate to the member in the
main form, click the new record navigation button in the subform and enter
his payment in the subform.

Steve


"John" wrote in message
...
Hi,

I have a table that includes several fields related to the members of a
club. To be a member of this club, you must pay $30 a month. I created a
form
that I can enter a new member and his/her payment. My question is how do I
continue the tracking of the payments for the future months? For example,
suppost someone paid their dues on 10/8/2008, (that means that this person
is
up do date for October), now how can I enter the payment once the month of
November reaches. Thank you.

John



  #4  
Old October 11th, 2008, 06:01 PM posted to microsoft.public.access.tablesdbdesign
John
external usenet poster
 
Posts: 2,649
Default Form Design - Monthly Cycle

Thank you to both of you.

John

"Steve" wrote:

You do it with the following tables:
TblMember
MemberID
Other fields about a member

TblPaymentType
PaymentTypeID
PaymentType

TblPayment
PaymentID
MemberID
PaymentTypeID
PaymentAmount
PaymentDate

Create a form/subform where the main form is based onTblMember and the
subform is based on TblPayment. You will be able to enter new members in the
main form. You will be able to enter recurring payments by a member in the
subform. When a member makes a payment, just navigate to the member in the
main form, click the new record navigation button in the subform and enter
his payment in the subform.

Steve


"John" wrote in message
...
Hi,

I have a table that includes several fields related to the members of a
club. To be a member of this club, you must pay $30 a month. I created a
form
that I can enter a new member and his/her payment. My question is how do I
continue the tracking of the payments for the future months? For example,
suppost someone paid their dues on 10/8/2008, (that means that this person
is
up do date for October), now how can I enter the payment once the month of
November reaches. Thank you.

John




 




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 09:24 AM.


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