Copy link to clipboard
Copied
HI
I have text field in a form where a user enters a 6 digit code, after input I want the six digit code to have EA at the start and .OUT at the end, can this be done?
thanks
Copy link to clipboard
Copied
OK. In that case you can use this code as the field's custom Format script:
if (event.value) event.value = "EA" + event.value + ".OUT";
Copy link to clipboard
Copied
Do you want these texts to be an actual part of the field's value, or just to appear as a custom formatting (like a dollar symbols in a price field. The field value is just a number, but the dollar symbol is added to its presentation)?
Copy link to clipboard
Copied
Hi
its basically a form that would get email to me as an attachment that I can also add information into ans save it, the info will not be exported so it would just be more of an appearance issue
thanks
Copy link to clipboard
Copied
OK. In that case you can use this code as the field's custom Format script:
if (event.value) event.value = "EA" + event.value + ".OUT";
Copy link to clipboard
Copied
thank you so much, your time and effort it very much appreciated

