Forum Discussion
Tom_Y
2 years agoAdvocate II
Context filtering
I'm a begginner learning "context filtering". [Filter Red] is a Calculated Column. Other 3 columns are mannually input. What's the logic behind it's showing answers in rows with colour Orange??? Th...
- 2 years ago
You are basically doing this:
Ignore the row I'm in (use of calculate) then create a new context by filtering column colour by the value "Red". If this is done, take the total of the count column.
- 2 years ago
Tom_Y Try this Dax:
Filter Red = If('Table'[Color] = "Red", CALCULATE(sum('Table'[Count]), 'Table'[Color] = "Red"), BLANK())
ray_codex
2 years agoResolver II
You are basically doing this:
Ignore the row I'm in (use of calculate) then create a new context by filtering column colour by the value "Red". If this is done, take the total of the count column.