Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 like this possible ?
Thanks
Hi ,
I just want Exponential Smoothing column
PBX
https://easyupload.io/gouz99
Data and Sample
https://easyupload.io/u81aea
Thank You
did i want something so hard 🙂
Hi @ForzaMami ,
You should be able to set it as a variable:
_expoSmoothing =
VAR __minSatis =
CALCULATE(
MAX(yourTable[Satis]),
FILTER(
yourTable,
yourTable[Year_Month] = MIN(yourTable[Year_Month])
)
)
RETURN
([thing1] * [thing2]) + ([thing3] * __minSatis)
Pete
Proud to be a Datanaut!
I need to take the calculation from the previous line as a variable. This did not happen 😞
Sorry, I misunderstood your requirement.
Add an index column to your table and set a variable like this:
_expoSmoothing =
VAR __lastExpoValue =
LOOKUPVALUE(
yourTable[Exponential Smoothing],
yourTable[Index],
yourTable[Index] - 1
)
RETURN
([thing1] * [thing2]) + ([thing3] * __lastExpoValue)
Proud to be a Datanaut!
sorry i think i didn't explain. same formula need same formula value