I have table which holds payments on a client account. If the client pays on a repeating contract I need a form to basically create a record for each future transaction. IE if the client pays monthly on a year contract it would create 12 records in the transactions table with the due date set to the first of each month.
The fields in the transactions table.
TransactionID(autonumber); Client id(number); Amount(currency); Datedue (short date) ; Paid(y/n box);
The fields in the repeattransactions form
Client id; Start Date; Amount; Frequency (weekly, monthly, quarterly, annually)
The only thoughts I have had is that I can get this form to open another form which pulls the data from my current form and calculates the date on the value in my current form then creates the record.
I don't know whether this will work or whether there is a better, quicker way to do this.
could anyone help me with this or forward some literature about repeating record creation i would be very grateful.
The fields in the transactions table.
TransactionID(autonumber); Client id(number); Amount(currency); Datedue (short date) ; Paid(y/n box);
The fields in the repeattransactions form
Client id; Start Date; Amount; Frequency (weekly, monthly, quarterly, annually)
The only thoughts I have had is that I can get this form to open another form which pulls the data from my current form and calculates the date on the value in my current form then creates the record.
I don't know whether this will work or whether there is a better, quicker way to do this.
could anyone help me with this or forward some literature about repeating record creation i would be very grateful.