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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
JeroenR
Helper V
Helper V

SUMX in dynamic Calculation Group

Hi all,

 

I have the following measure which I would like to place in a calculation group so that I do not need to recreate this for each measure I want to use it. 

The following measure I use to calculate an average/ index 

 

 

_IndexMeasure = 
VAR _Months =
    CALCULATE ( DISTINCTCOUNT ( 'Date'[Month Year Long] ), REMOVEFILTERS () )
VAR _Index =
    CALCULATE (
        SUMX ( 'Table1', 'Table1'[Value %] ),
        REMOVEFILTERS ( 'Date'[Month Year Long] )
    )
RETURN
    DIVIDE ( _Index, _Months )

 

 


Now I want to put this in an calulated column, and I would expect that I need to do the same things as if you want to implement it as a regular measure, so;

 

 

VAR _Months =
    CALCULATE ( DISTINCTCOUNT ( 'Date'[Month Year Long] ), REMOVEFILTERS () )
VAR _Index =
    CALCULATE (
        SUMX ( SELECTEDMEASURE() ),
        REMOVEFILTERS ( 'Date'[Month Year Long] )
    )
RETURN
    DIVIDE ( _Index, _Months )

 

 

But this does not work, because SUMX() needs 2 parameters. But how can I make this dynamic so that I can use the exact same functionality for other columns/ tables as well?

1 ACCEPTED SOLUTION
ppm1
Solution Sage
Solution Sage

Why do you need the SUMX? I would try it with just

 

CALCULATE(SELECTEDMEASURE(), ...

 

Pat

 

Microsoft Employee

View solution in original post

2 REPLIES 2
ppm1
Solution Sage
Solution Sage

Why do you need the SUMX? I would try it with just

 

CALCULATE(SELECTEDMEASURE(), ...

 

Pat

 

Microsoft Employee

Thank you, this works as well. 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors