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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Heinrich
Post Partisan
Post Partisan

Filter Data

Hello

 

I would like that some data react as filter would that be possible.

The goal is when I press on the button then the data is shown on a separate field

 

Heinrich_0-1674724210311.png

Thank you for your help

 

Heinrich

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Heinrich ,

 

According to your description, here are my steps you can follow as a solution.

(1) This is my test data.  

vtangjiemsft_0-1675151596312.png

(2) We can create two tables.

Table = SUMMARIZE('MS Teams Incidents','MS Teams Incidents'[Ticket Number],'MS Teams Incidents'[Escalated])
Table 2 = FILTER('Table','Table'[Escalated]="false")

(3) Then the result is as follows.

vtangjiemsft_1-1675151654630.png

 

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

View solution in original post

11 REPLIES 11
Anonymous
Not applicable

Hi @Heinrich ,

 

According to your description, here are my steps you can follow as a solution.

(1) This is my test data.  

vtangjiemsft_0-1675151596312.png

(2) We can create two tables.

Table = SUMMARIZE('MS Teams Incidents','MS Teams Incidents'[Ticket Number],'MS Teams Incidents'[Escalated])
Table 2 = FILTER('Table','Table'[Escalated]="false")

(3) Then the result is as follows.

vtangjiemsft_1-1675151654630.png

 

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

Hi v-tangjie-msft

I worked as said. Can you have a button that closes specific visuals.

Regards

Juan

Hello v-tangjie-msft

It worked fantastic.

Thank you very much

Juan

Hello v-tangjie-msft

Thank you very much.

I will give it a try. So I need to do additional 2 tables and then filter them out.

Regards

Juan

Heinrich
Post Partisan
Post Partisan

Hello

I have tried

SUMMARIZECOLUMNS(
    'MS Teams Incidents'[Escalated],
    KEEPFILTERS( TREATAS( {"false"}, 'MS Teams Incidents'[Escalated] ))
) ORDER BY [Ticket Number] ASC
That does not seem to work.
Do you have an Idea
Heinrich
Heinrich
Post Partisan
Post Partisan

Hi DataSlayer
Thank you.

 

How does the formula look like if I want to filter the data of:

 

Show me all data that have been escalated or reassigned more than x times.

Is the bottom needed can it be behind the the text or a number so as invisible. Once I klick on the visible field it is shown.

 

Thank you

 

Heinrich

 

Heinrich
Post Partisan
Post Partisan

Hello DataSlayer
Thank you very much.
I will try to do that
Regards
Juan

You are welcome.

 

Dont forget to accept this as solution in order to help others 🙂

MAwwad
Solution Sage
Solution Sage

  1. Create a new measure or calculated column that will filter your data based on the button press. For example, you can create a measure called "Filtered Data" that filters the data based on a selected value from a field called "Button Selection."

  2. Create a button in your report, and set the OnSelect property to update the value of "Button Selection" with the value of the button press.

  3. Create a card visual and bind it to the "Filtered Data" measure, and also you can use filter visual and bind it to the "Button Selection" field.

  4. Publish the report to the service and test the button and the filtered data.

Please be aware that the filter in Power BI is applied on all visuals, if you want to show data on a separate field you may want to create a new visual and apply the filter only on that visual.

Hello DataSlayer

Step 1 has been done.

Do you have an instruction on how to do Step 2? Would be great.
Thank you
Heinrich

Hello DataSlayer

 

I tried to do a measure

Incidents_Escalated = 
SELECTCOLUMNS(
    FILTER( 
    'MS Teams Incidents',
    'MS Teams Incidents'[Escalated] = "false"
    ),
    CALCULATE ('MS Teams Incidents'[Ticket Number])
)

The goal is to filter the column "Escalated" and show the column "Ticket number".

 

But it does not seem to work.

 

Do you have an idea?

Regards

 

Heinrich

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.

Top Solution Authors
Top Kudoed Authors