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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
jtur
Helper II
Helper II

Acumulado Aumentos

Buenos dias. Por favor preciso de su ayuda.

 

Este seria un cuadro de los aumentos de los proveedores mes a mes. Ejemplo el Proveedor ABERALDO POMGOLINI S R L aumento en ene un 6% depsues aumento en feb un 12% y asi sucesivamemte.

Captura de pantalla 2024-03-13 134524.png

 

Preciso por favor una medida donde me indique el aumento acumulado. Matematicamente seria (1 + 0,06) * (1 + 0.12) ...... (1 + 0.32) - 1 = 427% y que se pueda ver por proveedor 

 

Gracias


Saludos.

 

1 ACCEPTED SOLUTION
v-zhouwen-msft
Community Support
Community Support

Hi @jtur ,

The Table data is shown below:

vzhouwenmsft_0-1710396695114.png

Please follow these steps:
1. Use the following DAX expression to create a column named ‘Rank’

Rank = MONTH('Table'[Month])

2. Use the following DAX expression to create a column named ‘Column’

Column = [ increment]+1

3. Use the following DAX expression to create a column named ‘increase every month’

increase every month = 
VAR _a = [Rank]
VAR _b = [Column]
VAR _c = CALCULATE(PRODUCTX(FILTER(ALL('Table'),'Table'[Rank] <= _a),'Table'[Column]))-1
RETURN _c

4. Fianl output

vzhouwenmsft_1-1710396815482.png

vzhouwenmsft_2-1710396836679.png

Best Regards,
Wenbin Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-zhouwen-msft
Community Support
Community Support

Hi @jtur ,

The Table data is shown below:

vzhouwenmsft_0-1710396695114.png

Please follow these steps:
1. Use the following DAX expression to create a column named ‘Rank’

Rank = MONTH('Table'[Month])

2. Use the following DAX expression to create a column named ‘Column’

Column = [ increment]+1

3. Use the following DAX expression to create a column named ‘increase every month’

increase every month = 
VAR _a = [Rank]
VAR _b = [Column]
VAR _c = CALCULATE(PRODUCTX(FILTER(ALL('Table'),'Table'[Rank] <= _a),'Table'[Column]))-1
RETURN _c

4. Fianl output

vzhouwenmsft_1-1710396815482.png

vzhouwenmsft_2-1710396836679.png

Best Regards,
Wenbin Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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