Notifications
Clear all
Topic starter
Does anyone know how I can have the choices selected in the list box display in the text translation in line format and not comma separated?
Thanks in advance.
Posted : March 15, 2017 6:16 am
Change
{CFMT(DOCUMENT.LISTBOX,"","Title: ","B","
")}
to
{CFMT(replacestr(DOCUMENT.LISTBOX,",",hret),"","Title: ","B","
")}
Posted : March 15, 2017 6:27 am
Topic starter
Its throwing an error.
This is what i have
{CFMT(replacestr(OBSNOW("DEPSCRNNOT",",hret),"","
Depression/Suicide screening not done: ","B", "
")}
Posted : March 20, 2017 2:38 am
You are missing a parenthesis and a comma and second double quote in the replacestr() function - should be
{CFMT(replacestr(OBSNOW("DEPSCRNNOT"),",",hret),"","
Depression/Suicide screening not done: ","B", "
")}
Posted : March 20, 2017 3:41 am
Topic starter
Ahhh... thanks so much for your help!!
It's working:)
Posted : March 20, 2017 4:26 am