Cumulative Sum based on Invoice Number Column

O_ch

New Member
Joined
Jan 7, 2021
Messages
14
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
  2. Web
I have a database where I have invoices like customer charges (Invoice_Number, Created_Date, Amount) and invoice accounts receivable charge amount (invoice_Number, Created_Date).

I want to get the sum of invoices total amount per customer with "Invoice_Number" going back 1 month back.

I have tried the following and what I get is the invoice number repeated with created date, and what I really need is the "total amount" per invoice number rolled up one month before today's date.


[My query]

SELECT DISTINCT,
inv.Invoice_Number,
chg.Created_Date,
SUM (DISTINCT chg.Amount) AS 'Amount'

FROM dbo.charges AS ‘chg’
INNER JOIN dbo.ar_receipts AS ‘inv’
ON chg.Invoice_ID = inv.Invoice_ID

WHERE chg.Created_Date >= DATEADD(mm,-1,DATEADD(mm,DATEDIFF(mm,0,GETDATE()),0)) --One month going back.
AND inv.Invoice_number = '0411'

GROUP BY
inv.Invoice_Number,
chg.Created_Date,
chg.Amount

Order BY
inv.Invoice_Number
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.

Forum statistics

Threads
1,215,003
Messages
6,122,655
Members
449,091
Latest member
peppernaut

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top