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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
AP23
Advocate I
Advocate I

Show Date Slicer results in Text box ordered by Year then Month.

Hello all, 

I have trawled the forum looking for an answer but haven't found quite what I need, therefore I am hoping someone can help me directly please.

I have a slicer which shows the Year and Month. Users can select multiple months.

AP23_1-1700743173335.png

I want to display the results in a text box showing the Year(1) and associated months and Year(2) and associated months e.g.

2023: November, December

2024: January

 

I've seen many ways of concatonating the months which I've got working, but the years are then out of order

For example:

var A = CONCATENATEX ( VALUES ( Child[data.startDate].[Month] ) , [Month]" | ")
var B = CONCATENATEXVALUES ( Child[data.startDate].[Year] ) , [Year] " | ")
var C= UNICHAR(10)
return
A & C & B
which results in the following:
AP23_2-1700743456174.png

 

I've also tried using Min(month) and Min(year) & Max(month) and Max(year) but this results in e.g.

"January 2023 to December 2024" 

 

How can I achieve the desired result please? Many thanks in advance.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@AP23 , Try to avoid auto date hierarchy.

 

 

Measure =

var _max = maxx(allselected(Child), Child[data.startDate])

var _min = minx(allselected(Child), Child[data.startDate])

return

format(_min, "mmmm-yyyy") & " to " & format(_max, "mmmm-yyyy")

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@AP23 , Try to avoid auto date hierarchy.

 

 

Measure =

var _max = maxx(allselected(Child), Child[data.startDate])

var _min = minx(allselected(Child), Child[data.startDate])

return

format(_min, "mmmm-yyyy") & " to " & format(_max, "mmmm-yyyy")

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Thanks so much. Simple when you know how!!

Works perfectly 🙂

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.