Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Dear Experts,
Is it possible to get value of Page Level Filters with Dax code to create data model?
For example in the attcahed image in the Dax formulah: Channel[ChnnelName]=get value from page level filter. Page level filter is a table with name of stores.
Thank you-Myti
Solved! Go to Solution.
Hi @myti
You can retrieve the value of a slicer / page level filter / report level filter with the following measure:
Measure = If ( HasOneValue(Table[SlicerCol]) , Values (Table[SlicerCol]) )
You can then pass this value in a variable for a filter condition or apply if statements / Switch
But it only works if the user selected a single value, otherwise it returns blank.
In your particular example, you can try to pass the whole Channel table as a filter argument.
Store Sales = Calculate ( [Total Sales] , Channel )
Channel table will be evaluated in the current filter context and thus takes into account the filter(s) applied by the user.
Hi @myti
You can retrieve the value of a slicer / page level filter / report level filter with the following measure:
Measure = If ( HasOneValue(Table[SlicerCol]) , Values (Table[SlicerCol]) )
You can then pass this value in a variable for a filter condition or apply if statements / Switch
But it only works if the user selected a single value, otherwise it returns blank.
In your particular example, you can try to pass the whole Channel table as a filter argument.
Store Sales = Calculate ( [Total Sales] , Channel )
Channel table will be evaluated in the current filter context and thus takes into account the filter(s) applied by the user.
Check out the November 2025 Power BI 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!
| User | Count |
|---|---|
| 97 | |
| 71 | |
| 50 | |
| 47 | |
| 44 |