Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon'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.
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.
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.
Solved! Go to Solution.
Hi @jtur ,
The Table data is shown below:
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
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.
Hi @jtur ,
The Table data is shown below:
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
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
143 | |
85 | |
66 | |
51 | |
45 |
User | Count |
---|---|
216 | |
89 | |
82 | |
66 | |
57 |