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
SteveMBSDO
Helper I
Helper I

Calculate Sum when lookup value is in search colu

Hello,

 

I want to calculate the SUM of the ratio for each month. What I would expect is value 138,26 in every row in column ‘Sum of Ratio’ when month = 1. And another value that corresponds to the sum of that month.

 

When I hardcode value 1 in the fitler it works (but that's not the solution ofcourse 😉
->   FILTER(dimCalculations, dimCalculations[Month] = 1)

 

My approach comes from excel, but I guess that doesn’t work here. Can anyone help me in the right direction?

 

SteveMBSDO_0-1682335182069.png

 

Kind regards,

Steve

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

hi @SteveMBSDO 

try like:

Sum of Ratio = 
SUMX(
    FILTER(
        dimCalculations,
        dimCalculations[Month] =  EARLIER(dimCalculations[Month])
        ),
    dimCalculations[Ratio]
)

View solution in original post

3 REPLIES 3
FreemanZ
Super User
Super User

or like:

Sum of Ratio =
CALCULATE(
    SUM(dimCalculations[Ratio]),
    ALLEXCEPT(dimCalculations, dimCalculations[Month])
)
FreemanZ
Super User
Super User

hi @SteveMBSDO 

try like:

Sum of Ratio = 
SUMX(
    FILTER(
        dimCalculations,
        dimCalculations[Month] =  EARLIER(dimCalculations[Month])
        ),
    dimCalculations[Ratio]
)

Great! Thank you FreemanZ. Both of your answers work ;-)!

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.