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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
user83
Helper II
Helper II

Summary filter display in line

hello all,

hello @amitchandak 

 

Please I need your help,

I try to create a line in each page of the report allowing me to summarize all the filters selected in a way that the user sees in the head of each page a summary of all the filters selected, as they are many it will not be lost or confused,  especially that I intend to hide the filters

example of a goal to be achieved (filter1,fliter2,fliter3,......) 

How can i do that ? 

thank you so much 

user83

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@user83 , do you want to concatenate the value and show?

 

Filter = "Filter 1" & concatenatex(Filter1,allselected(Filter1[Filter1]) & "Filter 2" & concatenatex(Filter2,allselected(Filter2[Filter2])

View solution in original post

MFelix
Super User
Super User

Hi  @user83 ,

 

Depending on the number of filter/slicers and how they are setup you need to create a measure for example:

Active Filter =
"Date Filter: " & FORMAT ( MIN ( 'Calendar'[Date] ); "dd/mm/yyyy" ) & " to: "
    & FORMAT ( MAX ( 'Calendar'[Date] ); "dd/mm/yyyy" )
    & UNICHAR ( 10 ) & "Filter One Column: "
    & CONCATENATEX (
        ALLSELECTED ( 'Table'[FilterOneColumn] );
        'Table'[FilterOneColumn];
        ","
    )

In this case I have a date filter that is based an interval so I pick the maximum and minumum date. The Unichar is to get a line break and then I pick all the values on the FilterOneColumn that I select and I concatenat them final result is the one below:

 

FIlter_phrase.gif

 

Now you jus need to put it on a card, a table or matrix visualization and setup as you need.

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

3 REPLIES 3
user83
Helper II
Helper II

thank you so much for your help @MFelix  @amitchandak  

MFelix
Super User
Super User

Hi  @user83 ,

 

Depending on the number of filter/slicers and how they are setup you need to create a measure for example:

Active Filter =
"Date Filter: " & FORMAT ( MIN ( 'Calendar'[Date] ); "dd/mm/yyyy" ) & " to: "
    & FORMAT ( MAX ( 'Calendar'[Date] ); "dd/mm/yyyy" )
    & UNICHAR ( 10 ) & "Filter One Column: "
    & CONCATENATEX (
        ALLSELECTED ( 'Table'[FilterOneColumn] );
        'Table'[FilterOneColumn];
        ","
    )

In this case I have a date filter that is based an interval so I pick the maximum and minumum date. The Unichar is to get a line break and then I pick all the values on the FilterOneColumn that I select and I concatenat them final result is the one below:

 

FIlter_phrase.gif

 

Now you jus need to put it on a card, a table or matrix visualization and setup as you need.

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



amitchandak
Super User
Super User

@user83 , do you want to concatenate the value and show?

 

Filter = "Filter 1" & concatenatex(Filter1,allselected(Filter1[Filter1]) & "Filter 2" & concatenatex(Filter2,allselected(Filter2[Filter2])

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.