Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hello.
I have a clustered column chart. For my X-axis, I have 2 columns Week and Day with values like ("2024 W10", "01/01/2024"), and for my Y-axis I have a count of tickets.
The graphic is this:
I added 2 Constant Lines with values 482 and 123 (Thresholds).
I need to do the following thing:
if the user is on weekly level, like in the picture above, the thresholds should remain the same, but if the user drills down on daily level, the threshold should be 482 divided by 7 and 123 divided by 7.
Is there a way I can get the level from the graphic in a measure or what are my options to display the threshold dynamically based on drill down/up level?
Thanks in advance!
Hi @User12345432334 ,
The constant lines don't have the context of the calendar since they are for the full dates I would add this in the lines of a line and clustered column chart and would create two measures similar to these:
Max Threshold= IF(ISINSCOPE('Calendar'[Date]), 482/7 , 482)
Min Threshold= IF(ISINSCOPE('Calendar'[Date]), 123/7 , 123)
Now use this measurds on the Line Y-axis and don't forget to align zeros and turn of values of secondary y-axis.
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsJoin us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 22 | |
| 18 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 53 | |
| 47 | |
| 40 | |
| 38 |