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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Trying to create a calculated table that lists Top 50 stores by a KPI (Waittime). I use the following DAX and it always return the list for all time. I need a dynamic table that chnages the list by the date range slicer on the report.
Bottom_50_Stores_OWT =
VAR basetable =
CALCULATETABLE (
ADDCOLUMNS (
DISTINCT ( 'Store Alignment'[STR_NUM] ),
"waittime", CALCULATE ( [Wait Time], ALLSELECTED ( 'Date'[ACTL_DT] ) )
),
'Div Letter Conversion'[Div Ltr] <> "X"
)
VAR TOP50 =
CALCULATETABLE ( TOPN ( 50, basetable, [waittime] ) )
RETURN
basetable
any possible solutions?
Solved! Go to Solution.
DAX calculated tables and columns do not update with slicer changes (only at data refresh). You need to build your table expression into a table variable in a measure.
Pat
Hi,
Share some data to work with and show the expected result. State the conditions very clearly.
DAX calculated tables and columns do not update with slicer changes (only at data refresh). You need to build your table expression into a table variable in a measure.
Pat
Hope this helps: In the Modelling Tab >> New Table>> and type the following formula.
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!