Good morning,
I'm working on a History View to pull appointment information. We're trying to find a way for our physicians to see appointment data without going into the Registration section, reducing a couple clicks.
The goal is to have current, future, past completed, past cancelled & past no shows. I'm getting some of the information okay, but the cancelled and no shows are creating a challenge.
Does anyone use a history view like this or have any suggestions?
Thank you in advance for any suggestions!
Have a great day,
~ Vicky
Have you looked into pulling the appt status? I was just looking at a quick report in analytics and my cancelled appts have various statuses, operator error, patient cancelled, No show, dr cancelled. Maybe you could do something with that information?
If you get it to working, would you mind sharing?
I created something similar to this, the providers wanted displays that would show the next appointment scheduled, No show appointments, and cancelled appointments. I created 3 different display areas, one for each with these MEL expressions.
{!APPT_NEXT() }
{!appts_by_status("no show")}
{!appts_by_status("canceled")}
and it worked quite well.
Here is the content of the Patient History View:
Scheduled Appts:
{APPTS_BY_STATUS("","FULL")}
Arrived Appts:
{APPTS_BY_STATUS("arrived","FULL")}
Canceled Appts:
{APPTS_BY_STATUS("canceled","FULL")}
No Show Appts:
{APPTS_BY_STATUS("no show","FULL")}
Thanks so much! Not sure why, but to get our Scheduled appts to show I had to change it to {APPTS_BY_STATUS("scheduled","FULL")}. Otherwise it works great!
Thanks again.
Yes, thank you so much!! I also added the scheduled & it worked like a charm!!
I appreciate everyone's feedback & help!
Enjoy your day,
~ Vicky