Forum Discussion
Calculate Projection
- 11 months ago
Hi telesforo1969 ,
Thanks for sharing the screenshots. as you need you can achieve the calculation of future values with the following DAX measures:Inflation Rate = CALCULATE ( PRODUCT ( Values[Inflation Rate] ), FILTER ( ALL ( Calender ), Calender[Date] <= MAX ( Calender[Date] ) ) )Future Values :
Future_Value = MAX ( Values[Value] ) * [Cumulative_Inflation]
Hope this helps !!
I need help calculating future data. The formula is shown in the red box. I have a calendar table because I'm calculating my rate with my calendar table. I just need help calculating future values using the rate.
Hi telesforo1969 ,
Thanks for sharing the screenshots. as you need you can achieve the calculation of future values with the following DAX measures:
Inflation Rate =
CALCULATE (
PRODUCT ( Values[Inflation Rate] ),
FILTER (
ALL ( Calender ),
Calender[Date] <= MAX ( Calender[Date] )
)
)
Future Values :
Future_Value =
MAX ( Values[Value] ) * [Cumulative_Inflation]
Hope this helps !!
- v-aatheeque11 months agoCommunity Support
Hi telesforo1969
I wanted to check in were you able to implement the DAX measures I shared for calculating future values?Did they work as expected in your report, or do you still need any adjustments or further help?
- v-aatheeque11 months agoCommunity Support
Hi telesforo1969
We’d like to check if you were able to go through the previous response to your issue. Please let us know if you need further clarification we’ll do our best to support you.