Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

How to exclude Items from nested DAX using multiple formulas?

Current working formula I want to exclude 4 items from:   Best in Class Top 5 Average = CALCULATE(AVERAGEX(TOPN(5, SUMMARIZE(filter(all(Company),Company[Segment]="SMB"),[Company Name],"NROI", [Item...
  • amitchandak's avatar
    6 years ago

    Anonymous , Try like

    Best in Class Top 5 Average = CALCULATE(AVERAGEX(TOPN(5, SUMMARIZE(filter(all(Company),Company[Segment]="SMB" && not( [Company Name] in {"Company A", "Company B", "Company C", "Company D"})),[Company Name],"NROI", [Item Value]),[Item Value],DESC),[Item Value]),all('Global Region'))

     

    If you want to exclude on measure and not in other. create those two separately and then use in this formula