Formatting only part of the output of a field in a PDF form.
I am concatinating two fields with a text string using the following as a custom calculation:
event.value = "Words" + this.getField("D1").valueAsString + this.getField("F1").valueAsString;
Field F1 is actually a numeric value. I would like to chnge the fomrattign of how F1 appears for readinility. Something as simple as making it bold would be enough, but also increasing the font size would be good as well.
I do not want to change the formatting of "Words" or D1 so I don't think I can do with global formatting.
Is it possible because F1 is a number I could use soem conditional statment to bold only numbers in event.value?
