Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello community,
I created a matrix and the results are fine. But when I switch slicer from 2020 to 2021 it takes 14000 ms. When I enable the subtotals 6600 ms. Is that normal or would some optimization of the measures help?
I have a table with start and end dates. calculate a new end date:
Solved! Go to Solution.
Using variables might improve performance
Measure1 =
VAR MaxEndDate =
MAX ( TABLE[END_DATE] )
VAR YearEnd =
DATE ( SELECTEDVALUE ( CALENDER[YEAR] ), 12, 31 )
RETURN
IF (
ISBLANK ( MaxEndDate ),
YearEnd,
IF ( MaxEndDate <= YearEnd, MaxEndDate, YearEnd )
)
Using variables might improve performance
Measure1 =
VAR MaxEndDate =
MAX ( TABLE[END_DATE] )
VAR YearEnd =
DATE ( SELECTEDVALUE ( CALENDER[YEAR] ), 12, 31 )
RETURN
IF (
ISBLANK ( MaxEndDate ),
YearEnd,
IF ( MaxEndDate <= YearEnd, MaxEndDate, YearEnd )
)
Interessting. It gets double faster. Thx!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 55 | |
| 49 | |
| 33 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 85 | |
| 70 | |
| 38 | |
| 28 | |
| 25 |