I am hoping someone can help with a visibility question.
I have an item with a visibilty region attached to it:
(((((((patient._ageinmonths > 600)))))))
But I also want a visibilty region on the same item that says:
(OBSPREV("COLONOSCOPY") == ""
OR DURATIONDAYS(LAST_SIGNED_OBS_DATE("COLONOSCOPY"), STR(._TODAYSDATE))>=3650)
Do I need 2 visibility regions that are over the 1 item.........or does my 1 visibilty statement need to include all parameters?
HELP 🙂
Thanks so much!
Put all of the statements in one visibility section.
Depending on how you want it to work:
(patient._ageinmonths > 600) and (OBSPREV(“COLONOSCOPY”) == “” OR DURATIONDAYS(LAST_SIGNED_OBS_DATE(“COLONOSCOPY”), STR(._TODAYSDATE))>=3650)
OR
(patient._ageinmonths > 600) OR (OBSPREV(“COLONOSCOPY”) == “” OR DURATIONDAYS(LAST_SIGNED_OBS_DATE(“COLONOSCOPY”), STR(._TODAYSDATE))>=3650)