Forum Discussion
TexasStone
1 year agoFrequent Visitor
Create Virtual Flag in Data with DAX Measure
This is something that is super easy to do with a calculated column, but I'm not sure how to implement the measure version in a live connection. I can pull data into a table visual from the serv...
mdaatifraza5556
Super User
1 year agoflag_measures =
IF(
CALCULATE(
COUNTROWS(data),
ALLEXCEPT(data, data[Order Number]),
data[Product Name] = "ABC"
) > 0,
1,
0
)
Now, you can filter out the flag which is 0.
Now, you can filter out the flag which is 0.