Question
Automatic Project Numbering Using Reference Number
I'm setting up automatic project numbering using the last four digits of the reference number. This is the formula I'm using:
CONCAT("G24_" + TRIM(RIGHT("0000" + STRING({referenceNumber}), 4)))
This works except for one problem, It pulls in the last four characters, of which one is the separating comma: G24_,709
I don't understand why it's adding in the comma when it does not have a comma separator when I view the Reference Number in the project overview.
Reference Number
93709
93709
Is there something I can write into the formula to eliminate the comma so it just gives me the last four digits?