Forum Discussion
Stanil
3 years agoRegular Visitor
find an item WITHOUT some attributes
Hello, I have simple problem,but perhaps I don't know how to approach it. I have two tables. One is "items", with typical structure - item ID, item name, item price, etc. Nothing fancy. T...
amitchandak
Super User
3 years agoStanil , Create a 1-m join between Item and feature and then just create count measure of the feature and use slicer for three features. Use item from item table and measure in visual
or have a measure like
Calculate(Count(Table[Feature]), filter(Table, Table[Feature] in {"f1", "f2", "f3"} ) )