How to add units to a field in a form
Hello,
I am preparing a form, where the user needs to enter a length, for example.
I would like to set it up where they would just enter '8000', but the field would say '8,000.00 feet'.
A few methods I have tried using Custom Format Scripts:
event.value = event.value + " feet" - this is good, but I can't do formatting on the number
AFNumber_Format(1, 0, 0, 0, 0, false) - formats the number, but I can't add the text at the end.
Is there a way to combine the two?
