opendentalsupport.com is an independent community resource. We are NOT affiliated with, endorsed by, or sponsored by Open Dental Software, Inc. Open Dental® is a registered trademark of Open Dental Software, Inc.

Open Dental No-Show Rate Query

SQL Queries3 min read4/9/2026

If you are trying to determine which days of the week your practice experiences the most broken appointments, this open dental no show rate query will provide the data you need. By analyzing your appointment history, you can identify trends and adjust your scheduling strategy to minimize lost production.

The Query

This query calculates the total number of appointments and the number of "Broken" appointments (AptStatus = 5) for each day of the week within your specified date range.

SET @FromDate = '2026-01-01';
SET @ToDate = '2026-03-31';

SELECT 
    DAYNAME(AptDateTime) AS 'DayOfWeek',
    COUNT(*) AS 'TotalAppointments',
    SUM(CASE WHEN AptStatus = 5 THEN 1 ELSE 0 END) AS 'BrokenAppointments',
    ROUND(SUM(CASE WHEN AptStatus = 5 THEN 1 ELSE 0 END) / COUNT(*) * 100, 2) AS 'NoShowRatePercent'
FROM appointment
WHERE AptDateTime >= @FromDate 
AND AptDateTime <= @ToDate
AND AptStatus IN (1, 2, 5) -- 1=Scheduled, 2=Complete, 5=Broken
GROUP BY DAYOFWEEK(AptDateTime)
ORDER BY DAYOFWEEK(AptDateTime);

How to Run This Query

  1. In Open Dental, go to Reports in the Main Menu.
  2. Click User Query.
  3. Paste the query provided above into the large text box.
  4. Click Submit Query.
  5. The results will display in the grid below.

Understanding the Results

How to Customize

You can easily adjust the parameters of this report to fit your needs:

Variations

If you want to focus only on hygiene appointments, you can add a filter to the WHERE clause:

Skip the Query — Use DentalCanvas Instead

Don't want to write SQL? DentalCanvas connects to your Open Dental database and shows you this data automatically in a visual dashboard — no queries required.


This article is provided by opendentalsupport.com, an independent community resource. We are not affiliated with Open Dental Software, Inc.

Stop Writing SQL.

DentalCanvas connects directly to your Open Dental database and shows you production, collections, scheduling, and more — in a visual dashboard you can understand at a glance. No queries. No exports. Just answers.

Try DentalCanvas

Was this article helpful?

Related Articles

opendentalsupport.com is an independent community resource. We are NOT affiliated with, endorsed by, or sponsored by Open Dental Software, Inc. Open Dental® is a registered trademark of Open Dental Software, Inc.