Notifications
Clear all
Topic starter
Does anyone have a form that pulls in the comment field for the meds. I can get the function to work in a quick text but not in my data field.
{ {
global med= getfield(MEDS_New("delimited"), "|", "")
global max = size(med)
global count, returnmed = "", getmed
for count = 1, count <= max, count = count +1 do
getmed = getfield(med[count],"^","")
returnmed = returnmed + "Description: " + getmed[1] +" Instructions: " + getmed[7] + if getmed[14] <> "" then " Comment: " + getmed[14] + "\n" else "\n" endif endfor returnmed}}
Posted : June 19, 2013 8:30 pm