Forum Discussion
Anonymous
8 years agoNot applicable
Sum value with filter and total at the same time
I have two tables one of valor and another one of the month I want to select the month by a filter and show the value total of the selected month I got now that I want to show the total independen...
- 8 years ago
Hi Anonymous,
Try creating a Calculated measure:
Total = calculate( sum( Sales ), filter( all( 'table name' ), 'table name' [year] = 2017))
This should give you your YTD Total, hope this helps.
Regards
Abduvali
- 8 years ago
Use following measure
Total = CALCULATE ( SUM ( yourtable[value] ), ALL( yourtable[month] ) )
vik0810
Resolver V
8 years agoUse following measure
Total = CALCULATE ( SUM ( yourtable[value] ), ALL( yourtable[month] ) )