Forum Discussion
Sahil_87
4 years agoNew Member
Ignoring some rows while aggregating + selection on field.
Hi Experts - Could you please assist me on below query? The channel field in the table has 4 rows (including Total) and it looks like as below: I would like to get assistance on how to exc...
- 4 years ago
How about:
Count = IF(ISFILTERED (Table[Channel]), SUM(Table[Count]), CALCULATE(SUM(Table[Count]), Table[Channel] = "Total")
PaulDBrown
4 years agoCommunity Champion
How about:
Count = IF(ISFILTERED (Table[Channel]), SUM(Table[Count]), CALCULATE(SUM(Table[Count]), Table[Channel] = "Total")
Sahil_87
4 years agoNew Member
It worked like a charm!! Many thanks Paul. Appreciate your swift response and assistance.