Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi everyone,
My question here is very simple, how can I use the ALLSELECTED function respecting the total values/filters of the columns in a visual table?
I created the first visual table with a simple SUM, divided by months at the columns,
Then I create a second table, but I would like to return in each row, the total sum by month from the first table,
Here an example of where I'm stuck, I think a simple change in my code below would resolve this problem,
I would appreciate help from someone here, thank you, guys,
Hi @Anonymous
Please try
Desempenho Medio (Fornecedor) =
CALCULATE (
SUM ( 'C-FORECAST'[Realizado] ),
ALLSELECTED ( 'C-FORECAST'[Armadores] )
)