Hi, we'd like to add a checkbox on one of our forms that will add all values from that form to the note. Can anyone help me with this coding?
thanks!
One example we have is:
first, a checkbox field that maps to "FH reviewed"
And then in the next box for family history, that maps to "Family HX", the translation tab for Chart Note has the following
{IF SuppressHistory(OBSNOW("Family Hx"),OBSANY("Family Hx"),OBSNOW("FH Reviewed")) THEN "" ELSE fmt("Family History:", "B") + IF OBSNOW("FH Reviewed") <> "" THEN fmt(" (reviewed) ", "B") ELSE fmt(" ", "B") ENDIF + OBSANY("FAMILY HX") + "
" ENDIF}
I have a form that contains different preventive screening fields, added the check box document variable "ADD_TEXT", the translation tab for chart note is coded as below for each field in the form.
{if DOCUMENT.ADD_TEXT_TO =="" OR OBSANY("COLONOSCOPY")=="" Then "" Else CFMT (RemoveTime (LASTOBSVALUEDATE("COLONOSCOPY")),"","
Colonoscopy: ","B") +"
" endif}