The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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.
If we look at the capture, on the card it should say November-2021 / January-2022.
Can you do that?
Thanks a lot.
Solved! Go to Solution.
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
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!!
@Syndicate_Admin , Check if you can use timeline slicer
https://appsource.microsoft.com/en-us/product/power-bi-visuals/wa104380786?tab=overview
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
113 | |
80 | |
77 | |
46 | |
40 |
User | Count |
---|---|
149 | |
115 | |
67 | |
64 | |
58 |