Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hellou, can you please somebody help me?
I have pivot table like this and slicer with week.
Week | value |
1 | 10 |
2 | 20 |
3 | 30 |
4 | 40 |
5 | 50 |
6 | 60 |
7 | 70 |
8 | 80 |
9 | 90 |
10 | 100 |
If I select the tenth week, I want to see in the table only the values up to the tenth week. If I select the fourth week, I only want to see the values until the fourth week.
I create a measure like this:
=Weekslicer = IF(HASONEVALUE('Calendar'[week]);VALUES('Calendar'[week]))
.. and measure:
=var selectedweek= [Week slicer]
var currentweek=CALCULATE(max('Calendar'[week]);ALLEXCEPT('Calendar';'Calendar'[week]))
return
IF(currentweek<=selectedweek;sum(table;[vlaue]);BLANK())
Slicer still always filters only 1 selected week 😕
Solved! Go to Solution.
@Fiala This is pretty much the exact scenario for The Complex Selector: The Complex Selector - Microsoft Power BI Community
@Fiala This is pretty much the exact scenario for The Complex Selector: The Complex Selector - Microsoft Power BI Community
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
33 | |
16 | |
13 | |
10 | |
8 |
User | Count |
---|---|
59 | |
20 | |
12 | |
11 | |
10 |