Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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.
Solved! Go to Solution.
@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'))
Proud to be a Super User! |
|
HellO @valmenara ,
check this out https://youtu.be/EgGhr1yo2yY?si=E7Knh9cDLsFJVux2
Proud to be a Super User! | |
HellO @valmenara ,
check this out https://youtu.be/EgGhr1yo2yY?si=E7Knh9cDLsFJVux2
Proud to be a 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'))
Proud to be a Super User! |
|
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.