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
Hello,
I have a date slicer on my report to choose start and end dates. How can I display the start and end date chosen on the report in a text box or card?
Solved! Go to Solution.
Hi @Anonymous ,
You can refer to this post: Get start and end date from Timeline Slicer.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
You can refer to this post: Get start and end date from Timeline Slicer.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous ,
measure =
var _min = minx(allselected(Date), Date[Date])
var _max = maxx(allselected(Date), Date[Date])
return
_min & " " _max
If required use format to get the required format
Thank you...Do I hit new measure and put this code there? And I'm confused as to where the name of the field actually goes, or just the word 'date'
Measure = var _min = minx(ALLSELECTED('QGenda Compliance'[Event Date], 'QGenda Compliance'[Event Date]) var _max = maxx(ALLSELECTED('QGenda Compliance'[Event Date], 'QGenda Compliance'[Event Date]) return _min & " " _max
Getting error sytnax for var is incorrect.
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.