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.
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
209 | |
51 | |
43 | |
41 | |
40 |
User | Count |
---|---|
269 | |
210 | |
72 | |
70 | |
65 |