Hi!
Trying to set up something like this:
Date (column) which I am turning into a number using DATETIME_FORMAT({Date},‘YYMMDD’).
:thumbs_up:
Have an Auto Number column as well that generates a number with leading zeros using:
REPT(
‘0’,
3-LEN(
{Number}&’’
)
)&
{Number}
:thumbs_up:
However, I’d like the auto number to reset to 001 on each new day and if a new entry is added with a date where several records already exist 001,002,003 … then the number should be +1 for that day and create a record with a YYMMDD-004.
Is this possible?