C
Chris
Morning. I hope I can impose again...as I am still learning even through my
frustration. I am very much an amateur at this. I use not in list
frequently, but not for adding a record. I would like to do so.
My scenario: Routinely my user looks up the client via a combo box to pull
up their info onto the main client form. The client is coded with an ID of 3
alpha (always the first three of last name) with numeric following that.
John Doe = DOE152, Jim Smith = SMI445, etc.
The user clicks the combo box that lists the clients and selects one to
populate the client form or determines that a particular client does not yet
exist in the list. Now they wish to add that client and complete the client
form and some other housework.
Presently I am using a convoluted three form process to determine need to
add, then add, then open a new client entry form (not the main client form)
to enter data. Cumbersome, but it works. There has to be a better way, but I
cannot get it right.
I want my user to enter the first three letters of new client's last name,
determine they don't exist, and automatically increment the client ID by one.
Using Jim Smith above, adding Bill Smith would incrment to SMI446.
After the record is added I will set fields on my client form to allow for
entry and complete the record.
Client table: [tbl 1 Client]
Key feild: [ClientID], text, indexed, no dupes.
Combo box: [cboClient]
After searching here and elsewhere, I need help to accomplish this move to
simplicity for my user.
Thanks in advance,
Chris
frustration. I am very much an amateur at this. I use not in list
frequently, but not for adding a record. I would like to do so.
My scenario: Routinely my user looks up the client via a combo box to pull
up their info onto the main client form. The client is coded with an ID of 3
alpha (always the first three of last name) with numeric following that.
John Doe = DOE152, Jim Smith = SMI445, etc.
The user clicks the combo box that lists the clients and selects one to
populate the client form or determines that a particular client does not yet
exist in the list. Now they wish to add that client and complete the client
form and some other housework.
Presently I am using a convoluted three form process to determine need to
add, then add, then open a new client entry form (not the main client form)
to enter data. Cumbersome, but it works. There has to be a better way, but I
cannot get it right.
I want my user to enter the first three letters of new client's last name,
determine they don't exist, and automatically increment the client ID by one.
Using Jim Smith above, adding Bill Smith would incrment to SMI446.
After the record is added I will set fields on my client form to allow for
entry and complete the record.
Client table: [tbl 1 Client]
Key feild: [ClientID], text, indexed, no dupes.
Combo box: [cboClient]
After searching here and elsewhere, I need help to accomplish this move to
simplicity for my user.
Thanks in advance,
Chris