Little_Man22
Registered User.
- Local time
- Today, 22:30
- Joined
- Jun 23, 2001
- Messages
- 118
Hi,
We have a database that we use to store client information. Occasionally we have to run applications for these clients that make use of the data in our tables. One table in particular (application data) is where the application data is saved. Currenlty we re-enter a clients application information each time we run an app (not all of the clients info...just the values that are stored in the application data table). We are trying to increase our efficiency, however, and would like to not have to do this. Ideally what would be great is if I could write some code so that when the application form opened it would be filled in with all of the clients information that was entered last time.
Other info:
-each client has a unique clientID number
-currently the applicationdata table may contain the same saved info for the same client infinite number of times (each time an app is run it saves his data)
-I would have no problem deleting this old data though
What I think may be possible is that I could have a query that would search through the clientapplication table and match the clientID of the undividual for whom we are running and app and fill in the application fields with data that is already stored from his/her previous apps.
How do I do this though...
We have a database that we use to store client information. Occasionally we have to run applications for these clients that make use of the data in our tables. One table in particular (application data) is where the application data is saved. Currenlty we re-enter a clients application information each time we run an app (not all of the clients info...just the values that are stored in the application data table). We are trying to increase our efficiency, however, and would like to not have to do this. Ideally what would be great is if I could write some code so that when the application form opened it would be filled in with all of the clients information that was entered last time.
Other info:
-each client has a unique clientID number
-currently the applicationdata table may contain the same saved info for the same client infinite number of times (each time an app is run it saves his data)
-I would have no problem deleting this old data though
What I think may be possible is that I could have a query that would search through the clientapplication table and match the clientID of the undividual for whom we are running and app and fill in the application fields with data that is already stored from his/her previous apps.
How do I do this though...