Forum Discussion
Anonymous
7 years agoNot applicable
SUM ALL by Row
Hi there, I would like the column 'total_phrase_all_pixel' to simply keep the results as shown: However when I use the pixel slicer on the right Ican't get the number to remain like it ...
- 7 years ago
Anonymous ,
Use ALL(Table) instead of ALL(Table[Column]) like below:
total_all_pixel = CALCULATE ( SUM ( 'Table'[pixel_count] ), ALL ( 'Table' ) )
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
7 years agoNot applicable
Thanks for getting back,
total_pixel = CALCULATE(SUM('Table'[pixel_count]),ALLSELECTED())
total_all_pixel = CALCULATE(SUM('Table'[pixel_count]),ALL())
v-yuta-msft
Community Support
7 years agoAnonymous ,
Use ALL(Table) instead of ALL(Table[Column]) like below:
total_all_pixel = CALCULATE ( SUM ( 'Table'[pixel_count] ), ALL ( 'Table' ) )
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.