Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Putting two fields on top of each other may sound like a good idea, but it's a PITA to maintain.
ALLTRIM(TRANSFORM(nTheNumber,"999,999,999,999.99"))
I have never seen a number with 2 digits between the commas, but regardless you could use something like:iif(lnFrmt = 1 , 99,99,99,99,999.99 , 999,999,999,999.99 )
IIF(lnFrmt, ALLTRIM(TRANSFORM(nTheNumber,"99,99,99,99,999.99")), ALLTRIM(TRANSFORM(nTheNumber,"999,999,999,999.99")))
Olaf said:This tab doesn't give you a chance to change the formatting, you set the TEXT, the value displayed, so instead you'd have to add a TRANSFORM() code in there with the corresponnding format used on the data, not just the format expression.