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
Anonymous
Not applicable

Multiply rows

Hi everybody!

 

I'm in the process of calculating a YTD Inflation. For this, I have a table of Inflation with Country, Month, GrowthPercentage. The calculation for this is:

For the months of the selected period sum 1 to each growth, multiply all of them, and subtract 1 to the result.

 

Example: 0.03 >> 1.03

1.03*1.12*1.18*1.01 = 1.37

1.37 >> 0.37 >> 37%

 

How can I perform this? Because there is SUM and SUMX function, but here what I need is a MULT funcion or something to multiply. Any ideas?

 

Thanks in advance.

 

1 ACCEPTED SOLUTION
Phil_Seamark
Employee
Employee

Hi @Anonymous

 

If I understand you correctly I think the PRODUCT fucntion may probably work.  If you are happy with the essence of the function, it can be extended to work with your data.

 

Result = 
VAR IndexColumn = Table3[Index]
RETURN CALCULATE(
        PRODUCT(
            'Table3'[Rate]
            ),
            FILTER(
                'Table3',
                'Table3'[Index]<=IndexColumn )
               )

 

Product.png


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

View solution in original post

2 REPLIES 2
Phil_Seamark
Employee
Employee

Hi @Anonymous

 

If I understand you correctly I think the PRODUCT fucntion may probably work.  If you are happy with the essence of the function, it can be extended to work with your data.

 

Result = 
VAR IndexColumn = Table3[Index]
RETURN CALCULATE(
        PRODUCT(
            'Table3'[Rate]
            ),
            FILTER(
                'Table3',
                'Table3'[Index]<=IndexColumn )
               )

 

Product.png


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Anonymous
Not applicable

So many thanks @Phil_Seamark!

 

That was exactly what I been looking for. I perfectly performed what I needed.

 

Have a great day!

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.