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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
MAltounis2
Frequent Visitor

Dyanmic List of all Applied Filters in PowerBI

I need help with writing DAX for showing all applied filters which i will then later use in a table format to display. I have seen numerous ways online via Dax Studio but my company doesn't allow for the download of external applications. i have 9 specific filters under the following names from a table called 'Base_Data':

 

Age, Specialism, Gender, Deceased, Ethnicity, Workflow Step Type, Responsible Team ,Assigned Worker, Quadrant

 

I wanted it to basically show only the filters that have been applied but most importantly, if more than 1 selection from a specific filter has been applied i.e. selecting the ages of 25,26,27,28, it should show all of these in the overall filters table created instead of only showing 1 selection. 

 

Thank you 🙂

1 ACCEPTED SOLUTION
eliasayyy
Memorable Member
Memorable Member

Show filters =

If(

Isfiltered('table'[age]),

VAR  _f = filters('table'[age])

VAR _t = CONCATENATEX( _f , 'table'[age]," , ")

VAR _x = "Age = " &  _t

RETURN

_x & UNICHAR(13) & UNICHAR(10)

)

&

 

If(

 

Isfiltered('table'[gender]),

 

VAR  _f = filters('table'[gender])

 

VAR _t = CONCATENATEX( _f , 'table'[gender]," , ")

 

VAR _x = "Gender = " &  _t

 

RETURN

 

_x & UNICHAR(13) & UNICHAR(10)

)

 

&

 

...

 

 

View solution in original post

2 REPLIES 2
eliasayyy
Memorable Member
Memorable Member

Show filters =

If(

Isfiltered('table'[age]),

VAR  _f = filters('table'[age])

VAR _t = CONCATENATEX( _f , 'table'[age]," , ")

VAR _x = "Age = " &  _t

RETURN

_x & UNICHAR(13) & UNICHAR(10)

)

&

 

If(

 

Isfiltered('table'[gender]),

 

VAR  _f = filters('table'[gender])

 

VAR _t = CONCATENATEX( _f , 'table'[gender]," , ")

 

VAR _x = "Gender = " &  _t

 

RETURN

 

_x & UNICHAR(13) & UNICHAR(10)

)

 

&

 

...

 

 

Thank you! This worked perfectly!

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.