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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Calculate filtered values from prior periods

I have a model with a calendar table that has pre-computed prior dates that I would like to report on.  Now I would like to compute, alongside the current period, a prior period composed of all records matching a give Prior date of the current record, but with all the same filtering of other columns.  Only the date should be from the prior period.  I'm having trouble figuring out how to do this.  Should I create a new table with a relationship to the Prior column of the Calendar, or should I create computed columns in the existing table that somehow selects all the rows matching the Prior column, or something else?

 

An example:

 

image.png

 

Thanks!

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

Hi @Anonymous,

 

You can refer to following steps to achieve your requirement.

 

Steps:

1. Create three tables as column fields and selection datasource.

Header = DATATABLE("Type",STRING,{{"Current"},{"Prior"}})

Property1 = VALUES(Table2[Property'])

Property2 = VALUES(Table2[Property2])

2. Write a measure to use row contents and slicer selection items to calculate corresponding value.

Dynamic =
VAR currType =
    SELECTEDVALUE ( 'Header'[Type] )
VAR currDate =
    MAX ( Table2[Date] )
VAR currPrior =
    MAX ( Table2[Prior] )
RETURN
    CALCULATE (
        SUM ( Table2[Value] ),
        FILTER (
            ALL ( Table2 ),
            [Date] = SWITCH ( currType, "Prior", currPrior, "Current", currDate, BLANK () )
                && [Property'] IN ALLSELECTED ( Property1[Property'] )
                && [Property2] IN ALLSELECTED ( Property2[Property2] )
        )
    )
        + 0

3. Create slicers with selector tables columns.
4. Create matrix visual with original table date column as row, Header table type column as column, measure as value.

1.PNG

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

1 REPLY 1
v-shex-msft
Community Support
Community Support

Hi @Anonymous,

 

You can refer to following steps to achieve your requirement.

 

Steps:

1. Create three tables as column fields and selection datasource.

Header = DATATABLE("Type",STRING,{{"Current"},{"Prior"}})

Property1 = VALUES(Table2[Property'])

Property2 = VALUES(Table2[Property2])

2. Write a measure to use row contents and slicer selection items to calculate corresponding value.

Dynamic =
VAR currType =
    SELECTEDVALUE ( 'Header'[Type] )
VAR currDate =
    MAX ( Table2[Date] )
VAR currPrior =
    MAX ( Table2[Prior] )
RETURN
    CALCULATE (
        SUM ( Table2[Value] ),
        FILTER (
            ALL ( Table2 ),
            [Date] = SWITCH ( currType, "Prior", currPrior, "Current", currDate, BLANK () )
                && [Property'] IN ALLSELECTED ( Property1[Property'] )
                && [Property2] IN ALLSELECTED ( Property2[Property2] )
        )
    )
        + 0

3. Create slicers with selector tables columns.
4. Create matrix visual with original table date column as row, Header table type column as column, measure as value.

1.PNG

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.