Is there anyway possible that I can use a listbox and then have the actual translation read in a list format vs. a comma seperated format
ReplaceStr(value, ",", hret)
THANKS but ... I don't know where or how to put that ... do I do that right w/in my list box by choosing "dynamic choice list" and then what?
{CFMT(ReplaceStr(value, ",", hret), "", "whatever", "B", "
")}
Okay ... so "value" being ... OBSNOW("")
if your field is tied to an obs term, yes, otherwise the field name.
AWESOME ~ after a bunch of trial and error I got it to work ... THANKS
I did notice though it kept the "first choice" on the same line as the PreText for the CFMT statement which makes sense since it is replacing the "," with "hret" and the first choice does not have a "," ... I made a "hret" after my PreText statement which did put the first option down a line but the subsequent choices where down a line but indented (which the first one wasn't) ... this may not be fixable but just curious if you know a way to work this w/out having to do "PreText" "HRET" and then say "two spaces"
Thanks again,
Allyson
change
{CFMT(ReplaceStr(value, ",", hret), "", "whatever", "B", "
")}
to
{CFMT(ReplaceStr(value, ", ", hret), "", "whatever", "B", "
")}
...space after the comma