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.

Finding Incomplete Procedure Notes

SQL Queries3 min read4/8/2026

If you are struggling to keep up with clinical documentation, this open dental incomplete notes query will help you identify exactly which completed procedures are missing a note. Running this report regularly ensures your charts are audit-ready and compliant without having to manually check every patient file.

The Query

This query looks for procedures marked as "Complete" (Status 2) where the Note field in the procedurelog table is empty or contains only whitespace.

/* Set the date range for the search */
SET @FromDate = '2026-01-01';
SET @ToDate = '2026-04-08';

SELECT 
    p.LName, 
    p.FName, 
    pl.ProcDate, 
    pc.ProcCode, 
    pc.AbbrDesc AS Description,
    pl.ProcNum
FROM procedurelog pl
INNER JOIN patient p ON pl.PatNum = p.PatNum
INNER JOIN procedurecode pc ON pl.CodeNum = pc.CodeNum
WHERE pl.ProcStatus = 2
  AND (pl.Note IS NULL OR TRIM(pl.Note) = '')
  AND pl.ProcDate BETWEEN @FromDate AND @ToDate
  AND p.PatStatus = 0
ORDER BY pl.ProcDate DESC;

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 this report to fit your needs by changing the variables at the top of the query:

Variations

If you want to find procedures that have a note, but the note is suspiciously short (perhaps just a placeholder), you can modify the WHERE clause to look for notes with fewer than 5 characters:

/* Variation: Find very short notes */
AND LENGTH(TRIM(pl.Note)) < 5

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.