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 ...
Anonymous
4 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
ForzaMami
4 years agoRegular Visitor
Hi ,
I tried to make an example. I just want Exponential Smoothing column
PBX
https://easyupload.io/gouz99
Data and Sample
https://easyupload.io/u81aea
Thank You