Forum Discussion
OR feature triggered by key
- 6 years ago
Yahya
Add this as a new column in Data Model:Swap_Key = VAR _Adv = CALCULATE( COUNTROWS('Table (4)'), 'Table (4)'[Value]="SWAP") RETURN IF(_Adv>0,"SWAP",BLANK())If you are satisfied with my answer, please mark it as a solution so others can easily find it.
Don't forget to give KUDOS ? to replies that help answer your questions
Subscribe to ExcelFort: Learn Power BI, Power Query and Excel
Hey amitchandak,
Thanks for the quick reply
The output I'd like is the following
When the calculation is done, filter out SWAP and distinct count the keys
and I'll make a 2nd measure to filter out the ones that aren't SWAP, in this case Blanks (null), and do the same distinct count of keys.
Yahya , Try like
calculate(distinctcount(Table[key]),isblank(Table[Value]))
Or
calculate(distinctcount(Table[key]),Table[Value] ="SWAP")
- Yahya6 years agoHelper I
How can I make sure this is correct?
If I do the first, I'll get the blank values, but a key may have 2 switches, either null or "SWAP". The result of my table should be
Key Value result
12345 null SWAP 12345 SWAP SWAP 54321 null null 54321 null null 78945 null SWAP 78945 null SWAP 78945 SWAP SWAP