Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Calculated Table with TOPN

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? 

1 ACCEPTED SOLUTION
ppm1
Solution Sage
Solution Sage

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

 

Microsoft Employee

View solution in original post

3 REPLIES 3
Ashish_Mathur
Super User
Super User

Hi,

Share some data to work with and show the expected result.  State the conditions very clearly.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
ppm1
Solution Sage
Solution Sage

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

 

Microsoft Employee
Padycosmos
Solution Sage
Solution Sage

Hope this helps: In the Modelling Tab >> New Table>> and type the following formula. 

Padycosmos_0-1676067148344.png

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors