Hey there,
I've searched everywhere and can't seem to sort this out. I'm looking to have our job numbers auto numbered with a two-digit year out front:
YY######
The first job number created would be (as this is 2017 right now):
17000001
Next year we'd be happy to continue with the same numbering so let's assume we've done 87 jobs and this would be our first one in 2018:
18000088
I've tried creating it all using autonumbering but it doesn't like taking the date. So instead I've just left autonumbering on its own, created a date Field Name and then tried to calculate them together in "Project_Number" field
This is the code I've managed to concoct, however, the data output deletes a bunch of zeros and adds spaces for no reason:
Str(Right(Year([Date_Created]),2)) & Right(Str("000000") & Str([ID]),6)
The example above would come out to:
18 0 88
Any thoughts would be greatly appreciated.
Cheers!