Forum Discussion
Using PATHCONTAINS and SELECTEDVALUE
- 3 years ago
Hi, Anonymous
You can try the following methods.
Measure = Var _N1=SEARCH(SELECTEDVALUE('Item'[ItemID]),SELECTEDVALUE('Product'[Items]),1,0) Return IF(_N1>0,1,0)Put measure in the filter of this view and set it equal to 1.
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi, Anonymous
You can try the following methods.
Measure =
Var _N1=SEARCH(SELECTEDVALUE('Item'[ItemID]),SELECTEDVALUE('Product'[Items]),1,0)
Return
IF(_N1>0,1,0)
Put measure in the filter of this view and set it equal to 1.
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
- Anonymous3 years agoNot applicable
Thanks for that !
Just wondering will it be possible to let the user choose the ItemName, instead of ItemID ?
Thanks - Anonymous3 years agoNot applicable
+Also wondering if I want to create a measure out of the Products, how do I apply this Item filtering ?