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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Syndicate_Admin
Administrator
Administrator

Show selection on a card

Hello friends!! I have a date segmenter with the option between and what I need is that a card shows the month and year of both dates.

marcoms_0-1643376997026.png

If we look at the capture, on the card it should say November-2021 / January-2022.
Can you do that?
Thanks a lot.

1 ACCEPTED SOLUTION
freginier
Impactful Individual
Impactful Individual

You have to create a measure to do this

Measure 3 = 
var StartSlicer = MIN('Table'[Column3])
var EndSlicer = MAX('Table'[Column3])
return 
MONTH( StartSlicer ) & "-" & YEAR( StartSlicer ) & " / " & MONTH( EndSlicer ) & "-" & YEAR( EndSlicer ) 

 You will get something like this : 11-2021 / 1-2022. You can add a switch to convert month number 

 

View solution in original post

3 REPLIES 3
freginier
Impactful Individual
Impactful Individual

You have to create a measure to do this

Measure 3 = 
var StartSlicer = MIN('Table'[Column3])
var EndSlicer = MAX('Table'[Column3])
return 
MONTH( StartSlicer ) & "-" & YEAR( StartSlicer ) & " / " & MONTH( EndSlicer ) & "-" & YEAR( EndSlicer ) 

 You will get something like this : 11-2021 / 1-2022. You can add a switch to convert month number 

 

Thanks a lot!!

amitchandak
Super User
Super User

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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