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

Get Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.

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
Super User
Super User

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
Super User
Super User

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

@Syndicate_Admin , Check if you can use timeline slicer

 

https://appsource.microsoft.com/en-us/product/power-bi-visuals/wa104380786?tab=overview

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.