Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
I need the earliest start date and latest end date from two different columns and put them as date range
Solved! Go to Solution.
@Yqy , If you need a two columns
Min(Table[Start])
Max(Table[End])
If you need as two measures
Minx(allselected(Table) , Table[Start])
Maxx(allselected(Table) ,Table[End])
If you want default a range based slicer , create a calendar with those date, I doubt you can initialize range based slicer
calendar(
Min(Table[Start]) , Max(Table[End]) )
@Yqy , If you need a two columns
Min(Table[Start])
Max(Table[End])
If you need as two measures
Minx(allselected(Table) , Table[Start])
Maxx(allselected(Table) ,Table[End])
If you want default a range based slicer , create a calendar with those date, I doubt you can initialize range based slicer
calendar(
Min(Table[Start]) , Max(Table[End]) )
the calender one works thank you