1 / 26

Creating Dashboard with Excel

Creating Dashboard with Excel. ISYS 650. Pivot Table Demo. Creating a query from Northwind data warehouse that shows: OrderYear, Quarter, CategoryID, Sales Then download to Excel and create a pivot table and pivot chart to analyze sales based on OrderYear, Quarter and CategoryID.

josh
Télécharger la présentation

Creating Dashboard with Excel

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Creating Dashboard with Excel ISYS 650

  2. Pivot Table Demo • Creating a query from Northwind data warehouse that shows: • OrderYear, Quarter, CategoryID, Sales • Then download to Excel and create a pivot table and pivot chart to analyze sales based on OrderYear, Quarter and CategoryID.

  3. Pivot Chart Demo • Click the pivot table to show the PivotTable tools, and then click Pivot Chart. • Demo: • Drill down/RollUp • Reaggregation • Row lables’ filter

  4. Monitor Business Performance:products’ yearly sales • The management has an annual sales plan: • A projected sales for each product category • A total annual sales projection • Compare actual sales with planned sales.

  5. From Data warehouse to analytic tool Data Warehouse Local Management Database Analytic Tools

  6. Management Plan Database

  7. Query the data warehouse to get actual sales by year and category

  8. Download actual sales data to the management DB and create query to compare actual sales and projected sales

  9. Download to Excel to Create Pivot Table/Chart

  10. Customized with controls

  11. GetPivotData FunctionTo extract data from an Excel Pivot Table • To enable this function: • Place the pointer inside the pivot table • Click the PivotTable tools button • Click Pivot table option • Select Generate GetPivotData • To generate a GetPivotData function automatically • 1. Enter a “=“ in a cell • 2. Select the pivot table data you want to extract

  12. GetPivotData Example 1

  13. GetPivotData Example 2

  14. Note 1: Allow uer to enter category and year. Note 2: Modify the generated GetPivotData function to reference the cells with entered category and year: =GETPIVOTDATA("Sum of ActualSales",$A$3,"OrderYear",B20,"CategoryID",B19)

  15. Excel’s Activex Controls

  16. Choose Controls • Command button, listbox, textbox, check box, option button, etc. • Developer/Design Mode/Insert • Select and drag controls to worksheet • Right click control to: • Use control’s property window to set property values. • Use View Code to add VBA code.

  17. Example

  18. Spin Button • Properties: • Max: 500000 • Min: 100000 • SmallChange: 10000 • Value • LinkedCell: C9

  19. Option Button • For Option Button to work, a worksheet must have more than one Option Buttons that forms a group. • Use the Properties window to enter the LinkedCell and use it to display True/False for the option button. • Assuming D1 is the LinkedCell for 15-year term option: =IF(D1=TRUE,15,30)

  20. ListBox • Properties: • ListFillRange: Source of listbox’s items • A2:C5 • ColumnCount: Number of columns in ListFillRange • 3 • Linked Cell • C11 • BoundColumn: The column that contains the return value. • 2 for 15-year and 3 for 30-year rates • Need VBA code: Private Sub OptionButton1_Change() If OptionButton2 Then ListBox1.BoundColumn = 3 Else ListBox1.BoundColumn = 2 End If End Sub

  21. Check Box • CheckBox can work individually. • Property: • Linked Cell

  22. Exact Match VLookUp Function . What if P4 is entered in B1? . To do an Exact Match look up: VLookUp(SearchValue, TableRange, TableColumn#, False)

  23. Other Look up Functions • Match: Returns the relative position of an item in an range that matches a specified value in a specified order. • Use MATCH instead of one of the LOOKUP functions when you need the position of an item in a range instead of the item itself. • Index: Returns the reference of the cell at the intersection of a particular row and column.

  24. Example • Sales by products and years:

  25. Recording/Editing Macro • Recording macro: • Developer/Code/Record macro • Stop recording: • Developer/Code/Stop recording • View the macro: • Developer/Code/Macros

  26. Learning VBA with Macro • Spreadsheet operations: • Copy/Paste/Fill/Clear/Delete • Format cells • Adding a worksheet • Insert/Delete rows, cols • Window scroll • Command Bar commands

More Related