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! Learn more

Reply
valmenara
New Member

Datepicker

I need to find a method to put a Date Picker in the reports.


Currently, if I set a fixed start date and end date in the filter, when uploading this report from desktop to online it remains static, which means that when new data is uploaded, the report does not automatically show the most recent dates.

What I need is a dynamic date segmenter that does two things:

1) Automatically update to span from the oldest date to the most recent date available in the loaded data.

2) Allow the user to manually select a date within that range to display the information they need.
Thus, each time the data is updated, the segmenter calendar will also reflect the new date range available.

2 ACCEPTED SOLUTIONS
bhanu_gautam
Super User
Super User

@valmenara , Use DAX to create dynamic dates and use them instead of original

 

MinDate = CALCULATE(MIN('YourDataTable'[DateColumn]), ALL('YourDataTable'))
MaxDate = CALCULATE(MAX('YourDataTable'[DateColumn]), ALL('YourDataTable'))




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






View solution in original post

Idrissshatila
Super User
Super User

HellO @valmenara ,

 

check this out https://youtu.be/EgGhr1yo2yY?si=E7Knh9cDLsFJVux2

 



Did I answer your question? Mark my post as a solution! Appreciate your Kudos
Follow me on LinkedIn linkedIn
Vote for my Community Mobile App Idea

Proud to be a Super User!




View solution in original post

2 REPLIES 2
Idrissshatila
Super User
Super User

HellO @valmenara ,

 

check this out https://youtu.be/EgGhr1yo2yY?si=E7Knh9cDLsFJVux2

 



Did I answer your question? Mark my post as a solution! Appreciate your Kudos
Follow me on LinkedIn linkedIn
Vote for my Community Mobile App Idea

Proud to be a Super User!




bhanu_gautam
Super User
Super User

@valmenara , Use DAX to create dynamic dates and use them instead of original

 

MinDate = CALCULATE(MIN('YourDataTable'[DateColumn]), ALL('YourDataTable'))
MaxDate = CALCULATE(MAX('YourDataTable'[DateColumn]), ALL('YourDataTable'))




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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