limiting number of times users can add the same account per day

iamratman

Registered User.
Local time
Today, 11:07
Joined
Feb 22, 2006
Messages
22
During a promotion we are running the customers are only allowed 3 entries into the system per day but the users are occasionally putting some customers in more than that. I could use some kind of function that limits the number of times the account number can be put in on a given date. (Or daily)

I have the following text boxes: ID, Customer first name, customer last name, account number, date, time.

Any ideas please?
 
is the Id an autonumber field or unique to the customer? you could try by finding what is unique. then run a query before they enter that counts how many entries they have

If ID > 3 And Date Between "Lirst" Date and "Last" Date Then
Msgbox
 

Users who are viewing this thread

Back
Top Bottom