Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
ysherriff
Resolver II
Resolver 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 #2, when I add a date hierarchy, the total is incorrect. Image #3 is the formula I am using. 

Can anyone help? Thaks in advance

 

Image#1

ysherriff_1-1665672696267.png

 

 

 

Image #2

 

ysherriff_0-1665673396897.png

 

 

 

image #3

ysherriff_0-1665672652055.png

 

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

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 )
    )
)

 

View solution in original post

2 REPLIES 2
tamerj1
Super User
Super User

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 )
    )
)

 

Perfect. Works perfectly.

 

Thank you very much 😀

 

 

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

Top Solution Authors