Skip to main content

Forecast Financial Data Using MS Excel 2016

With the New release of Excel 2016  Microsoft has provided handy way to do the forecasting using the user data. Within few clicks you will be able to do the forecasting without knowing the thorough knowledge about the Data Mining or Predictive Analytics. Just to have some domain knowledge about the data you are going to play around will be enough.

From this blog post I will be showing a sample data forecast analysis I've done using MS Excel 2016 Forecast Feature.

1. Created a Test Data Set for do the prediction. I used vTimeSeries  view in AdventureWorksDW2014 sample database. (This view returns the Time Series data Sales data which change over the time. This can be useful to do the Financial forecast on sales data)


2. In this view return the sales amount correspond to the reporting date. I've made a small change to the query in-order to improve the readability. I sort the data-set using reporting date.


3. Open Microsoft Excel 2016 and Create a New work sheet and go to the Data Tab.



4. Copy the Sales Amount data along with Reporting date in to the work sheet.(You can either copy or export to the Excel). Once you prepared the data-set in the Excel workbook the data would looks like here. 


5. Select the data-set and go to Forecast and select Forecast sheet button as below.


6. Once you clicked the Forecast button it will open a Forecast Worksheet wizard like below. You can select the cart type (either Line chart or Bar chat) and do the configuration using the option tab as you want.


In the line chat you would noticed there are two regions called Lower Confidence Bound, Upper Confidence Bound. This means under the confidence interval you have been given the chat will show the maximum and minimum sales amounts will be for particular dates.  

7. This is the bar chat for the given data-set. The confidence levels also have been shown using gray bars here.

 8. In the Option tab you can configure the way you want to do the prediction. It allows to give Forecast start, Confidence Interval, Seasonality , how to fill missing values ...etc.

9. Once you click OK button it will create a worksheet with the forecast Sales values and the chart.



You would you noticed , the forecast End default set by October of 2014(One year ahead). This because financial data analysis done usually for few quarters or short term ahead. Because, there may be many variables that could impact to change the business. So, as a best practice normally do not do the predictions for long period. But of course you can change the configurations if you want. 


Comments

  1. Replies
    1. Thanks a lot Dinesh, just saw ur comment :-)

      Delete
  2. It is really a great work and the way in which you are sharing the knowledge is excellent.
    MS Power BI Online Training

    ReplyDelete
  3. Thanks for the great article this is very useful info thanks for the wonderful post.

    ReplyDelete

  4. You have discussed an interesting topic that everybody should know. Very well explained with examples. I have found a similar website
    data analytics consulting
    visit the site to know more about Omdata.

    ReplyDelete

  5. Data Analytics course is a prologue to Data Science and Statistics utilizing the R programming content with Python. It covers both the Statistical considerations and the practical execution utilizing R and Python. This program will teach you how to organize Microsoft Windows-based PC's; the illustrative code will continue running on MacOS graphical operating system or Linux open source software operating system.
    For More Info: Data Analytics Course in Gurgaon

    ReplyDelete

Post a Comment

Popular posts from this blog

Run T-SQL Script Files Using Command Line

Most of the time when we need to execute a SQL script or statement, then we go for SQL Server Management Studio to execute our T-SQL scripts. But the same result we can achieve using Command Prompt. This is very simple way to do that just a matter of write a command and pass few arguments. You can see the process status like as in when you execute a query in Management studio. Use-case : There may be having some situations you won't be able to execute T-SQL script using Management Studio. Most of the time when doing data population. In my case, I had a situation I needed to populate a Database without using backup/restore. Once I generated script with all the schemas and related data it took around 400+Mb sql file.  SQL Server Management Studio will not allow you to run the script unless you execute the query in high-end box. Because, when the file loaded to the memory it will too hard to cater our requirement. You may probably get  memory ...

How to Create a Date Table in Few Steps Using Power BI

Calendar Dimension or Calendar Table is one of the crucial table in a Power BI model. I never have seen any data warehouse data model which does not have a Calendar table so far in my development. Because, when it comes to data warehousing or dimension modeling you may storing various business processes or events as Facts. So those events anyway occur in particular date or time. So simply there wouldn’t be a Power BI data model without a date table. In this post, I’m going to share with you how to create a date table within few steps. Actually, there are two DAX measures which we can use to create a date table. Calendar(DAX) and CalendarAuto(Auto). Calendar(DAX) = You can pass start date and End date as parameters you need to create date table. CalendarAuto(DAX) = You can use this function without passing any parameter. Then it will generate the dates based on your data model dates.  You can simply copy the below DAX code and paste in your Power BI Desktop DAX e...