Hi everyone.
trying to create visibility regions for a reminder on my assessment and plan form for providers to fill in their physical exam.
Opposing stacked visibility region text as follows:
Vis region 1 (if exam is completed (GREEN Button)
OBSNOW(ABDOM INSP) <> "" and obsnow(AUSCUL HEART) <> "" and obsnow(AUSCUL LUNGS) <> "" and obsnow(GEN APPEAR) <> ""
Vis region 2 (if exam is not completed (RED Button)
OBSNOW(ABDOM INSP) == "" and obsnow(AUSCUL HEART) == "" and obsnow(AUSCUL LUNGS) == "" and obsnow(GEN APPEAR) == ""
Since I am posting this, it does not work. Neither of my visibility regions shows in the space is only blank
any assistance is appreciated
thanks,
Jack
I'm not sure if this is the same issue that you are having but sometimes I have the same problem if just one obsnow has been completed. Then the system doesn't know what to do because it doesn't meet any of the criteria you have given it. So maybe try the red button as OR rather than AND.
Otherwise you have to write for each possible outcome.
Vis region 2 (if exam is not completed (RED Button)
OBSNOW(ABDOM INSP) == "" OR obsnow(AUSCUL HEART) == "" OR obsnow(AUSCUL LUNGS) == "" OR obsnow(GEN APPEAR) == ""
I actually tried to limit the obsnow to a single value
red button
obsnow(GEN APPEAR) == ""
and
green button
obsnow(GEN APPEAR) ""
and I still get neither vis region when the exam is blank or filled in
Thanks
JJC
I just realized. Should be OBSNOW("GEN APPEAR"). Forgot the little ""
correct lines worked like a charm
syntax headsmack
OBSNOW("ABDOM INSP") "" and obsnow("AUSCUL HEART") "" and obsnow("AUSCUL LUNGS") "" and obsnow("GEN APPEAR") ""
OBSNOW("ABDOM INSP") == "" and obsnow("AUSCUL HEART") == "" and obsnow("AUSCUL LUNGS") == "" and obsnow("GEN APPEAR") == ""
Thanks
Jack