perrydaniel
Technical User
I have two tables.
1. ClientTable (ClientId key, autonumber)
2. RequirementTable (RequirementID key, autonumber)
The Client can have many requirements
Example
Client 1 John
Requirement 1 Tea
Requirement 2 Coffee
Client 2 Peter
Requirement 3 Tea
What I would like is Client 2s requirements to automatically go back to 1 each time. I am finding that the increment is ongoing, rather than starting from 1 for each new client. I presume that it is because i have autonumber as the datatype for REQUIREMENTID, but what should I use, and how do I make the requirementID increment by 1 for each new client?
Many thanks
Hope I have explained myself well enough
Perry
1. ClientTable (ClientId key, autonumber)
2. RequirementTable (RequirementID key, autonumber)
The Client can have many requirements
Example
Client 1 John
Requirement 1 Tea
Requirement 2 Coffee
Client 2 Peter
Requirement 3 Tea
What I would like is Client 2s requirements to automatically go back to 1 each time. I am finding that the increment is ongoing, rather than starting from 1 for each new client. I presume that it is because i have autonumber as the datatype for REQUIREMENTID, but what should I use, and how do I make the requirementID increment by 1 for each new client?
Many thanks
Hope I have explained myself well enough
Perry