Ok, I have the following in my report:
CustomQuoteNumber: Format([EntryDate],"yymmdd") & recordnumber & [EnteredBy]
It's a logic based off of:
1. Entry Date in the yymmdd format then by
2. Record number of the day which needs to always begin with 01. This gives 99 orders per day per user.
3. user id
So it would be 060720 (EntryDate) followed by 01 for the 1st order of the day and ending with the AE user's initials (EnteredBy).
the result is 06072001AE
the next order would be 06072002AE
continues until 99.
Ideally it'll restart per change in the user's initials (EnteredBy).
Meaning, if another person enters a quote, the quote for that person is 06072001@@ (@@ for the other user's initials).
Hope this makes sense.
I don't know how to tell it to calculate the 01 through 99 repeating per user and per day.
CustomQuoteNumber: Format([EntryDate],"yymmdd") & recordnumber & [EnteredBy]
It's a logic based off of:
1. Entry Date in the yymmdd format then by
2. Record number of the day which needs to always begin with 01. This gives 99 orders per day per user.
3. user id
So it would be 060720 (EntryDate) followed by 01 for the 1st order of the day and ending with the AE user's initials (EnteredBy).
the result is 06072001AE
the next order would be 06072002AE
continues until 99.
Ideally it'll restart per change in the user's initials (EnteredBy).
Meaning, if another person enters a quote, the quote for that person is 06072001@@ (@@ for the other user's initials).
Hope this makes sense.
I don't know how to tell it to calculate the 01 through 99 repeating per user and per day.