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.

Tracking Uncollected Patient Balances

SQL Queries3 min read4/5/2026

If you are struggling to identify which active patients still owe money after insurance has processed, this report provides the clarity you need. This open dental uncollected patient portion query isolates active patients with a positive balance, helping your front desk team prioritize their collection efforts.

The Query

Copy and paste the following code into your User Query window. This query filters for active patients (PatStatus = 0) who have an estimated balance greater than zero.

SET @FromDate = '2025-01-01';

SELECT 
    p.LName, 
    p.FName, 
    p.HmPhone, 
    p.WirelessPhone, 
    p.EstBalance AS 'PatientBalance'
FROM patient p
WHERE p.PatStatus = 0
AND p.EstBalance > 0
ORDER BY p.EstBalance 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, showing you the list of patients and their corresponding balances.

Understanding the Results

How to Customize

You can easily tailor this report to fit your office's specific needs:

Variations

If you want to focus on patients who have not had a payment posted in a long time, you can cross-reference the payment table. However, for a quick snapshot of total outstanding patient portions, the query above is the most efficient starting point. You can also export these results to Excel by clicking the Export button in the User Query window to create a call list for your administrative staff.

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.