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.
Hello Community,
I am working on a measure to get me the filtered ids based on a person and put them in a table to get the whole process of the filtered ids.
My table has three values:
My visuals are as follow:
I want to be able to select a person, for example, Rick and instead of getting only the activities done by Rick, I want to get ids that Rick is included in and shows all activities of these ids.
The result will look like this:
I tried to use the SelectedValue function, but it doesn't show me anything. Is there any way to implement this in Power BI?
Thank you.
Solved! Go to Solution.
Hi @unkCandy
Please try this ,
Measure =
var _person=SELECTEDVALUE(Person[Person])
return IF(MIN('Table'[Id]) in SELECTCOLUMNS(FILTER(ALL('Table'),'Table'[Person]=_person),"ids",[Id]) ,1,0)
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi @unkCandy
Please try this ,
Measure =
var _person=SELECTEDVALUE(Person[Person])
return IF(MIN('Table'[Id]) in SELECTCOLUMNS(FILTER(ALL('Table'),'Table'[Person]=_person),"ids",[Id]) ,1,0)
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
84 | |
76 | |
74 | |
48 | |
39 |
User | Count |
---|---|
114 | |
56 | |
51 | |
42 | |
42 |