I have a form I am working on which has a list box that I
have used semicolons in place of the comma for it to show in the box
correctly. I can get the translation to work with the following:
{CFMT(replacestr(DOCUMENT.APPEARANCE,";",","),"", "Appearance:", "B", ".")}
However, I need the translation to also combine 2 lists, and
format for translation like below:
{CFMT(fnUtilityFormatListForTranslation(fncombinelist (DOCUMENT.APPEARANCE, DOCUMENT.OTHER )), "", "Appearance:", "B", ".")}
I am having trouble adding the replacestr to the translation
I already have. How would I go about getting it to work (combining the
two above)?
not sure what the 2 functions are doing, but this should work.
{CFMT(fnUtilityFormatListForTranslation(fncombinelist (replacestr(DOCUMENT.APPEARANCE,";",","), DOCUMENT.OTHER )), "", "Appearance:", "B", ".")}