Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hola,
Espero puedan ayudarme
Cuento con la siguientes columanas: Mes, Gasto Mensial, Gasto Acumulado, y me gustaria sacar el proyectado como lo muestra la columna Proyectado tomando en cuenta que la formula para realizar el calculo es como se muestra en la columna Formula, esto debe ser dinamico, es decir: cuando sea marzo y ya se cuente con los gastos reales el proyectado sería para los meses siguientes y asi sucesivamente.
Ya cree una tabla con los gastos mensuales y los acumulados pero no he podido lograr sacar el proyectado
¡Saludos! 🙂
Hi @JVG ,
My Sample is as below.
Data model:
Measure:
Accum = CALCULATE(SUM('Table'[Expense]),FILTER(ALL('Month'),'Month'[Month Number]<= MAX('Month'[Month Number])))Projected =
( SELECTEDVALUE ( 'Month'[Month Number] ) - 1 )
* CALCULATE (
SUM ( 'Table'[Expense] ),
FILTER ( ALL ( 'Month' ), 'Month'[Month Number] = 2 )
)
- ( SELECTEDVALUE ( 'Month'[Month Number] ) - 2 )
* CALCULATE (
SUM ( 'Table'[Expense] ),
FILTER ( ALL ( 'Month' ), 'Month'[Month Number] = 1 )
)Projected Accum = SUMX(FILTER(ALL('Month'),'Month'[Month Number]<= MAX('Month'[Month Number])),[Projected])
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |