Skip to content
Advertisement

Wrong Opening Balance for some rows

I want to calculate Opening and Closing Balance of a business application. But for some rows wrong Opening Balance is producing. I have following Data Tables:

SupplierPayments

Expensis

Income

SQL Server 2012 Query

Output

Formula to calculate closing balance is as:

As we can notice that opening balance for date 2018-09-27 is -30,000 which is wrong. It should be -23,000. similarly opening balance for date 2019-03-29 is also wrong.

Required Result

It is possible that in any day there is No item sold but there is expense or bill paid to supplier and vice versa.

Also it is possible that any tables has two entries on the same date.

Advertisement

Answer

Your issue lies within the order by columns for both SUM and LAG. If you selected from t CTE alone, you’d see that you’re not ordering by whatever is in any of the three dates (what’s available), you’re ordering by them in the order you specified. So you’ll get NULLs for the first column first, NULLs for the second column first, etc. What you need to do is introduce the EventDate sooner, in t, and order everything by it.

Notice the CROSS APPLY in t CTE, where I COALESCE all the dates into a single cosnolidated date. I had to rename the first CTEs to match your sample data table names, but you get the gist of it.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement