Forum Discussion
subhashg
2 years agoFrequent Visitor
Aggregating by ignoring specific fields in Table visual
Input table Output table Visual - While counting towns, measure(Count of Towns) should ignore "state" & count at Country level . So for India, Towns should result 2 for both rows inst...
- 2 years agoMeasureQ = CALCULATE(COUNT(theTable[t]), REMOVEFILTERS(theTable[s]))t = towns, s = state
HotChilli
2 years agoCommunity Champion
MeasureQ = CALCULATE(COUNT(theTable[t]), REMOVEFILTERS(theTable[s]))
t = towns, s = state