PS....

Originally Posted by
MaxMW
I have a thought of using the average + or - the standard deviation randomly.

Originally Posted by
joeu2004
Forget about the std dev for now.
There is one use of the mean and std dev of the raw weekly sales data (not the change in weekly sales). But it probably is not useful to you.
Even if the weekly data is not normally distributed (and we hope it is not), the mean of random samples of the data approaches a normal distribution as the sample size increases.
However, when the data itself is not normally distributed, we usually need relative large samples to approximate the mean.
That theory allows us to construct a confidence interval around the mean. For example, we can say that we are 95% confident that the mean is x +/- delta. For this example, "delta" would be:
=TINV(1-95%,COUNT(B2:B261)-1) * STDEV(B2:B261) / SQRT(COUNT(B2:B261))
where the actual weekly sales data is in B2:B261, some of which might be empty (space for future actual sales data).
Of course, the mean (x) is simply =AVERAGE(B2:B261).
Nitpick: We are treating the past actual data as a "random sample" of all data, including future data. Of course, the historical data might not be "random". This is especially true when the historical data is start-up data; that is, the first weeks of sales. Or when sales are "seasonal" (driven by external cyclical factors), and the historical data covers only one "season".
IMHO, this is not worth pursuing further. I simply mention it in the interest of "full disclosure".
Bookmarks