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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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")

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")

Thanks so much. Simple when you know how!!

Works perfectly 🙂

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.