Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
41 | |
24 | |
22 | |
20 | |
13 |
User | Count |
---|---|
159 | |
61 | |
60 | |
28 | |
20 |