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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello,
I have a PowerBI dashboard which has a date table connected to a table of student applications. I also have a slicer of academic years.
I would like to be able to capture the multiple selections made on the slicer to be used in further DAX expressions in a CALCULATE statement.
For example: (psuedo code)
VAR selected_years = SELECTEDVALUE('Date'[Academic Years])
VAR calc =
CALCULATE(COUNT('Student Applications'[Id])
FILTER(
'Date',
'Date'[Academic Years] IN selected_years
)
)
RETURN calc
Solved! Go to Solution.
VAR selected_years = VALUES('Date'[Academic Years])
VAR calc =
CALCULATE(COUNT('Student Applications'[Id])
FILTER(
'Date',
'Date'[Academic Years] IN selected_years
)
)
RETURN calc
If you do SELECTEDVALUE it will only return that value if there is one and for multiple choices will default to blank.
In general , if you just want to capture the years selcted then you don't need to do anything cause they are already taken by default in the filter context on measures that acts on related table.
So, for instance, this would have given you the same result:
COUNT('Student Applications'[Id])
btw, also this would give you the same result per yoor pseudo code:
VAR selected_years = VALUES('Date'[Academic Years])
VAR calc =
CALCULATE(
COUNT('Student Applications'[Id]),
selected_years
)
RETURN calc
VAR selected_years = VALUES('Date'[Academic Years])
VAR calc =
CALCULATE(COUNT('Student Applications'[Id])
FILTER(
'Date',
'Date'[Academic Years] IN selected_years
)
)
RETURN calc
If you do SELECTEDVALUE it will only return that value if there is one and for multiple choices will default to blank.
In general , if you just want to capture the years selcted then you don't need to do anything cause they are already taken by default in the filter context on measures that acts on related table.
So, for instance, this would have given you the same result:
COUNT('Student Applications'[Id])
btw, also this would give you the same result per yoor pseudo code:
VAR selected_years = VALUES('Date'[Academic Years])
VAR calc =
CALCULATE(
COUNT('Student Applications'[Id]),
selected_years
)
RETURN calc
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 20 | |
| 11 | |
| 10 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 34 | |
| 30 | |
| 19 | |
| 12 | |
| 11 |