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
ade_kurniawan
Frequent Visitor

How to get average gap through filter

Dear friends,

 

i want to get gap from average score from all year data, but the data can't read because my slicer require single selection of year.

ade_kurniawan_0-1646983285587.png

Score 2021 = 5.00
Score 2020 = 3.50
the gap score i want to show is 1.50, but if year select is 2021, 2020 data will not be calculated.

here is the pbix file : https://drive.google.com/file/d/10Gpy0UJmCDTovC8NJ25OtS5divb-QDmq/view?usp=sharing

Thanks for help

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

Hi @ade_kurniawan ,

 

You need make a little bit change to your Gap score Measure.

Gap score =
VAR selectedYear =
    MAX ( Sheet1[Year] )
VAR CurrentScore =
    CALCULATE (
        [avg score],
        FILTER ( ALL ( Sheet1 ), Sheet1[Year] = selectedYear )
    )
VAR LastScore =
    CALCULATE (
        [avg score],
        FILTER ( ALL ( Sheet1 ), Sheet1[Year] = MAX ( Sheet1[Year] ) - 1 )
    )
RETURN
    CurrentScore - LastScore

 

Then, the result should look like this.

vcazhengmsft_0-1647324425695.png

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let me know. Thanks a lot!

 

Best Regards,

Community Support Team _ Caiyun

View solution in original post

3 REPLIES 3
v-cazheng-msft
Community Support
Community Support

Hi @ade_kurniawan ,

 

You need make a little bit change to your Gap score Measure.

Gap score =
VAR selectedYear =
    MAX ( Sheet1[Year] )
VAR CurrentScore =
    CALCULATE (
        [avg score],
        FILTER ( ALL ( Sheet1 ), Sheet1[Year] = selectedYear )
    )
VAR LastScore =
    CALCULATE (
        [avg score],
        FILTER ( ALL ( Sheet1 ), Sheet1[Year] = MAX ( Sheet1[Year] ) - 1 )
    )
RETURN
    CurrentScore - LastScore

 

Then, the result should look like this.

vcazhengmsft_0-1647324425695.png

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let me know. Thanks a lot!

 

Best Regards,

Community Support Team _ Caiyun

thank you so much

amitchandak
Super User
Super User

@ade_kurniawan , in such cases, it is best to have the date/year come from a separatetable. joined to your table

 

Last year avg  =

Calculate([Avg Score], filter(All(Date[Year]), Date[Year] = max(Date[Year])-1))

 

diff =

[Avg Score] - [Last year avg]

 

 

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.

Top Solution Authors