Questions?

Our usual hours of telephone support are 9AM to 4PM, North American Eastern Time. If you reach our voicemail, please leave a message including your name, number, and email address and we will return your call as soon as possible.

P: 1.855.260.1680
E: customercare@veribook.com

418 Eglinton Avenue West, Unit 202
Toronto, ON, M5N 1A2
Canada

1.855.260.1680

Veribook is an online appointment booking system that integrates with OSCAR EMR and enables medical clinics, physicians, and medical offices to easily schedule patient appointments and bookings.

Stats

Online Scheduling Stats

Problem: How would a clinic know it’s online scheduling stats?

Discussion: The best way to figure out this information is to extract this information from OSCAR directly, as this facilitates the incorporation of data not found within Veribook.

We recommend using OSCAR’s Query By Example tool. You can then run any of the following queries to see your corresponding data, and copy and paste the data into Excel to perform additional visualizations as required.

If there’s any questions, or if you’d like help extracting information other than the example provided below, contact us!

Magenta.png

Billed Appointments

Using the following query supplies the monthly billed appointments booked online vs. manually, for the last 12 months, along with the monthly conversion rate.

SELECT  CONCAT(YEAR(appointment_date),"-",LPAD(MONTH(appointment_date),2,"0")) AS "Month", SUM(CASE WHEN (notes LIKE "%veribook%") THEN 1 ELSE 0 END) AS "Appts Booked Online", SUM(CASE WHEN (notes LIKE "%veribook%") THEN 0 ELSE 1 END) AS "Appts Booked Manually", CONCAT(ROUND((SUM(CASE WHEN (notes LIKE "%veribook%") THEN 1 ELSE 0 END) / COUNT(*))*100,0),"%") AS "Conversion Rate" FROM appointment  WHERE LEFT(STATUS,1) = "B" AND appointment_date >= CURDATE() - INTERVAL 12 MONTH  GROUP BY YEAR(appointment_date), MONTH(appointment_date);
Annotation 2019-12-20 230928.png