Notifications
Clear all
Topic starter
Anyone know how to translate the Allergies and the reactions into a custom VFE form into the chart note for display?
Thanks
Posted : December 15, 2014 5:22 am
{local titleA
titleA = ""
titleA = "Allergies and Adverse Reactions: "
local retListALL
retListALL = ""
local retA
retA = ""
retA = ALL_AFTER("delimited")
if retA = "" then retListALL = ""
else
retA = getfield(ALL_AFTER("delimited"),"|","")
for x = 1, x <= size(retA),x = x + 1
do
retA[x] = getfield(retA[x],"^","")
retListALL = retListALL + (if retListALL == "" then "" else HRET endif) +
retA[x][1] + " (" + retA[x][7] + ": " + if ret[x][5] == "" then "no reaction noted" else ret[x][5] endif + ")"
endfor
endif
retListALL = titleA + HRET + retListALL
retListALL}
Posted : December 15, 2014 9:30 am
