I created a form that ask the trainer for a certain %. All I want them to do is put in a whole number and field shows that it is a %.
Example: Type in 12 and the field shows 12% rather than 1200%. Can someone help me with a script that could accomplish tthis? Thank you
You could write custom keystroke, format, and calculation scirpt to allow for the inclusion of the "%", Or you can use "event.value = event.value * .01;' as a custom validataion script, but if the user goes back to update the value, the user will see the entry 1/100th of the entered value which could be more confusing.
George Kaiser