TEXT() doesn't remove comma

TEXT([_RowNumber] + 30000)) returns “30,444” not “30444” as I would like.

Nope. Easiest way is to simply concatenate the number with a blank string:

"" & [number]
3 Likes

Thanks that did it!

1 Like