Hello,
Our programmers added into our banner the date of the last Medicare WEllness Exam which is extremely helpful to my staff for scheduling purposes
Is there a way to do the same but for ages 18-39 for last OBS term Wellness, or however that would work.
I would interested in this as well.
That should be doable. you can use MEL code in the banner to specify things like
{if (PATIENT_AGE() >= 18 AND PATIENT_AGE <= 49 AND OBSPREV("WCE DATE") <>"" then
"Next Wellness Exam : " + OBSPREV("WCE DATE")
else "" endif}
This example checks an Observation Term named WCE DATE where the provider enters a next recall appointment on a calendar (or whatever your workflow would be). if the patient meets the age requirement, and the Observation has a value, then it will display like this on the patient banner:
Next Wellness Exam: 11/4/2016
otherwise it shows nothing and takes up no room.
Please let me know if you have any trouble with your clinic's workflow and setting up the banner in this way.
Thank you,
Daniel Carpenter