The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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