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.
Hello my friends.
I Try to add the same value from total in new column, in matrix.
I´ve two rows: Region (EEUU, EUROPA), and Cities (CA.LA,MI,MA,PA,PO); two columns (Last Sales, Act Sales).
in the new columns, needs to add Last Sales and Act Sales.
Regards.
Solved! Go to Solution.
HI @Alexo3627
You need to create two measures similar to this:
General Act = CALCULATE( SUM(Table[Act Sales]), REMOVEFILTERS(Table[Region], Table[Cities]))
General Last = CALCULATE( SUM(Table[Last Sales]), REMOVEFILTERS(Table[Region], Table[Cities]))
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHI @Alexo3627
You need to create two measures similar to this:
General Act = CALCULATE( SUM(Table[Act Sales]), REMOVEFILTERS(Table[Region], Table[Cities]))
General Last = CALCULATE( SUM(Table[Last Sales]), REMOVEFILTERS(Table[Region], Table[Cities]))
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em Português