Forum Discussion
rawiswarden
6 years agoHelper I
Calculate Total Excluding Row Contribution
Hello, If I have a simple table like this, where amount is a measure. What is the DAX to get the total of column Amount excluding that row? As you can see, the What If Amount is just the tot...
- 6 years ago
Hi rawiswarden
try a measure like
Measure = calculate(sum(Table4[Amount]);FILTER(ALL('Table4');Table4[Name]<>SELECTEDVALUE(Table4[Name])))do not hesitate to give a kudo to useful posts and mark solutions as solution
az38
6 years agoCommunity Champion
Hi rawiswarden
try a measure like
Measure =
calculate(sum(Table4[Amount]);FILTER(ALL('Table4');Table4[Name]<>SELECTEDVALUE(Table4[Name])))do not hesitate to give a kudo to useful posts and mark solutions as solution
rawiswarden
6 years agoHelper I
Awesome! Selected value is what I needed to know.