Forum Discussion
ysherriff
3 years agoResolver II
Fix Matrix total based on two rows
Hi, I am having difficulty coming with a formula to correct my totals in a table with multiple rows. As an example, in image #1, this is the correct total with only one value in the Row. In Image #...
tamerj1
3 years agoCommunity Champion
Hi ysherriff
please try
=
SUMX (
SUMMARIZE ( Campaigns, Campaigns[Campaign Name], 'Date'[Year], 'Date'[Otr-Yr] ),
CALCULATE (
SELECTEDMEASURE (),
CROSSFILTER ( Campaigns[Contact ID], 'Contacts Table'[Contact ID], BOTH )
)
)
ysherriff
3 years agoResolver II
Perfect. Works perfectly.
Thank you very much 😀