Notifications
Clear all
Topic starter
I don't remember having issues with this previously, but I am trying to build a button function that enters text into an edit field and includes a data symbol with the patient name. To save my life I cannot get this to work. The function works in that it does enter the text into the edit field, but the data symbol just translates as {PATIENT.LABELNAME} instead of enter the patients actual name. Any ideas?
Thanks.
Posted : June 8, 2020 6:41 am
when you set the value, use curly braces around the whole statement.
so instead of
"The patient's name is " + {PATIENT.LABELNAME}
do
{"The patient's name is " + PATIENT.LABELNAME}
Posted : June 8, 2020 8:46 am