The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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!