ℹ️ Skipped - page is already crawled
| Filter | Status | Condition | Details |
|---|---|---|---|
| HTTP status | PASS | download_http_code = 200 | HTTP 200 |
| Age cutoff | PASS | download_stamp > now() - 6 MONTH | 0.1 months ago |
| History drop | PASS | isNull(history_drop_reason) | No drop reason |
| Spam/ban | PASS | fh_dont_index != 1 AND ml_spam_score = 0 | ml_spam_score=0 |
| Canonical | PASS | meta_canonical IS NULL OR = '' OR = src_unparsed | Not set |
| Property | Value |
|---|---|
| URL | https://www.statisticshowto.com/exponential-smoothing/ |
| Last Crawled | 2026-04-06 10:08:09 (2 days ago) |
| First Indexed | 2020-04-03 23:38:13 (6 years ago) |
| HTTP Status Code | 200 |
| Meta Title | Exponential Smoothing: Definition of Simple, Double and Triple - Statistics How To |
| Meta Description | Simple definition of exponential smoothing. Includes single, double, and exponential smoothing (Holt-Winters) methods, with formulas. |
| Meta Canonical | null |
| Boilerpipe Text | Time Series Analysis
> Exponential Smoothing
Contents:
What is Exponential Smoothing?
Exponential Smoothing in Excel 2016-2013
Exponential smoothing
of
time series
data assigns exponentially decreasing weights for newest to oldest
observations
. In other words, the older the data, the less priority (“weight”) the data is given; newer data is seen as more relevant and is assigned more weight. Smoothing parameters (smoothing constants)— usually denoted by α— determine the weights for observations.
Exponential smoothing is usually used to make short term forecasts, as longer term forecasts using this technique can be quite unreliable.
Simple (single) exponential smoothing
uses a weighted moving average with exponentially decreasing weights.
Holt’s trend-corrected double exponential smoothing
is usually more reliable for handling data that shows
trends
, compared to the single procedure.
Triple exponential smoothing
(also called the Multiplicative Holt-Winters) is usually more reliable for parabolic trends or data that shows trends
and
seasonality
..
1. Simple Exponential Smoothing
The
basic formula
is:
S
t
= αy
t-1
+ (1 – α) S
t-1
Where
:
α = the smoothing constant, a value from 0 to 1. When α is close to zero, smoothing happens more slowly. Following this, the best value for α is the one that results in the smallest
mean squared error (MSE)
. Various ways exist to do this, but a popular method is the
Levenberg–Marquardt algorithm
.
t = time period.
Many alternative formulas exist
. For example, Roberts (1959) replaced y
t-1
with the current observation, y
t
. Another formula uses the forecast for the previous period and current period:
Where
:
Ft – 1 = forecast for the previous period,
At – 1 = Actual demand for the period,
a = weight (between 0 and 1). The closer to zero, the smaller the weight.
Which formula to use
is usually a moot point, as most exponential smoothing is performed using software. Whichever formula you use though, you’ll have to set an initial observation. This is a judgment call. You could use an
average
of the first few observations, or you could set the second smoothed value equal to the original observation value to get the ball rolling.
2. Double Exponential Smoothing
This method is deemed more reliable for analyzing data that shows a trend. In addition, this is a more complicated method which adds a second equation to the procedure:
b
t
= Îł(S
t
– S
t-1
) + (1 – γ)b
t-1
Where
:
γ is a constant that is chosen with reference to α. Like α it can be chosen through the
Levenberg–Marquardt algorithm
.
3. Triple Exponential Smoothing
If your data shows a trend
and
seasonality
, use triple exponential smoothing. In addition to the equations for single and double smoothing, a third equation is used to handle the seasonality aspect:
I
t
= Î’ y
t
/S
t
+ (1-Î’)I
t-L+m
Where
:
y = observation,
S = smoothed observation,
b = trend factor,
I = seasonal index,
F = forecast
m
periods ahead,
t = time period.
Like α and γ, the optimal Β minimizes the MSE.
Exponential Smoothing in Excel 2016 & 2013
Exponential Smoothing in Excel 2016 & 2013: Overview
Exponential smoothing is a way to smooth out data for presentations or to make forecasts. It’s usually used for finance and economics. If you have a time series with a clear pattern, you could use
moving averages
— but if you don’t have a clear pattern you
can
use exponential smoothing to forecast.
Damping Factors
Perhaps one of the most confusing aspects of exponential smoothing is the
damping factor
. Damping factors are used to smooth out the graph and take on a value between 0 and 1. Technically, the damping factor is 1 minus the
alpha level
(1 – α). But all you really need to know is smaller alpha levels (i.e. larger damping factors), smooths out the peaks and valleys more than larger alpha levels (smaller damping factors). Smaller damping factors also mean that your smoothed values are closer to the actual data points than larger damping factors. The easiest way to create exponential smoothing in Excel is to use the
Data Analysis Toolpak
.
Exponential Smoothing in Excel 2016 & 2013: Steps
Step 1:
Click the “Data” tab and then click “Data Analysis.”
Step 2:
Select “Exponential Smoothing” and then click “OK.”
Step 3:
Click the Input Range box and then type the location for your forecast data. For example, if you typed your data into cells E1 to E10, type “E1:E10” into that box
Step 4:
Type a damping factor into the damping factor box. A valid value is 0 to 1. Don’t worry if you aren’t sure what damping factor to type in>you can easily repeat the tests with different damping factors (i.e. 0.9, 0.5, 0.3) to see which one works best.
Step 5:
Type a cell location into the Output range box. You generally want this in the next column. For example, if you typed your data into cells E1 to E10, type “F1” into that box
Step 6:
Click “OK.”
The following graph shows the original data set (first column of data), and what happens when a damping factor is applied:
Original data (blue) compared with smoothed data (orange).
Check out our
YouTube channel
for more Excel help and tips!
References
Agresti A. (1990)
Categorical Data Analysis.
John Wiley and Sons, New York.
Gonick, L. (1993).
The Cartoon Guide to Statistics
. HarperPerennial.
Kotz, S.; et al., eds. (2006),
Encyclopedia of Statistical Sciences
, Wiley.
Wheelan, C. (2014).
Naked Statistics
. W. W. Norton & Company |
| Markdown | [Skip to content](https://www.statisticshowto.com/exponential-smoothing/#content "Skip to content")
[Statistics How To](https://www.statisticshowto.com/)
Menu
- [Home](https://www.statisticshowto.com/)
- [Tables](https://www.statisticshowto.com/tables/)
- [Binomial Distribution Table](https://www.statisticshowto.com/tables/binomial-distribution-table/)
- [F Table](https://www.statisticshowto.com/tables/f-table/)
- [Inverse T Distribution Table](https://www.statisticshowto.com/tables/inverse-t-distribution-table/)
- [PPMC Critical Values](https://www.statisticshowto.com/tables/ppmc-critical-values/)
- [T-Distribution Table (One Tail and Two-Tails)](https://www.statisticshowto.com/tables/t-distribution-table/)
- [Chi Squared Table (Right Tail)](https://www.statisticshowto.com/tables/chi-squared-table-right-tail/)
- [Z-table (Right of Curve or Left)](https://www.statisticshowto.com/tables/z-table/)
- [Probability and Statistics](https://www.statisticshowto.com/probability-and-statistics/)
- [Binomials](https://www.statisticshowto.com/probability-and-statistics/binomial-theorem/)
- [Chi-Square Statistic](https://www.statisticshowto.com/probability-and-statistics/chi-square/)
- [Expected Value](https://www.statisticshowto.com/probability-and-statistics/expected-value/)
- [Hypothesis Testing](https://www.statisticshowto.com/probability-and-statistics/hypothesis-testing/)
- [Non Normal Distribution](https://www.statisticshowto.com/probability-and-statistics/non-normal-distributions/)
- [Normal Distributions](https://www.statisticshowto.com/probability-and-statistics/normal-distributions/)
- [Probability](https://www.statisticshowto.com/probability-and-statistics/probability-main-index/)
- [Regression Analysis](https://www.statisticshowto.com/probability-and-statistics/regression-analysis/)
- [Statistics Basics](https://www.statisticshowto.com/statistics-basics/)
- [T-Distribution](https://www.statisticshowto.com/probability-and-statistics/t-distribution/)
- [Multivariate Analysis & Independent Component](https://www.statisticshowto.com/probability-and-statistics/multivariate-analysis/)
- [Sampling](https://www.statisticshowto.com/probability-and-statistics/sampling-in-statistics/)
- [Calculators](https://www.statisticshowto.com/calculators/)
- [Variance and Standard Deviation Calculator](https://www.statisticshowto.com/calculators/variance-and-standard-deviation-calculator/)
- [Tdist Calculator](https://www.statisticshowto.com/calculators/tdist-calculator/)
- [Permutation Calculator / Combination Calculator](https://www.statisticshowto.com/calculators/permutation-calculator-and-combination-calculator/)
- [Interquartile Range Calculator](https://www.statisticshowto.com/calculators/interquartile-range-calculator/)
- [Linear Regression Calculator](https://www.statisticshowto.com/calculators/linear-regression-calculator/)
- [Expected Value Calculator](https://www.statisticshowto.com/calculators/expected-value-calculator/)
- [Binomial Distribution Calculator](https://www.statisticshowto.com/calculators/binomial-distribution-calculator/)
- [Matrices](https://www.statisticshowto.com/matrices-and-matrix-algebra/)
- [Experimental Design](https://www.statisticshowto.com/experimental-design/)
- [Calculus Based Statistics](https://www.statisticshowto.com/probability-and-statistics/calculus-based-statistics/)
[Statistics How To](https://www.statisticshowto.com/)
Menu
- [Home](https://www.statisticshowto.com/)
- [Tables](https://www.statisticshowto.com/tables/)
- [Binomial Distribution Table](https://www.statisticshowto.com/tables/binomial-distribution-table/)
- [F Table](https://www.statisticshowto.com/tables/f-table/)
- [Inverse T Distribution Table](https://www.statisticshowto.com/tables/inverse-t-distribution-table/)
- [PPMC Critical Values](https://www.statisticshowto.com/tables/ppmc-critical-values/)
- [T-Distribution Table (One Tail and Two-Tails)](https://www.statisticshowto.com/tables/t-distribution-table/)
- [Chi Squared Table (Right Tail)](https://www.statisticshowto.com/tables/chi-squared-table-right-tail/)
- [Z-table (Right of Curve or Left)](https://www.statisticshowto.com/tables/z-table/)
- [Probability and Statistics](https://www.statisticshowto.com/probability-and-statistics/)
- [Binomials](https://www.statisticshowto.com/probability-and-statistics/binomial-theorem/)
- [Chi-Square Statistic](https://www.statisticshowto.com/probability-and-statistics/chi-square/)
- [Expected Value](https://www.statisticshowto.com/probability-and-statistics/expected-value/)
- [Hypothesis Testing](https://www.statisticshowto.com/probability-and-statistics/hypothesis-testing/)
- [Non Normal Distribution](https://www.statisticshowto.com/probability-and-statistics/non-normal-distributions/)
- [Normal Distributions](https://www.statisticshowto.com/probability-and-statistics/normal-distributions/)
- [Probability](https://www.statisticshowto.com/probability-and-statistics/probability-main-index/)
- [Regression Analysis](https://www.statisticshowto.com/probability-and-statistics/regression-analysis/)
- [Statistics Basics](https://www.statisticshowto.com/statistics-basics/)
- [T-Distribution](https://www.statisticshowto.com/probability-and-statistics/t-distribution/)
- [Multivariate Analysis & Independent Component](https://www.statisticshowto.com/probability-and-statistics/multivariate-analysis/)
- [Sampling](https://www.statisticshowto.com/probability-and-statistics/sampling-in-statistics/)
- [Calculators](https://www.statisticshowto.com/calculators/)
- [Variance and Standard Deviation Calculator](https://www.statisticshowto.com/calculators/variance-and-standard-deviation-calculator/)
- [Tdist Calculator](https://www.statisticshowto.com/calculators/tdist-calculator/)
- [Permutation Calculator / Combination Calculator](https://www.statisticshowto.com/calculators/permutation-calculator-and-combination-calculator/)
- [Interquartile Range Calculator](https://www.statisticshowto.com/calculators/interquartile-range-calculator/)
- [Linear Regression Calculator](https://www.statisticshowto.com/calculators/linear-regression-calculator/)
- [Expected Value Calculator](https://www.statisticshowto.com/calculators/expected-value-calculator/)
- [Binomial Distribution Calculator](https://www.statisticshowto.com/calculators/binomial-distribution-calculator/)
- [Matrices](https://www.statisticshowto.com/matrices-and-matrix-algebra/)
- [Experimental Design](https://www.statisticshowto.com/experimental-design/)
- [Calculus Based Statistics](https://www.statisticshowto.com/probability-and-statistics/calculus-based-statistics/)
# Exponential Smoothing: Definition of Simple, Double and Triple
[Time Series Analysis](https://www.statisticshowto.com/timeplot/) \> Exponential Smoothing
**Contents:**
[What is Exponential Smoothing?](https://www.statisticshowto.com/exponential-smoothing/#definition)
[Exponential Smoothing in Excel 2016-2013](https://www.statisticshowto.com/exponential-smoothing/#excel)
## What is Exponential Smoothing?
**Exponential smoothing** of [time series](https://www.statisticshowto.com/timeplot/) data assigns exponentially decreasing weights for newest to oldest [observations](https://www.statisticshowto.com/observation-in-statistics/). In other words, the older the data, the less priority (“weight”) the data is given; newer data is seen as more relevant and is assigned more weight. Smoothing parameters (smoothing constants)— usually denoted by α— determine the weights for observations.
Exponential smoothing is usually used to make short term forecasts, as longer term forecasts using this technique can be quite unreliable.
- **Simple (single) exponential smoothing** uses a weighted moving average with exponentially decreasing weights.
- **Holt’s trend-corrected double exponential smoothing** is usually more reliable for handling data that shows [trends](https://www.statisticshowto.com/trend-analysis/), compared to the single procedure.
- **Triple exponential smoothing** (also called the Multiplicative Holt-Winters) is usually more reliable for parabolic trends or data that shows trends *and* [seasonality](https://www.statisticshowto.com/timeplot/#seasonality)..
## 1\. Simple Exponential Smoothing
The **basic formula** is:
St = αyt-1 + (1 – α) St-1
*Where*:
- α = the smoothing constant, a value from 0 to 1. When α is close to zero, smoothing happens more slowly. Following this, the best value for α is the one that results in the smallest [mean squared error (MSE)](https://www.statisticshowto.com/probability-and-statistics/statistics-definitions/mean-squared-error/). Various ways exist to do this, but a popular method is the [Levenberg–Marquardt algorithm](https://www.statisticshowto.com/levenberg-marquardt-algorithm/).
- t = time period.
**Many alternative formulas exist**. For example, Roberts (1959) replaced yt-1 with the current observation, yt. Another formula uses the forecast for the previous period and current period:
[](https://www.statisticshowto.com/wp-content/uploads/2016/10/exponential-smoothing-formula.png)
*Where*:
- Ft – 1 = forecast for the previous period,
- At – 1 = Actual demand for the period,
- a = weight (between 0 and 1). The closer to zero, the smaller the weight.
**Which formula to use** is usually a moot point, as most exponential smoothing is performed using software. Whichever formula you use though, you’ll have to set an initial observation. This is a judgment call. You could use an [average](https://www.statisticshowto.com/arithmetic-mean/) of the first few observations, or you could set the second smoothed value equal to the original observation value to get the ball rolling.
## 2\. Double Exponential Smoothing
This method is deemed more reliable for analyzing data that shows a trend. In addition, this is a more complicated method which adds a second equation to the procedure:
> bt = γ(St – St-1) + (1 – γ)bt-1
*Where*:
- γ is a constant that is chosen with reference to α. Like α it can be chosen through the [Levenberg–Marquardt algorithm](http://people.duke.edu/~hpgavin/ce281/lm.pdf).
## 3\. Triple Exponential Smoothing
If your data shows a trend *and* [seasonality](https://www.statisticshowto.com/timeplot/#seasonality), use triple exponential smoothing. In addition to the equations for single and double smoothing, a third equation is used to handle the seasonality aspect:
It = Î’ yt/St + (1-Î’)It-L+m
*Where*:
- y = observation,
- S = smoothed observation,
- b = trend factor,
- I = seasonal index,
- F = forecast *m* periods ahead,
- t = time period.
Like α and γ, the optimal Β minimizes the MSE.
## Exponential Smoothing in Excel 2016 & 2013
## Exponential Smoothing in Excel 2016 & 2013: Overview
[](https://www.statisticshowto.com/wp-content/uploads/2013/12/excel-pivot-table.jpg)Exponential smoothing is a way to smooth out data for presentations or to make forecasts. It’s usually used for finance and economics. If you have a time series with a clear pattern, you could use [moving averages](https://www.statisticshowto.com/probability-and-statistics/statistics-definitions/moving-average/) — but if you don’t have a clear pattern you *can* use exponential smoothing to forecast.
## Damping Factors
Perhaps one of the most confusing aspects of exponential smoothing is the **damping factor**. Damping factors are used to smooth out the graph and take on a value between 0 and 1. Technically, the damping factor is 1 minus the [alpha level](https://www.statisticshowto.com/probability-and-statistics/statistics-definitions/what-is-an-alpha-level/) (1 – α). But all you really need to know is smaller alpha levels (i.e. larger damping factors), smooths out the peaks and valleys more than larger alpha levels (smaller damping factors). Smaller damping factors also mean that your smoothed values are closer to the actual data points than larger damping factors. The easiest way to create exponential smoothing in Excel is to use the [Data Analysis Toolpak](https://www.statisticshowto.com/excel-data-analysis-toolpak/).
### Exponential Smoothing in Excel 2016 & 2013: Steps
Step 1: Click the “Data” tab and then click “Data Analysis.”
Step 2: Select “Exponential Smoothing” and then click “OK.”
Step 3: Click the Input Range box and then type the location for your forecast data. For example, if you typed your data into cells E1 to E10, type “E1:E10” into that box
Step 4: Type a damping factor into the damping factor box. A valid value is 0 to 1. Don’t worry if you aren’t sure what damping factor to type in\>you can easily repeat the tests with different damping factors (i.e. 0.9, 0.5, 0.3) to see which one works best.
Step 5: Type a cell location into the Output range box. You generally want this in the next column. For example, if you typed your data into cells E1 to E10, type “F1” into that box
Step 6: Click “OK.”
The following graph shows the original data set (first column of data), and what happens when a damping factor is applied:
[](https://www.statisticshowto.com/wp-content/uploads/2013/12/excel-exponential-smoothing.png)
Original data (blue) compared with smoothed data (orange).
Check out our [YouTube channel](https://www.youtube.com/channel/UC3p_xMSRy1tQ07_7WFk-yqg) for more Excel help and tips\!
## References
Agresti A. (1990) [Categorical Data Analysis.](https://amzn.to/2O47MZa) John Wiley and Sons, New York.
Gonick, L. (1993). [The Cartoon Guide to Statistics](https://amzn.to/3iIKTJ4). HarperPerennial.
Kotz, S.; et al., eds. (2006), [Encyclopedia of Statistical Sciences](https://amzn.to/38y6UFw), Wiley.
Wheelan, C. (2014). [Naked Statistics](https://amzn.to/3jXb1As). W. W. Norton & Company
[Z Interval: Simple Definition, Formula & Worked Example](https://www.statisticshowto.com/z-interval/)
[Trend Analysis: Simple Definition, Examples](https://www.statisticshowto.com/trend-analysis/)
**Comments? Need to post a correction?** Please [***Contact Us***](https://www.statisticshowto.com/contact/).
Check out our **["Practically Cheating Statistics Handbook](https://www.statisticshowto.com/?page_id=15743&preview=true")**, which gives you hundreds of easy-to-follow answers in a convenient e-book.
[](https://www.statisticshowto.com/?page_id=15743&preview=true)
***
**Readers are calling it suspenseful, haunting, and unforgettable. Check out Stephanie’s debut post-apocalyptic novel — available now on Amazon.**
[](https://amzn.to/3LLzICB)
Looking for elementary [**statistics help**](https://www.statisticshowto.com/help-with-statistics-equations/)? You’ve come to the right place. **Statistics How To** has more than 1,000 articles and **videos** for elementary statistics, probability, AP and advanced statistics topics. **Looking for a specific topic?** Type it into the search box at the top of the page.
Latest articles
- [Hedges’ g: Definition, Formula](https://www.statisticshowto.com/hedges-g/)
- [Kaiser-Meyer-Olkin (KMO) Test for Sampling Adequacy](https://www.statisticshowto.com/kaiser-meyer-olkin/)
- [Benjamini-Hochberg Procedure](https://www.statisticshowto.com/benjamini-hochberg-procedure/)
- [Tetrachoric Correlation: Definition, Examples, Formula](https://www.statisticshowto.com/tetrachoric-correlation/)
- [Random Variable: What is it in Statistics?](https://www.statisticshowto.com/random-variable/)
- [Maximum Likelihood and Maximum Likelihood Estimation](https://www.statisticshowto.com/maximum-likelihood-estimation/)
- [What is a Parameter in Statistics?](https://www.statisticshowto.com/what-is-a-parameter-in-statistics/)
- [Beta Level: Definition & Examples](https://www.statisticshowto.com/beta-level/)
- [Pairwise Independent, Mutually Independent: Definition, Example](https://www.statisticshowto.com/pairwise-independent-mutually/)
- [Population Mean Definition, Example, Formula](https://www.statisticshowto.com/population-mean/)
- [Dispersion / Measures of Dispersion: Definition](https://www.statisticshowto.com/dispersion/)
- [Serial Correlation / Autocorrelation: Definition, Tests](https://www.statisticshowto.com/serial-correlation-autocorrelation/)
© 2026 [**Statistics How To**](https://www.statisticshowto.com/) \| [About Us](https://www.statisticshowto.com/contact/) \| [Privacy Policy](https://www.statisticshowto.com/privacy-policy/) \| [Terms of Use](https://www.statisticshowto.com/terms-of-use/) |
| Readable Markdown | [Time Series Analysis](https://www.statisticshowto.com/timeplot/) \> Exponential Smoothing
**Contents:**
[What is Exponential Smoothing?](https://www.statisticshowto.com/exponential-smoothing/#definition)
[Exponential Smoothing in Excel 2016-2013](https://www.statisticshowto.com/exponential-smoothing/#excel)
**Exponential smoothing** of [time series](https://www.statisticshowto.com/timeplot/) data assigns exponentially decreasing weights for newest to oldest [observations](https://www.statisticshowto.com/observation-in-statistics/). In other words, the older the data, the less priority (“weight”) the data is given; newer data is seen as more relevant and is assigned more weight. Smoothing parameters (smoothing constants)— usually denoted by α— determine the weights for observations.
Exponential smoothing is usually used to make short term forecasts, as longer term forecasts using this technique can be quite unreliable.
- **Simple (single) exponential smoothing** uses a weighted moving average with exponentially decreasing weights.
- **Holt’s trend-corrected double exponential smoothing** is usually more reliable for handling data that shows [trends](https://www.statisticshowto.com/trend-analysis/), compared to the single procedure.
- **Triple exponential smoothing** (also called the Multiplicative Holt-Winters) is usually more reliable for parabolic trends or data that shows trends *and* [seasonality](https://www.statisticshowto.com/timeplot/#seasonality)..
## 1\. Simple Exponential Smoothing
The **basic formula** is:
St = αyt-1 + (1 – α) St-1
*Where*:
- α = the smoothing constant, a value from 0 to 1. When α is close to zero, smoothing happens more slowly. Following this, the best value for α is the one that results in the smallest [mean squared error (MSE)](https://www.statisticshowto.com/probability-and-statistics/statistics-definitions/mean-squared-error/). Various ways exist to do this, but a popular method is the [Levenberg–Marquardt algorithm](https://www.statisticshowto.com/levenberg-marquardt-algorithm/).
- t = time period.
**Many alternative formulas exist**. For example, Roberts (1959) replaced yt-1 with the current observation, yt. Another formula uses the forecast for the previous period and current period:
[](https://www.statisticshowto.com/wp-content/uploads/2016/10/exponential-smoothing-formula.png)
*Where*:
- Ft – 1 = forecast for the previous period,
- At – 1 = Actual demand for the period,
- a = weight (between 0 and 1). The closer to zero, the smaller the weight.
**Which formula to use** is usually a moot point, as most exponential smoothing is performed using software. Whichever formula you use though, you’ll have to set an initial observation. This is a judgment call. You could use an [average](https://www.statisticshowto.com/arithmetic-mean/) of the first few observations, or you could set the second smoothed value equal to the original observation value to get the ball rolling.
## 2\. Double Exponential Smoothing
This method is deemed more reliable for analyzing data that shows a trend. In addition, this is a more complicated method which adds a second equation to the procedure:
> bt = γ(St – St-1) + (1 – γ)bt-1
*Where*:
- γ is a constant that is chosen with reference to α. Like α it can be chosen through the [Levenberg–Marquardt algorithm](http://people.duke.edu/~hpgavin/ce281/lm.pdf).
## 3\. Triple Exponential Smoothing
If your data shows a trend *and* [seasonality](https://www.statisticshowto.com/timeplot/#seasonality), use triple exponential smoothing. In addition to the equations for single and double smoothing, a third equation is used to handle the seasonality aspect:
It = Î’ yt/St + (1-Î’)It-L+m
*Where*:
- y = observation,
- S = smoothed observation,
- b = trend factor,
- I = seasonal index,
- F = forecast *m* periods ahead,
- t = time period.
Like α and γ, the optimal Β minimizes the MSE.
## Exponential Smoothing in Excel 2016 & 2013
## Exponential Smoothing in Excel 2016 & 2013: Overview
[](https://www.statisticshowto.com/wp-content/uploads/2013/12/excel-pivot-table.jpg)Exponential smoothing is a way to smooth out data for presentations or to make forecasts. It’s usually used for finance and economics. If you have a time series with a clear pattern, you could use [moving averages](https://www.statisticshowto.com/probability-and-statistics/statistics-definitions/moving-average/) — but if you don’t have a clear pattern you *can* use exponential smoothing to forecast.
## Damping Factors
Perhaps one of the most confusing aspects of exponential smoothing is the **damping factor**. Damping factors are used to smooth out the graph and take on a value between 0 and 1. Technically, the damping factor is 1 minus the [alpha level](https://www.statisticshowto.com/probability-and-statistics/statistics-definitions/what-is-an-alpha-level/) (1 – α). But all you really need to know is smaller alpha levels (i.e. larger damping factors), smooths out the peaks and valleys more than larger alpha levels (smaller damping factors). Smaller damping factors also mean that your smoothed values are closer to the actual data points than larger damping factors. The easiest way to create exponential smoothing in Excel is to use the [Data Analysis Toolpak](https://www.statisticshowto.com/excel-data-analysis-toolpak/).
### Exponential Smoothing in Excel 2016 & 2013: Steps
Step 1: Click the “Data” tab and then click “Data Analysis.”
Step 2: Select “Exponential Smoothing” and then click “OK.”
Step 3: Click the Input Range box and then type the location for your forecast data. For example, if you typed your data into cells E1 to E10, type “E1:E10” into that box
Step 4: Type a damping factor into the damping factor box. A valid value is 0 to 1. Don’t worry if you aren’t sure what damping factor to type in\>you can easily repeat the tests with different damping factors (i.e. 0.9, 0.5, 0.3) to see which one works best.
Step 5: Type a cell location into the Output range box. You generally want this in the next column. For example, if you typed your data into cells E1 to E10, type “F1” into that box
Step 6: Click “OK.”
The following graph shows the original data set (first column of data), and what happens when a damping factor is applied:
[](https://www.statisticshowto.com/wp-content/uploads/2013/12/excel-exponential-smoothing.png)
Original data (blue) compared with smoothed data (orange).
Check out our [YouTube channel](https://www.youtube.com/channel/UC3p_xMSRy1tQ07_7WFk-yqg) for more Excel help and tips\!
## References
Agresti A. (1990) [Categorical Data Analysis.](https://amzn.to/2O47MZa) John Wiley and Sons, New York.
Gonick, L. (1993). [The Cartoon Guide to Statistics](https://amzn.to/3iIKTJ4). HarperPerennial.
Kotz, S.; et al., eds. (2006), [Encyclopedia of Statistical Sciences](https://amzn.to/38y6UFw), Wiley.
Wheelan, C. (2014). [Naked Statistics](https://amzn.to/3jXb1As). W. W. Norton & Company |
| Shard | 150 (laksa) |
| Root Hash | 12746512124316119150 |
| Unparsed URL | com,statisticshowto!www,/exponential-smoothing/ s443 |