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

Filter table by 2 conditions and then sum values

Hi,

I would like to filter based on Category but category changes each year. Can I do that in measure?

Capture1.PNG

I hope it's clear from the picture.

Thanks.

B.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@kap_55 Create following measure in source table

Measure = 
VAR _year = MAX(Source[Year])
VAR _color = CALCULATETABLE(VALUES(Mapping[Category]),Mapping[Year]=_year)
RETURN CALCULATE(SUM(Source[Value]),Source[Category] IN _color)

As per my understanding 2017 sum of value should be 7. 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

@kap_55 Create following measure in source table

Measure = 
VAR _year = MAX(Source[Year])
VAR _color = CALCULATETABLE(VALUES(Mapping[Category]),Mapping[Year]=_year)
RETURN CALCULATE(SUM(Source[Value]),Source[Category] IN _color)

As per my understanding 2017 sum of value should be 7. 

Works awesome. Thanks.

Yes. My mistake 🙂

Let me try your solution.

 

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