Remove Commas in Number Format on Forms

The YEAR() function produces a Number result, and so is formatted using default Number formatting. You can force the result to Text and thereby bypass the Number formatting:

<<CONCATENATE(YEAR(TODAY()))>>

or:

<<(YEAR(TODAY()) & "")>>

See also:

3 Likes