Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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 independent value of selecting the month
If I have column year and selected
select Oct /2017
Look This image
I have to a new box with valor all "Mes"
Unidade = Organization
Ano = Year
Mes = Month
Real Mes = Real Month
I have to = All Month
Ty
Solved! Go to Solution.
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
Use following measure
Total = CALCULATE ( SUM ( yourtable[value] ), ALL( yourtable[month] ) )
Use following measure
Total = CALCULATE ( SUM ( yourtable[value] ), ALL( yourtable[month] ) )
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.