this script works but it needs to show only as seen in example
try67 was nice enough to provide this script (see below). It works great but I noticed it allows me to enter text in the field. Don't want that. The field should only allow a dollar amount to be entered and accepted. Can someone show me how to modify this bit of script to not allow text? Thank you.
script:
if (event.value) {
event.value = "$" + util.printf("%,0.2f", event.value) + "/ per foot";
}
I've placed the script under Custom Format.
