Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
141 | |
79 | |
63 | |
52 | |
46 |
User | Count |
---|---|
212 | |
89 | |
79 | |
68 | |
60 |