Forum Discussion
ForzaMami
4 years agoRegular Visitor
one top row data
It's a little hard to explain, I need to use the same formula in a single dax formula, the one in the top row. I'm trying to power the "Exponential Smoothing" column in the excel below. Is something ...
ForzaMami
4 years agoRegular Visitor
Hi,
Dont work. If you want to get the 1st and 2nd months retrospectively, it doesn't work either.
tamerj1
Community Champion
4 years agoCan you please right the expected results with explanation in this same screenshot?
- ForzaMami4 years agoRegular Visitor
Hi ,
Exponential_1 =([Input2Values]*[Measure Last Period]) + ([Input2Values] * [Measure Last Period](Wrong) )20200301 = (0,5*633.973) + ( 0,5*4.076.361 ) = 2.355.167 must20200401 = (0,5*766.859) + ( 0,5*2.355.167 )= 1.561.013 must- Anonymous4 years agoNot applicable
Hi ForzaMami ,
You can create a measure as below to get it:
Exponential_1 = VAR _curym = SELECTEDVALUE ( 'Table'[Year_Month] ) VAR _selalpha = SELECTEDVALUE ( 'Table'[Alpha] ) RETURN _selalpha * SUMX ( FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Year_Month] <= _curym ), [Measure Last Period] )If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.
How to upload PBI in Community
Best Regards
- ForzaMami4 years agoRegular Visitor
Hi ,
I tried to make an example. I just want Exponential Smoothing column
PBX
https://easyupload.io/gouz99Data and Sample
https://easyupload.io/u81aeaThank You