Hi guys,
I am trying to create a total values column with the total value (5930) appearing for each row.
The total value column i want to make should have 5,930 throughout all the rows but everytime i try to make a measure with such as sum(Values) , it ends up just giving me the value for each row rather than the value for every row.
Can anybody help?
Solved! Go to Solution.
Hi @Kote101,
Please modify that measure like below.
Measure 2 = CALCULATE(SUM('Table1'[Amount]),ALLSELECTED('Table1'))
Then it will show the sum of amount dynamically based on the filter.
Best Regards,
Cherry
Hi @Kote101,
Please try the measure below.
Measure 2 = CALCULATE(SUM('Table1'[Amount]),ALL('Table1'))
Here is an example.
If you still need help, please share some data sample and your desired output so that we could help further on it.
Best Regards,
Cherry
Hi @Kote101,
Please modify that measure like below.
Measure 2 = CALCULATE(SUM('Table1'[Amount]),ALLSELECTED('Table1'))
Then it will show the sum of amount dynamically based on the filter.
Best Regards,
Cherry
Hi @Kote101
I'm afraid you provide too little info for a clear answer.
To get rid of the filter from the rows, try SUM(ALL(YourTableName[Values]))
Join us for an in-depth look at the new Power BI features and capabilities at the free Microsoft Business Applications Launch Event.
User | Count |
---|---|
444 | |
159 | |
111 | |
52 | |
52 |
User | Count |
---|---|
459 | |
142 | |
131 | |
78 | |
71 |