Forum Discussion
Anonymous
7 years agoNot applicable
construct a complex "or" statement using values from another table
I have a calculated column like this: Unobtainable =
VAR isUnobtainable = myTable[attribute1] = "FAULTY" || myTable[attribute2] = "FAULTY" || myTable[attribute3] = "FAULTY"
RETURN isUnobta...
v-lili6-msft
7 years agoCommunity Support
hi, Anonymous
If this formula meets your requirement?
Column = "FAULTY" IN CALCULATETABLE(VALUES(Table1[Value]),ALLEXCEPT(Table1,Table1[Type]))
Best Regards,
Lin