Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi all,
I have been struggling with this one for quite some time and was hoping someone could help me.
Scenario
I have a table that contains major incident data including incident numbers and responsible application (that caused the issue). For simplicity sake the table looks like this:
Date | IncidentNumber | ResponsibleApp |
1.1.23 | INC1 | App1 |
2.1.23 | INC2 | App2 |
3.1.23 | INC3 | App1 |
4.1.23 | INC4 | App1 |
5.1.23 | INC5 | App3 |
Outcome
I have a report page with a slicer were the user is able to select the IncidentNumber. I want to create a table in the report to display all the previous incidents that are related to the same ResponsibleApp for the incident they have chosen in the slicer.
Example: If a user selects INC1 in the slicer, the table would display the following:
IncidentNumber | ResponsibleApp |
INC1 | App1 |
INC3 | App1 |
INC4 | App1 |
Is this possible? Any help would be greatly appreciated on this.
Thanks
Solved! Go to Solution.
Hi,
I am not sure if whether I understood your question correctly, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file if it suits your requirement.
Responsible App Measure: =
VAR _selectedapp =
DISTINCT ( Slicer[ResponsibleApp] )
RETURN
MAXX (
FILTER ( Data, Data[ResponsibleApp] IN _selectedapp ),
Data[ResponsibleApp]
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Schedule a short Teams meeting to discuss your question
Hi,
I am not sure if whether I understood your question correctly, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file if it suits your requirement.
Responsible App Measure: =
VAR _selectedapp =
DISTINCT ( Slicer[ResponsibleApp] )
RETURN
MAXX (
FILTER ( Data, Data[ResponsibleApp] IN _selectedapp ),
Data[ResponsibleApp]
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Schedule a short Teams meeting to discuss your question
You are a life saver, this worked. Thanks alot, I really appreciate this!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
10 | |
10 | |
9 | |
9 |
User | Count |
---|---|
20 | |
13 | |
13 | |
11 | |
8 |