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

Don'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.

Reply
Persenjr
Regular Visitor

Dynamic values based on selected year

I've dimensional data which includes "published year". I would like to add a conditional column that changes based on the year(s) the date range of the sales data meaning if I fx. select sales data for 2020, the DIM_releasedate should show "Frontlist" for all projects released in 2020 and "Backlist" for titles published before 2020. It needs to look at the must current year if sales date for multiple years are selected.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Persenjr , A column can not use slicer value , You can create measure

example

var _max = year(maxx(allselected('Date'),'Date'[Date]) )

return

Switch( true() ,

year(Max(Table[projects released])) < _max , "Frontlist" ,

year(Max(Table[projects released])) = _max , "Backlist" ,

"Other"

)

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@Persenjr , A column can not use slicer value , You can create measure

example

var _max = year(maxx(allselected('Date'),'Date'[Date]) )

return

Switch( true() ,

year(Max(Table[projects released])) < _max , "Frontlist" ,

year(Max(Table[projects released])) = _max , "Backlist" ,

"Other"

)

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.