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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
prihana
Helper V
Helper V

Dynamic Table based on date slicer value

I want to create a calculated table based on the value from a date slicer.

 

E.g. Master table has item wise daily sales (Date,ItemCode,Stock)

 

There is a date slicer (between) to select the period to show the daily item wise Stock on a graph. MaxSelectedDate is a measure which gets the last date of the slicer.

 

I want to create a calculated table with data only for the MaxSelectedDate item wise and it should change based on the slider movement. I cant just sum up the stock and show the value. Iwant to show the stock for the selected maxDate.

 

Is is possoble?

4 REPLIES 4
v-chuncz-msft
Community Support
Community Support

@prihana,

 

Values in a calculated table are fixed. But you may create measures as follows. It takes advantage of Show Categories With No Data.

MaxSelectedDate =
CALCULATE ( MAX ( Table1[Date] ), ALLSELECTED ( Table1 ) )
Measure =
VAR d =
    MAX ( Table1[Date] )
RETURN
    IF ( d = [MaxSelectedDate], SUM ( Table1[Stock] ) )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Measure =
VAR d =
    MAX ( Table1[Date] )
RETURN
    IF ( d = [MaxSelectedDate], SUM ( Table1[Stock] ) )

Hi is there anyway i can sneak in a group by in the above. So i can get the values item wise.

@prihana,

 

Use a Table visual instead.

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
SivaMani
Resident Rockstar
Resident Rockstar

I think the calculated table will not be dynamic.

 

refer here, It might be helpful for you

 

https://community.powerbi.com/t5/Desktop/Creating-a-dynamic-summarized-table-or-calculated-table/td-...

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.