cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
valor
Regular Visitor

Summary table by year with start value from different table

Hello all, I've been searching for a way to do this and can't come up with a way to do what I'm looking for. 

This post is close, but doesn't get me to where I need to be:

Solved: Creating a combined summary table - Microsoft Fabric Community 

 

I have a table of accounts, and a table of activity for those accounts and I want to generate a summary that I can summarize by Year/Quarter/Month. The problem is that the account's opening value isn't captured in the transaction, so I essentially need to take the oldest starting value for the account, then attribute that to the correct period.

 

The easiest would be to get the initial starting value into the "Net Change" column, but I can't modify the data source. 

 

Thoughts on how I can do this in Power BI?

 

Here's a sample of my model:

Accounts table
Screenshot 2023-09-20 174644.png

 

Transaction table

Account historyAccount history

 

Here's the summary data I'd like to see and roll up by transaction date (year, quarter, month, etc)

Desired summaryDesired summary

 

 

[EDIT] Here's a link [Dropbox]  to the sample file I drew up if it's helpful

1 ACCEPTED SOLUTION
v-yiruan-msft
Community Support
Community Support

Hi @valor ,

I updated your sample pbix file(see the attachment), please find the details in it.

1. Create a date dimension table

vyiruanmsft_1-1695363940956.png

2. Create a measure as below to get it

Measure = 
VAR _selmonth =
    SELECTEDVALUE ( 'Date'[Date].[MonthNo] )
VAR _selyear =
    SELECTEDVALUE ( 'Date'[Date].[Year] )
VAR _initialvalue =
    CALCULATE (
        SUM ( 'Accounts'[Account start value (calculated)] ),
        FILTER (
            'Accounts',
            YEAR ( 'Accounts'[Account start date] ) = _selyear
                && MONTH ( 'Accounts'[Account start date] ) = _selmonth
        )
    )
VAR _netchange =
    CALCULATE (
        SUM ( 'Account history'[Net change] ),
        FILTER (
            'Account history',
            YEAR ( 'Account history'[Date] ) = _selyear
                && MONTH ( 'Account history'[Date] ) = _selmonth
        )
    )
RETURN
    _initialvalue + _netchange

vyiruanmsft_0-1695363838689.png

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-yiruan-msft
Community Support
Community Support

Hi @valor ,

I updated your sample pbix file(see the attachment), please find the details in it.

1. Create a date dimension table

vyiruanmsft_1-1695363940956.png

2. Create a measure as below to get it

Measure = 
VAR _selmonth =
    SELECTEDVALUE ( 'Date'[Date].[MonthNo] )
VAR _selyear =
    SELECTEDVALUE ( 'Date'[Date].[Year] )
VAR _initialvalue =
    CALCULATE (
        SUM ( 'Accounts'[Account start value (calculated)] ),
        FILTER (
            'Accounts',
            YEAR ( 'Accounts'[Account start date] ) = _selyear
                && MONTH ( 'Accounts'[Account start date] ) = _selmonth
        )
    )
VAR _netchange =
    CALCULATE (
        SUM ( 'Account history'[Net change] ),
        FILTER (
            'Account history',
            YEAR ( 'Account history'[Date] ) = _selyear
                && MONTH ( 'Account history'[Date] ) = _selmonth
        )
    )
RETURN
    _initialvalue + _netchange

vyiruanmsft_0-1695363838689.png

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors