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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
myti
Helper II
Helper II

getting value of Page Level Filters with Dax code

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

 

2017-02-23.png

1 ACCEPTED 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.

 

 

View solution in original post

1 REPLY 1

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.

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.