Quickbooks

Accounts payable aging report

SQL query for Quickbooks

Get accounts payable aging report.

SELECT VendorName, SUM(CASE WHEN DATEDIFF(day, DueDate, GETDATE()) <= 30 THEN Amount END) AS Current, SUM(CASE WHEN DATEDIFF(day, DueDate, GETDATE()) BETWEEN 31 AND 60 THEN Amount END) AS '31-60 Days', SUM(CASE WHEN DATEDIFF(day, DueDate, GETDATE()) BETWEEN 61 AND 90 THEN Amount END) AS '61-90 Days', SUM(CASE WHEN DATEDIFF(day, DueDate, GETDATE()) > 90 THEN Amount END) AS ‘Over 90 Days’ FROM AccountsPayable GROUP BY VendorName;

Quickbooks data model

Quickbooks
Table Accounts
Id: Integer

Use SQL on all your SaaS data

Magical SQL for Quickbooks with Peliqan.io

Explore data in a rich spreadsheet UI. Use Magical SQL to combine and transform data. SQL queries become new tables that can be shared with business users and used in any BI tool such as Microsoft Power BI, Tableau or Metabase.

Peliqan Ask AI willl write your SQL queries from plain English

Let AI do the work for you

Peliqan’s AI assistant helps you to write SQL queries to get to insights fast. Ask your question in plain English and immediately see the result in Peliqan’s rich spreadsheet viewer.