Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.