Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi,
I would like to filter based on Category but category changes each year. Can I do that in measure?
I hope it's clear from the picture.
Thanks.
B.
Solved! Go to Solution.
@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.
@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.
User | Count |
---|---|
13 | |
8 | |
8 | |
7 | |
5 |
User | Count |
---|---|
21 | |
15 | |
15 | |
10 | |
7 |