Forum Discussion
Filter Data
- Anonymous3 years ago
Hi Heinrich ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(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.
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.
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."
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.
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.
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
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