Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have a date column with YYYY/MM/DD
I have seen a slicer to the visualization look like this one below.
2010/2011
2011/2012
2012/2013
2013/2014
etc....
Anyone knows how I can do it?
Try this calculated column formula
New Year = YEAR ( Date[Date] ) & "/" & YEAR ( Date[Date] ) - 1
Or
New Year = YEAR ( Date[Date] ) - 1 & "/" & YEAR ( Date[Date] )
You can then use this column to create a slicer, hope this helps
Thanks