Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
swan1099
Helper I
Helper I

Help With Creating Cumulative Total Based on Two Variables

Hi Community,

 

I'm looking for some help on what I originally thought was going to be easy, but turns out I've been struggling with -- hope someone is up to the challenge.

 

Excel Workbook is a workbook which I think highlights what is desired very simply. The first tab is what we are starting with in Power Query. It's in tabular format, lists all the dates in a given month, and by GL Account, what transaction amounts were. The values and accounts showing on 3/1/19 represent beginning balances for all desired GL accounts. 

 

The second tab is the output that i'm hoping to be able to create in PowerQuery, which cumulatively summarizes the values by both gl account and date in tabular format.

 

Excited to see if anyone is able to figure it out, thanks!

 

 

1 ACCEPTED SOLUTION

Hi,

You may download my Excel solution workbook from here.

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

8 REPLIES 8
Ashish_Mathur
Super User
Super User

Hi,

Your question is not clear.  There are 2 instances of GL code 21650 - same number but opposite signs.  In the output sheet, the negative number goes from March 1 to March 7 - Why?  What result are you expecting for GL code 21671 and 21672?


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Hi Ashish,

 

Appreciate you taking a look, and sorry for any confusion.

 

On March 1st, GL code 21650 had a starting credit balance (is a loan/liability acct) of -536,249.65. You are able to see a debit (positive) balance of 536,249.65 on March 8th, because that loan was paid off on that day. If you take a look at the second tab for this GL, "Desired Output," (rows 126-156), you will see what the cumulative total should look like if we found a solution in PowerQuery to get the first tab to transform into the desired result. Same thing applies with all of the other GL accounts. 

 

Let me know if there's something else I could elaborate on further -- thanks for taking a look.

 

Hi,

You may download my Excel solution workbook from here.

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Very clever -- appreciate it!


@Ashish_Mathur wrote:

Hi,

You may download my Excel solution workbook from here.

Hope this helps.


 

You are welcome.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
swan1099
Helper I
Helper I

I forgot to add that I found this YouTube Video which gets close, but only seems to be able to calculate cumulatively for one variable:

 

https://www.youtube.com/watch?v=2P658-WDJAQ

 

Anonymous
Not applicable

Hi @swan1099 ,

You can try to use following measure formula if it works for your scenario:

Measure =
VAR _start = variable1
VAR _end = variable2
RETURN
    CALCULATE (
        SUM ( Table[NetGLValue] ),
        FILTER ( ALLSELECTED ( Table ), [Date] >= _start && [Date] <= _end ),
        VALUES ( Table[GLAccount] )
    )

Regards,

Xiaoxin Sheng

Hi Xiaoxin,

 

Appreciate the reply, but I was hoping to accomplish this in PowerQuery/Get & Transform -- not DAX?

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors