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.
Hello community,
I would like to declare my variable "Year". This variable will take the year filtered by the user. How can I manage it please?
As an example, the user filters the visual on 2021, then my variable " VAR Year= 2021", if the filter is 2020 then "VAR Year =2020" etc.
Please can you help me
THank you
Solved! Go to Solution.
Hello @Anonymous
If you are assuming a single year will be filtered, then you can write:
VAR Year = SELECTEDVALUE ( SomeTable[Year] )
SELECTEDVALUE will return the value of Year if a single value is visible, otherwise BLANK.
You can specify a default value as the second argument of SELECTEDVALUE.
Does this work in your situation?
Hello @Anonymous
If you are assuming a single year will be filtered, then you can write:
VAR Year = SELECTEDVALUE ( SomeTable[Year] )
SELECTEDVALUE will return the value of Year if a single value is visible, otherwise BLANK.
You can specify a default value as the second argument of SELECTEDVALUE.
Does this work in your situation?
Check out the November 2025 Fabric update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!