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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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