Notifications
Clear all
Topic starter
Good Afternoon,
I am trying to get this form to push and HPI transl;ation to another item based on CC. Please see below:
{!if OBSNOW("CHIEF CMPLNT") == "Abdominal Pain" then OBSNOW("HPI") == "Patient is a" + PATIENT._AGEINMONTHS + PATIENT.RACE + PATIENT.SEX + "who presents for" + OBSNOW("CHIEF CMPLNT")+"."
else ""
endif}
Bascially, depending on what the CC is, I want the HPI box to display whatever text that the providers have chosen for that "template". I cannot get this to work... Any ideas?
Thanks!!!
Posted : August 22, 2012 1:19 am
{!if OBSNOW("CHIEF CMPLNT") == "Abdominal Pain" then
OBSNOW("HPI", "Patient is a " + PATIENT._AGEINMONTHS + " " + PATIENT.RACE + " " + PATIENT.SEX + " who presents for " + OBSNOW("CHIEF CMPLNT") + ".")
else
""
endif}
Posted : August 22, 2012 1:42 am
Topic starter
DUH! LOL
Thank you!!!!!
Posted : August 22, 2012 2:50 am