Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Everyone
I need some assistance with forecasting how many appliances that will need to be purchased for the next 6 months.
I need to get an average count of on for the last 18 months for all 6 months in the future and then split it by dimension(Tier)
Thank you,
What is the logic?
To get forecast data for 6 months you can do this?
if(Year<> Max(TOTAL Year),sum(Sales),
linest_m(total aggr(if(sum(Sales),sum(Sales)),Year),Year)*Year
+linest_b(total aggr(if(sum(Sales),sum(Sales)),Year),Year))
And to get last 18 months you can do something like below
Sum({<MonthField = {">=$(=AddMonths(Max(MonthField), -18)) <=$(=Max(MonthField))"}>} Sales)
I will need populate the foretasted count in each month where there is 0 results, the foretasted figure consists of the sales amount by tier times the budgeted percentage*Please Note the budget is not split by tier*
I think you mistakenly marked my response as a correct answer, please unmark as correct as it is not actually the answer of your question
would you be able to share the sample application?
Hi there, I still get the same result using both formulas, could it be because we have not broken up the budget by tier?
what expression you are using?