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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
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
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 16 | |
| 14 | |
| 9 | |
| 8 | |
| 7 |