Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!View all the Fabric Data Days sessions on demand. View schedule
Hi Everyone,
I'm having an issue producing a graph that has a dynamic band as the Column series.
The DAX I'm using is as follows:
TaskPerfSum =
VAR TaskSum =
SUMMARIZECOLUMNS (
Task[TaskID],
Task[StartDateYearMonth],
Task[StartDateYearMonthSortBy],
"TotalDuration", SUM( Step[Duration] )
)
VAR PeriodSum =
SELECTCOLUMNS (
ReportDuration,
"StartNoOfDays", ReportDuration[StartNoOfDays],
"EndNoOfDays", ReportDuration[EndNoOfDays],
"ReportingPeriodDisplayName", ReportDuration[DisplayPeriodName],
"SortPeriodBy", ReportDuration[SortBy]
)
VAR results =
FILTER (
CROSSJOIN ( TaskSum, PeriodSum ),
[TotalDuration] >= [StartNoOfDays]
&& [TotalDuration] <= IF ( ISBLANK ( [EndNoOfDays] ), 99999.99, [EndNoOfDays] )
)
RETURN
resultsfor the following model:
Task Step Model
And I have the following slicers:
Task Step Slicers
The problem is the TotalDuration and the Band Display Name do not update when a slicer (below task) is selected.
Any help/pointers would be much appreciated.
Thanks for your help.
Andy
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 13 | |
| 11 | |
| 9 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 28 | |
| 20 | |
| 20 | |
| 19 | |
| 12 |