Forum Discussion
RanjanThammaiah
3 years agoHelper V
All Except not working
Hi All, i wanted to change the top 25 value only for the Reporting Region filters. I have come up with the below DAX but it doesn't work. May I know if anyone has any suggestions for this? ...
- 3 years ago
Something like
Top25 =
var a = calculatetable(summarize('Sheet1',[OpportunityID],"sm",[Revenue]),ALLEXCEPT('Sheet1','Sheet1'[ReportingRegion]))
var b = TOPN(25,a,[sm])
return SUMX(b,[sm])
lbendlin
3 years agoSuper User
Something like
Top25 =
var a = calculatetable(summarize('Sheet1',[OpportunityID],"sm",[Revenue]),ALLEXCEPT('Sheet1','Sheet1'[ReportingRegion]))
var b = TOPN(25,a,[sm])
return SUMX(b,[sm])