Forum Discussion
one top row data
Can you please right the expected results with explanation in this same screenshot?
Hi ,
- 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
- Anonymous4 years agoNot applicable
Hi ForzaMami ,
According to the information inside the latest reply you gave, the result of the current item is calculated based on the result after the previous item is calculated. And as tamerj1 said, it involves recursive calculation, I'm afraid it's difficult to achieve what you need with DAX...
Best Regards