Microsoft Dynamics NAV

Size: px
Start display at page:

Download "Microsoft Dynamics NAV"

Transcription

1 Workshop Power BI for Microsoft Dynamics NAV Julian Wissel Hans Fousert Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 1

2 Exercise 01 Customer Item Statistics What you will do? In this exercise you will create a customer item sales analyses for Power BI to get familiar with some of the basics of Power BI for Microsoft Dynamics NAV The end result may look like this: What you will use? To complete this exercise you will work with the following: - Query object in Microsoft Dynamics NAV o To create the data set required for the analysis - Web service in Microsoft Dynamics NAV o To publish the pages and the query for the analysis as a web service - Power Query in Excel 2013 o To retrieve the data from the Odata webservice o To optimize the data for the analyse o To load the data into Power Pivot - Power Pivot in Excel 2013 o To create a dataset to be used in the analyses - Pivot table in Excel 2013 o To create a visualization like the one above or other ones This exercise requires that you are familiar with Object Designer in Microsoft Dynamics NAV 2015, working in Microsoft Dynamics NAV 2015 client in general, and working in Excel 2013 in general. Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 2

3 Step 1 - Preparing the web services in Microsoft Dynamics NAV You will use the data from 4 different tables: - Customer master data You will use the Customer Card or List (Page 21 or 22); - Item master data You will use the Item Card or List (Page 30 or 31); - Sales data You will combine data from the Value entry + Item ledger Entry tables in a Query to retrieve the data of sales invoices and sales credit memos Exercise Creating the Query object - Use the Object Designer to create a new Query Object - Use the Tables and Fields from the screen shot below. Feel free to change the Name property so that it describes the purpose of the column in the Sales Analyses. - DataItem Value Entry Filter on Document type: Sales Invoice Sales Credit Memo - DataItem Item Ledger Entry DataItemLink Entry No = Value Entry.Item Ledger Entry Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 3

4 Exercise Creating the Web services - Use Dynamics NAV to insert 3 web services for the following objects o Page 21 or 22 Customer Card or List Customer master data o Page 30 or 31 Item Card or List Item master data o The Query object from the previous step Customer Item Sales Feel free to change the Service Name column so that it describes the purpose of the data. Step 2 - Use Power Query to connect to the OData web services You will need the 3 Odata URLs from the previous step, so we recommend keep that page open. Thus you can copy and paste the URLs easily. Exercise Connect to OData web services - Start Excel to create a new workbook. - Select the Power Query ribbon and use Get External Data to connect to an OData Feed. - Connect to the all 3 OData URLs from your NAV web services. The first time you use this OData URL you may need to define the access credentials. Please use your Windows account. Exercise 2.2 Select the columns required for the statistics - Make sure you have the Power Query window open. In case you haven t: select Launch Editor in the Power Query ribbon. - Select each query to define which columns you want: o Customers No., Name o Items No., Description The easiest way to do this, is to select these columns and apply Remove Other Columns. - In the Power Query window select Close and Load To in the upper left corner for each of the 3 queries. Activate Only Create Connection and Add this data to the Data Model Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 4

5 Step 3 - Use Power Pivot to define a Data model Exercise Using Power Pivot - Close the Power Query window if you ve still got this open - In Excel select the Power Pivot ribbon to activate Management. - In the Power Pivot window, you will find the 3 Power Query connections there as separate sheets. - Select the Home ribbon -> Diagram View - Use your mouse to drag a connection between o Customer Item Sales, Item No and Item, No. o Customer Item Sales, Customer No and Customer, No. Step 4 Create a Pivot Table for your Customer item statistics Exercise 4.1 Defining the presentation in Excel - Pivot tables and charts can be created from the Power Pivot window. Select the Home Ribbon, Pivot Table to create an Excel pivot table. - You will be back in Excel and work with a Pivot Table like you d normally do. - Use the columns from Customer, Item and Sales to define the setup of Rows, Columns and Values in your Pivot table. - Don t forget to add Slicers so that you can filter the data in your sales analysis. Finished! You re finished now with this exercise. Save your Excel workbook please and continue with the next exercise. Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 5

6 Exercise 02 - Applying Parameters in Power Query What you will do? You will use the analysis from the previous exercise. You will replace the OData URL in the Power Query queries with parameters for the OData path and the NAV company. Additionally you will define parameters for a date filter to retrieve the sales of a specific period. What you will use? To complete this exercise you will work with the following: - The Excel workbook from the previous exercise - A Excel table in a worksheet o To enter the required parameter values - Power Query in Excel 2013 o To define a function to retrieve the parameter values o To modify the OData connection in the 3 queries o To modify the Sales query to apply the date filter Step 1 - Use Customer Item Statistics workbook Exercise Make a copy - Save this workbook with a different name. Thus you have a backup of the previous exercise. Step 2 - Defining the Parameters and their values Exercise 2.1 An Excel table with the parameters - Enter the following parameters in Excel preferably a new worksheet. Please check the values of your OData path, the company name you are using in NAV and of course the period: Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 6

7 - Select all the cells you just entered. Next, select the Excel ribbon to Insert Table. - Change the Table Name of your table so that it is a more logical name: Step 3 - Adjust the queries in Power Query Exercise Create a Power Query function - Use the Power Query ribbon to select From Other sources, Blank Query - The Power Query window will open. Select Advanced Editor in the Home ribbon - Enter the following code (or copy and paste it from the PDF file we provided). BEWARE: o the code is case sensitive; o Use the correct Excel Table Name and Column names. Our codes refers to the names used in the picture above. (ParameterName as text) => let ParamSource = Excel.CurrentWorkbook(){[Name="Parameters"]}[Content], ParamRow = Table.SelectRows(ParamSource, each ([Parameter] = ParameterName)), Value = if Table.IsEmpty(ParamRow) = true then null else Record.Field(ParamRow{0},"Value") in Value - Once you re done with the code, enter a logical name for the function in the Query Settings. E.g. Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 7

8 Exercise Modify the OData connection in 3 queries - Select the Customers query and open the Advanced editor - The query has a row starting with Source=. There you will recognize the OData URL. - Replace the first 2 lines of the query with the following code: let Odata_Basepath = fngetparameter ("Odata Basepath"), Company = fngetparameter ("Company"), Source = OData.Feed(Odata_Basepath & "/Company('" & Company & "')/Customers", - Repeat this for the Items and the Sales Invoiced queries. Be aware of the last part of the Source-statement though! Exercise Add a date filter to the Sales query - Select the Customers query and open the Advanced editor - Add 2 functions before the Source-statement to read the values of the Date parameters: FromDate = Date.ToText (DateTime.Date(fnGetParameter ("From date")), "yyyy-mm-dd"), ToDate = Date.ToText (DateTime.Date(fnGetParameter ("To date")), "yyyy-mm-dd"), - Add a filter to the Source-statement: Source = OData.Feed( /Sales Invoiced?$filter=Invoiced_At ge datetime'"&fromdate&"' and Invoiced_At le datetime'"&todate&"'") - Close the Power Query window. Exercise Testing the queries - Select the Data ribbon in Excel to refresh all data. Do you get the correct sales data? - Change the date filter values and refresh the data again to see this working. Additional exercise Parameters for the web services - The web service names are still hard coded. Do you think you could replace these with parameters like the OData path and Company name? Finished! You re finished now with this exercise. Save your Excel workbook please and continue with the next exercise. Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 8

9 Exercise 03 - Many to many relationship in Power BI What you will do? In this exercise you will create a Power BI report based on the item sales report of the previous example. You will see the different development environments of Power BI Desktop and Excel. The data model includes one challenge: a many-to-many-relationship between the customer/contact table and the contact industry group. You will create power bi visualizations and publish the report to PowerBI.com. The result will look like the following: What will you use? To complete this exercise, you will work with the following: - Query objects in Microsoft Dynamics NAV o Create new queries and re-use the existing query from previous exercise - Web Services in Microsoft Dynamics NAV o To add new endpoints plus re-use endpoints from previous exercise - Define Queries in Power BI Desktop o To retrieve the data from the OData web services o To optimize the data for the analysis o To load the data into the data model Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 9

10 - Define Data model in Power BI Desktop o To create relationships, measures and data categories - Create visualizations in Power BI Desktop - Use o To upload and to interact with the report on the Internet and apps Step 1 - Creating the NAV objects Hint: You may import the object-files CRMSalesQueries.fob or CRMSalesQueries.txt that we provided if you directly want to focus on the Power BI part. If so, go to step 2 after importing (and compiling) the objects. Exercise Creating the NAV Query object Contact Industry Groups - Create a new Query object in Dynamics NAV that joins the contact no. from the contact table with the contact industry group table. This table will be used to link contacts to industry groups. - Use the DataItemLinkType Exclude Row If No Match since we are only interested in contacts that are assigned to any industry group - Compile and save the query. Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 10

11 Exercise Creating the NAV Query object Customers CRM - Create a second Query object in Dynamics NAV in order to extend the contact information (contact no.) to the customer table. Alternatively the customer page could be extended by using some C/AL, using a query objects however does not require any C/AL which is why we recommend it - Add the following fields from the customer table o No (Customer_No) o Name (Customer_Name) o Address (Customer_Address) o City (Customer_City) o Salesperson Code (Salesperson_Code) o Post Code (Customer_Post_Code) o Country/Region Code (Customer_Country_Code) - Add the Contact Business Relation table to retrieve the contact no. of a customer - Add the Contact Table o No. (Contact_No) - Data item Contact Business Relation should have the following link: Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 11

12 - Data item Contact should have the following link: - Compile and save the query. If anything did not work here, please use the Dynamics NAV objects that we provided. Step 2 - Publishing the NAV queries as OData web services Exercise Use Dynamics NAV Client to create web services - Publish web services for the following Page and Query objects o the 2 Query objects that you created in the previous step 1; o Page 31 (Item List) o Query (as created in Exercise 1 or found in CRMSalesQueries.fob) - Make sure that the objects were published with the following names: Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 12

13 Exercise Set up Services Default Company - If your database has multiple companies, make sure that a Services Default Company is set in the Dynamics NAV Server configuration (Restart the service if a change was necessary): - Also make sure that OData Services are enable (OData-tab) Step 3 - Power BI Desktop Reading the OData Web Services Exercise Get the data from the 4 OData Web Services - Start Power BI Desktop - Open from the Ribbon (Home-Tab) Get Data Odata Feed - Enter the base URL of your OData feeds (e.g. You can copy this from the web services. just make sure to remove the part after OData/ - Select authentication method (Basic for powerbi.com), populate user name and password or use Windows Authentication - Select those web service endpoints that you published in the previous step: Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 13

14 Exercise Transform the data: improve readability of data model - Click Edit in the import-wizard or Edit Queries on the Home tab - Remove unnecessary fields on item table o Select item table - mark the first two columns (No, Description) and right click Remove other columns o Change the names of the column No to Item No and Description to Item Description - Change the query names to obtain more user-friendly names o Right click on Query properties o E.g. change ContactIndustryGroup to Contact Industry Group o Change CustomersCRM to Customers etc. - Bonus exercise: remove underscores of all field names of the customer table to improve readability of the data model; you may use our function as explained here to automatically replace all underscores Exercise Transform the data: change data types - Change the data types of all numeric columns and dates of the customer item sales table: o On the Customer Item Sales table select the columns Invoiced quantity, Sales Amount, Cost Amount Direct and Discount Amount o Click Detect Data Type on the Transform tab Exercise Transform the data: replace blank country codes for geographical reporting - On The Customer table right click the customer country code - Replace values. Leave the field Value to find empty (to find empty country codes) and enter the value of the local ISO country code for Replace With. - Bonus exercise: Replace this value based on another query that retrieves the local country code from a separate Odata-feed (Page Company information) or as an additional field of the customer table. - The simple (hard coded) solution would look like this for Germany: Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 14

15 Exercise Transform the data: create an unambiguous city column for Bing maps - On the Customers table, rename the Customer City column to Customer City Raw (Right Click Rename or just double-click the column header) - Select the Customer City Raw and the Customer Country Code fields (hold CTRL-Key while clicking) and click on Merge Columns in the Add Column tab (not on the Transform tab) - Choose a name for the new column and a separator (e.g. Custom, ). This field will be used to help Bing maps to find the right location. - Close the Edit queries window. Use File, Save as to save your work. Step 4 - Power BI Desktop Create the data model Exercise Create relationships - In the manage relationship view, make sure that the following relationships are set up (Power BI will try to create relationships automatically based on column names and actual data): Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 15

16 - Check in the advanced options of all relationships (except Item No relationship) that Cross Filter direction is set to Both. This is necessary to handle many-to-many relationships (in our example customers to industry groups): Exercise Hide internal/technical fields and change data category - In the report view on the customer table hide the column customer city raw (Right click Hide in Report View) - Navigate to the data tab - table customer, click the column Customer City and change the data category (tab Modeling) to City: - Change the data category of Customer Country to Country/Region Step 5 - Power BI Desktop - Create the visualizations - Add a bar chart, a treemap, a map and a table to your report page Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 16

17 The bar chart: The map: Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 17

18 The tree map: The table: - The result in a German Cronus database looks like: - Save you work to continue working on in the next exercise. Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 18

19 BONUS Exercise - Bring the report to the Cloud What you will do? The results of Exercise 3 (creating a many to many analysis in Power BI Desktop) will be published on To be able to do this you need an account for this website. We recommend to skip this exercise if you don t have any to save you time during this workshop. Exercise - Open your file in Power BI Desktop - Publish the result to - In select your charts and select which one(s) to pin to a dashboard: - Use Q&A functionality in dashboard. For example type Show sales by city as map. Add the result to your dashboard. Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 19

20 Exercise 04 - Cross-company reporting What you will do? In this exercise you will extend the previous exercise to enable cross-company reporting. You will use Power Query functions provided by us that allow returning any table across all companies. The solution assumes that the master data (customers, items) are harmonized across companies. What will you use? To complete this exercise, you will work with the following: - Dynamics NAV o To add another company - Continue with the result of the previous exercise o alternatively please use our file CRM Sales.pbix and import the file CRMSalesQueries.FOB in Dynamics NAV. - Power BI o To create functions for cross-company calls o To use these functions for the single-company fact table Prerequisites If you skipped Exercise 3, please read this! Make sure that a Services Default Company is set in the Dynamics NAV Server configuration (Restart the service if a change was necessary): Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 20

21 Step 1 - Create a second company in Dynamics NAV - In Dynamics NAV Windows Client open the Companies page (Departments/Administration/IT Administration/General/Companies) and use the Copy-Action to create a second company (choose any name). - If you are using our FOB (and PBIX-File), please make sure that the following web services are published: Step 2 - Power BI Desktop Open the PBIX-File from the last exercise (CRM Sales) or use the file CRM Sales.pbix that we provided (if you use the file that we provided, you must import our FOB as well and use our objects as web services). Exercise Create a function to retrieve records from any table from any company - Open the Edit Queries Window - Click New Source Blank Query - Go to the advanced editor (Home Advanced Editor) - Replace the existing source code with (copy & paste from our PDF-file): Let RecordsPerCompanyFct = (CompanyName,TableName) => let Source = OData.Feed("YourODataBasePath"), SelectCompany = Source{[Name="Company",Signature="table"]}[Data], FilteredRows = Table.SelectRows(SelectCompany, each ([Name] = CompanyName)), UnpivotedOtherColumns = Table.UnpivotOtherColumns(FilteredRows, {"Name"}, "Attribute", "Value"), TargetTable = UnpivotedOtherColumns{[Name=CompanyName,Attribute=TableName]}[Value], TargetTableWithCompanyName = Table.AddColumn(TargetTable,"Company Name",each CompanyName) in TargetTableWithCompanyName in RecordsPerCompanyFct Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 21

22 - Replace the YourODataBasePath-placeholder with your OData-Base Path (e.g. - Finish the Advanced Editor with Done - Change the name of the new function (Query Settings) to RecordsPerCompany Exercise Create a function to add Company Name as a column to the tables - Open the Edit Queries Window - Click New Source Blank Query - Go to the Advanced Editor (Home Advanced Editor) - Replace the existing source code with (copy & paste from our PDF-file): let QueryForAllCompanies = (TableName) => let Source = OData.Feed("YourODataBasePath"), Company_table = Source{[Name="Company",Signature="table"]}[Data], Combined = Table.Combine(List.Transform(Table.Column(Company_table,"Name"),each RecordsPerCompany(_,TableName))) in Combined in QueryForAllCompanies - Replace the YourODataBasePath-placeholder with the Base Path (e.g. SERVER:7718/DynamicsNAV80/OData/) - Finish the Advanced Editor with Done - Change the name of the new function (Query Settings) to RecordsForAllCompanies - You may read about the inner workings of both functions at Exercise Use RecordsForAllCompanies as the source of the Customer Item Sales table - Navigate to the Advanced Editor of the Customer Item Sales Query - Replace the first two lines with this single line (the name depends on the web service name of the Customer Item Sales Query) Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 22

23 Old: New: Bonus Exercise Define one single query that contains the OData-base path and reference that query instead of hard-coding the base query into each function. Step 3 Company name in Visualizations Add the field Company Name of table Customer Item Sales as a slicer or treemap. Provided by navida informationssysteme, Germany and Mprise, The Netherlands P a g e 23

Together we can build something great

Together we can build something great Together we can build something great Financial Reports, Ad Hoc Reporting and BI Tools Joanna Broszeit and Dawn Stenbol Education Track Boston Room Monday, May 2nd 2:40 pm Reporting Options with NAV ERP

More information

DataPA OpenAnalytics End User Training

DataPA OpenAnalytics End User Training DataPA OpenAnalytics End User Training DataPA End User Training Lesson 1 Course Overview DataPA Chapter 1 Course Overview Introduction This course covers the skills required to use DataPA OpenAnalytics

More information

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com Sage 500 ERP Intelligence Reporting Getting Started Guide 27.11.2012 Table of Contents 1.0 Getting started 3 2.0 Managing your reports 10 3.0 Defining report properties 18 4.0 Creating a simple PivotTable

More information

Excel Dashboard. Scott Witteveen support@manersolutions.com (517) 323 7500

Excel Dashboard. Scott Witteveen support@manersolutions.com (517) 323 7500 Excel Dashboard with Dynamics GP Excel Reports Scott Witteveen support@manersolutions.com (517) 323 7500 Creating an Excel Dashboard with Dynamics GP Excel Reports Step 1 Set up a new workbook Open Excel,

More information

Advanced Excel Charts : Tables : Pivots : Macros

Advanced Excel Charts : Tables : Pivots : Macros Advanced Excel Charts : Tables : Pivots : Macros Charts In Excel, charts are a great way to visualize your data. However, it is always good to remember some charts are not meant to display particular types

More information

MicroStrategy Desktop

MicroStrategy Desktop MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop is designed to enable business professionals like you to explore data, simply and without needing direct support from IT. 1 Import data from

More information

Visualization with Excel Tools and Microsoft Azure

Visualization with Excel Tools and Microsoft Azure Visualization with Excel Tools and Microsoft Azure Introduction Power Query and Power Map are add-ins that are available as free downloads from Microsoft to enhance the data access and data visualization

More information

Excel for Data Cleaning and Management

Excel for Data Cleaning and Management Excel for Data Cleaning and Management Background Information This workshop is designed to teach skills in Excel that will help you manage data from large imports and save them for further use in SPSS

More information

SQL SERVER SELF-SERVICE BI WITH MICROSOFT EXCEL

SQL SERVER SELF-SERVICE BI WITH MICROSOFT EXCEL SQL SERVER SELF-SERVICE BI WITH MICROSOFT EXCEL JULY 2, 2015 SLIDE 1 Data Sources OVERVIEW OF AN ENTERPRISE BI SOLUTION Reporting and Analysis Data Cleansi ng Data Models JULY 2, 2015 SLIDE 2 Master Data

More information

Create an Excel BI report and share on SharePoint 2013

Create an Excel BI report and share on SharePoint 2013 2013 Create an Excel BI report and share on SharePoint 2013 Hands-On Lab Lab Manual This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web

More information

CHAPTER 6: ANALYZE MICROSOFT DYNAMICS NAV 5.0 DATA IN MICROSOFT EXCEL

CHAPTER 6: ANALYZE MICROSOFT DYNAMICS NAV 5.0 DATA IN MICROSOFT EXCEL Chapter 6: Analyze Microsoft Dynamics NAV 5.0 Data in Microsoft Excel CHAPTER 6: ANALYZE MICROSOFT DYNAMICS NAV 5.0 DATA IN MICROSOFT EXCEL Objectives The objectives are: Explain the process of exporting

More information

Pastel Evolution BIC. Getting Started Guide

Pastel Evolution BIC. Getting Started Guide Pastel Evolution BIC Getting Started Guide Table of Contents System Requirements... 4 How it Works... 5 Getting Started Guide... 6 Standard Reports Available... 6 Accessing the Pastel Evolution (BIC) Reports...

More information

Building Dynamics CRM 2015 Dashboards with Power BI

Building Dynamics CRM 2015 Dashboards with Power BI Fr Building Dynamics CRM 2015 Dashboards with Power BI is a hands-on guide to building and configuring powerful Dynamics CRM dashboards. This book will provide you with the skills you need to learn how

More information

Monthly Payroll to Finance Reconciliation Report: Access and Instructions

Monthly Payroll to Finance Reconciliation Report: Access and Instructions Monthly Payroll to Finance Reconciliation Report: Access and Instructions VCU Reporting Center... 2 Log in... 2 Open Folder... 3 Other Useful Information: Copying Sheets... 5 Creating Subtotals... 5 Outlining

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Introduction... 3 What is Pastel Partner (BIC)?... 3 System Requirements... 4 Getting Started Guide... 6 Standard Reports Available... 6 Accessing the Pastel Partner (BIC) Reports...

More information

Discoverer Training Guide

Discoverer Training Guide Discoverer Training Guide Learning objectives Understand what Discoverer is Login and Log out procedures Run a report Select parameters for reports Change report formats Export a report and choose different

More information

Getting Started Guide SAGE ACCPAC INTELLIGENCE

Getting Started Guide SAGE ACCPAC INTELLIGENCE Getting Started Guide SAGE ACCPAC INTELLIGENCE Table of Contents Introduction... 1 What is Sage Accpac Intelligence?... 1 What are the benefits of using Sage Accpac Intelligence?... 1 System Requirements...

More information

Microsoft Excel 2013 Step-by-Step Exercises: PivotTables and PivotCharts: Exercise 1

Microsoft Excel 2013 Step-by-Step Exercises: PivotTables and PivotCharts: Exercise 1 Microsoft Excel 2013 Step-by-Step Exercises: PivotTables and PivotCharts: Exercise 1 In this exercise you will learn how to: Create a new PivotTable Add fields to a PivotTable Format and rename PivotTable

More information

Business Objects 4.1 Quick User Guide

Business Objects 4.1 Quick User Guide Business Objects 4.1 Quick User Guide Log into SCEIS Business Objects (BOBJ) 1. https://sceisreporting.sc.gov 2. Choose Windows AD for Authentication. 3. Enter your SCEIS User Name and Password: Home Screen

More information

How To Create A Report In Excel

How To Create A Report In Excel Table of Contents Overview... 1 Smartlists with Export Solutions... 2 Smartlist Builder/Excel Reporter... 3 Analysis Cubes... 4 MS Query... 7 SQL Reporting Services... 10 MS Dynamics GP Report Templates...

More information

Web Intelligence User Guide

Web Intelligence User Guide Web Intelligence User Guide Office of Financial Management - Enterprise Reporting Services 4/11/2011 Table of Contents Chapter 1 - Overview... 1 Purpose... 1 Chapter 2 Logon Procedure... 3 Web Intelligence

More information

Using Excel as a Management Reporting Tool with your Minotaur Data. Exercise 1 Customer Item Profitability Reporting Tool for Management

Using Excel as a Management Reporting Tool with your Minotaur Data. Exercise 1 Customer Item Profitability Reporting Tool for Management Using Excel as a Management Reporting Tool with your Minotaur Data with Judith Kirkness These instruction sheets will help you learn: 1. How to export reports from Minotaur to Excel (these instructions

More information

SAP BUSINESS OBJECT ANALYSIS FOR EXCEL DEVELOPER GUIDE

SAP BUSINESS OBJECT ANALYSIS FOR EXCEL DEVELOPER GUIDE STEP 1: Log on to Business Object Analysis for Excel. Path: Start All Programs SAP Business Intelligence Analysis for Microsoft Excel Click Microsoft Excel will appear Figure 1 STEP 2: Choose Microsoft

More information

BAT Smart View for Budget Users. Miami-Dade County. BAT Smart View Training Activity Guide

BAT Smart View for Budget Users. Miami-Dade County. BAT Smart View Training Activity Guide Miami-Dade County BAT Smart View Training Activity Guide 1 Table of Contents Activity 1: Launch Microsoft Excel, Check User Options and Use the Connection Panel.... 3 Activity 2: Opening BAT Web Forms

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Integration of Oracle BI Publisher with Oracle Business Intelligence Enterprise Edition Purpose This tutorial mainly covers how Oracle BI Publisher is integrated with

More information

Release Document Version: 1.4-2013-05-30. User Guide: SAP BusinessObjects Analysis, edition for Microsoft Office

Release Document Version: 1.4-2013-05-30. User Guide: SAP BusinessObjects Analysis, edition for Microsoft Office Release Document Version: 1.4-2013-05-30 User Guide: SAP BusinessObjects Analysis, edition for Microsoft Office Table of Contents 1 About this guide....6 1.1 Who should read this guide?....6 1.2 User profiles....6

More information

Module A2 Item Activities, Gantt Chart and Utilization Sheet. A2.1 Project item activities A2.2 Gantt chart A2.3 Utilization sheet

Module A2 Item Activities, Gantt Chart and Utilization Sheet. A2.1 Project item activities A2.2 Gantt chart A2.3 Utilization sheet Module A2 Item Activities, Gantt Chart and Utilization Sheet A2.1 Project item activities A2.2 Gantt chart A2.3 Utilization sheet 1 Assistance PSA: Advanced Functionalities Welcome to the Advanced Functionalities

More information

Microsoft Office Access 2007 which I refer to as Access throughout this book

Microsoft Office Access 2007 which I refer to as Access throughout this book Chapter 1 Getting Started with Access In This Chapter What is a database? Opening Access Checking out the Access interface Exploring Office Online Finding help on Access topics Microsoft Office Access

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

BID2WIN Workshop. Advanced Report Writing

BID2WIN Workshop. Advanced Report Writing BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/

More information

Creating Dashboards for Microsoft Project Server 2010

Creating Dashboards for Microsoft Project Server 2010 Creating Dashboards for Microsoft Project Server 2010 Authors: Blaise Novakovic, Jean-Francois LeSaux, Steven Haden, Microsoft Consulting Services Information in the document, including URL and other Internet

More information

Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP

Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Consolidate Data in Multiple Worksheets Example data is saved under Consolidation.xlsx workbook under ProductA through ProductD

More information

Welcome to the topic on Master Data and Documents.

Welcome to the topic on Master Data and Documents. Welcome to the topic on Master Data and Documents. In this topic, we will look at master data in SAP Business One. After this session you will be able to view a customer record to explain the concept of

More information

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide Decision Support AITS University Administration Web Intelligence Rich Client 4.1 User Guide 2 P age Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence

More information

Sample- for evaluation purposes only! Advanced Excel. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc.

Sample- for evaluation purposes only! Advanced Excel. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2012 Advanced Excel TeachUcomp, Inc. it s all about you Copyright: Copyright 2012 by TeachUcomp, Inc. All rights reserved. This publication,

More information

Administrator s Guide

Administrator s Guide SEO Toolkit 1.3.0 for Sitecore CMS 6.5 Administrator s Guide Rev: 2011-06-07 SEO Toolkit 1.3.0 for Sitecore CMS 6.5 Administrator s Guide How to use the Search Engine Optimization Toolkit to optimize your

More information

MICROSOFT EXCEL 2010 ANALYZE DATA

MICROSOFT EXCEL 2010 ANALYZE DATA MICROSOFT EXCEL 2010 ANALYZE DATA Microsoft Excel 2010 Essential Analyze data Last Edited: 2012-07-09 1 Basic analyze data... 4 Use diagram to audit formulas... 4 Use Error Checking feature... 4 Use Evaluate

More information

New Orleans 2007 Workshop Tips For Using Microsoft Excel to Analyze EMSC Data and Generate Reports Pivot Tables and Other Goodies

New Orleans 2007 Workshop Tips For Using Microsoft Excel to Analyze EMSC Data and Generate Reports Pivot Tables and Other Goodies 1 of 17 New Orleans 2007 Workshop Tips For Using Microsoft Excel to Analyze EMSC Data and Generate Reports Pivot Tables and Other Goodies Introduction In this document, we will describe several more advanced

More information

Pivot Tables & Pivot Charts

Pivot Tables & Pivot Charts Pivot Tables & Pivot Charts Pivot tables... 2 Creating pivot table using the wizard...2 The pivot table toolbar...5 Analysing data in a pivot table...5 Pivot Charts... 6 Creating a pivot chart using the

More information

Microsoft Office Excel 2013

Microsoft Office Excel 2013 Microsoft Office Excel 2013 PivotTables and PivotCharts University Information Technology Services Training, Outreach & Learning Technologies Copyright 2014 KSU Department of University Information Technology

More information

Excel 2013 What s New. Introduction. Modified Backstage View. Viewing the Backstage. Process Summary Introduction. Modified Backstage View

Excel 2013 What s New. Introduction. Modified Backstage View. Viewing the Backstage. Process Summary Introduction. Modified Backstage View Excel 03 What s New Introduction Microsoft Excel 03 has undergone some slight user interface (UI) enhancements while still keeping a similar look and feel to Microsoft Excel 00. In this self-help document,

More information

Excel 2002. What you will do:

Excel 2002. What you will do: What you will do: Explore the features of Excel 2002 Create a blank workbook and a workbook from a template Format a workbook Apply formulas to a workbook Create a chart Import data to a workbook Share

More information

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700 Information Technology MS Access 2007 Users Guide ACCESS 2007 Importing and Exporting Data Files IT Training & Development (818) 677-1700 training@csun.edu TABLE OF CONTENTS Introduction... 1 Import Excel

More information

Basic Pivot Tables. To begin your pivot table, choose Data, Pivot Table and Pivot Chart Report. 1 of 18

Basic Pivot Tables. To begin your pivot table, choose Data, Pivot Table and Pivot Chart Report. 1 of 18 Basic Pivot Tables Pivot tables summarize data in a quick and easy way. In your job, you could use pivot tables to summarize actual expenses by fund type by object or total amounts. Make sure you do not

More information

Sage Intelligence Report Designer Add-In

Sage Intelligence Report Designer Add-In Sage Intelligence Report Designer Add-In Q: What is Sage Intelligence Reporting? A: Sage Intelligence Reporting helps you to easily control, automate and analyze your data to make better informed decision,

More information

Results CRM 2012 User Manual

Results CRM 2012 User Manual Results CRM 2012 User Manual A Guide to Using Results CRM Standard, Results CRM Plus, & Results CRM Business Suite Table of Contents Installation Instructions... 1 Single User & Evaluation Installation

More information

Reporting Tips and Tricks

Reporting Tips and Tricks Chapter 16 Reporting Tips and Tricks Intuit Statement Writer New for 2009! Company Snapshot New for 2009! Using the Report Center Reporting Preferences Modifying Reports Report Groups Memorized Reports

More information

<Insert Picture Here> Oracle WebCenter Spaces and Oracle BI Applications Configuration

<Insert Picture Here> Oracle WebCenter Spaces and Oracle BI Applications Configuration Oracle WebCenter Spaces and Oracle BI Applications Configuration Christina Kolotouros Enterprise 2.0 Product Management May 4, 2011 Versions & Pre-requisites Oracle WebCenter Version

More information

Business Objects Enterprise version 4.1. Report Viewing

Business Objects Enterprise version 4.1. Report Viewing Business Objects Enterprise version 4.1 Note about Java: With earlier versions, the Java run-time was not needed for report viewing; but was needed for report writing. The default behavior in version 4.1

More information

MS Excel Template Building and Mapping for Neat 5

MS Excel Template Building and Mapping for Neat 5 MS Excel Template Building and Mapping for Neat 5 Neat 5 provides the opportunity to export data directly from the Neat 5 program to an Excel template, entering in column information using receipts saved

More information

To reuse a template that you ve recently used, click Recent Templates, click the template that you want, and then click Create.

To reuse a template that you ve recently used, click Recent Templates, click the template that you want, and then click Create. What is Excel? Applies to: Excel 2010 Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze

More information

Build Your First Web-based Report Using the SAS 9.2 Business Intelligence Clients

Build Your First Web-based Report Using the SAS 9.2 Business Intelligence Clients Technical Paper Build Your First Web-based Report Using the SAS 9.2 Business Intelligence Clients A practical introduction to SAS Information Map Studio and SAS Web Report Studio for new and experienced

More information

CREATING EXCEL PIVOT TABLES AND PIVOT CHARTS FOR LIBRARY QUESTIONNAIRE RESULTS

CREATING EXCEL PIVOT TABLES AND PIVOT CHARTS FOR LIBRARY QUESTIONNAIRE RESULTS CREATING EXCEL PIVOT TABLES AND PIVOT CHARTS FOR LIBRARY QUESTIONNAIRE RESULTS An Excel Pivot Table is an interactive table that summarizes large amounts of data. It allows the user to view and manipulate

More information

UF Health SharePoint 2010 Document Libraries

UF Health SharePoint 2010 Document Libraries UF Health SharePoint 2010 Document Libraries Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Last Updated 2/7/2014 SharePoint 2010 Document Libraries 1.5 Hours 1.0 Shared Network

More information

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 Table of Contents Part I Creating a Pivot Table Excel Database......3 What is a Pivot Table...... 3 Creating Pivot Tables

More information

SmartConnect Users Guide

SmartConnect Users Guide eone Integrated Business Solutions SmartConnect Users Guide Copyright: Manual copyright 2003 eone Integrated Business Solutions All rights reserved. Your right to copy this documentation is limited by

More information

Introduction to Microsoft Access 2010

Introduction to Microsoft Access 2010 Introduction to Microsoft Access 2010 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

Microsoft Excel 2010 Pivot Tables

Microsoft Excel 2010 Pivot Tables Microsoft Excel 2010 Pivot Tables Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Pivot Tables 1.5 hours Topics include data groupings, pivot tables, pivot

More information

Importing TSM Data into Microsoft Excel using Microsoft Query

Importing TSM Data into Microsoft Excel using Microsoft Query Importing TSM Data into Microsoft Excel using Microsoft Query An alternate way to report on TSM information is to use Microsoft Excel s import facilities using Microsoft Query to selectively import the

More information

NAIP Consortium Strengthening Statistical Computing for NARS www.iasri.res.in/sscnars SAS Enterprise Business Intelligence

NAIP Consortium Strengthening Statistical Computing for NARS www.iasri.res.in/sscnars SAS Enterprise Business Intelligence NAIP Consortium Strengthening Statistical Computing for NARS www.iasri.res.in/sscnars SAS Enterprise Business Intelligence BY Rajender Parsad, Neeraj Monga, Satyajit Dwivedi, RS Tomar, RK Saini Contents

More information

Microsoft Query, the helper application included with Microsoft Office, allows

Microsoft Query, the helper application included with Microsoft Office, allows 3 RETRIEVING ISERIES DATA WITH MICROSOFT QUERY Microsoft Query, the helper application included with Microsoft Office, allows Office applications such as Word and Excel to read data from ODBC data sources.

More information

TOP New Features of Oracle Business Intelligence 11g

TOP New Features of Oracle Business Intelligence 11g 10 TOP New Features of Oracle Business Intelligence 11g TABLE OF CONTENTS Feature 1 New Chart Choices Funnel Chart 2 Trellis Chart 3 Waterfall 4 Tile Diagram 5 Feature 2 Recommended Visualization 6 Feature

More information

Dashboard Admin Guide

Dashboard Admin Guide MadCap Software Dashboard Admin Guide Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

Quick Start Guide. Microsoft Access 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve.

Quick Start Guide. Microsoft Access 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve. Quick Start Guide Microsoft Access 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve. Change the screen size or close a database Click the Access

More information

What s new in Excel 2013

What s new in Excel 2013 Work Smart by Microsoft IT What s new in Excel 2013 The first thing that you see when you open Microsoft Excel 2013 spreadsheet software is a new look. It s cleaner, but it s also designed to help you

More information

Excel Reporting with 1010data

Excel Reporting with 1010data Excel Reporting with 1010data (212) 405.1010 info@1010data.com Follow: @1010data www.1010data.com Excel Reporting with 1010data Contents 2 Contents Overview... 3 Start with a 1010data query... 5 Running

More information

Create a New Database in Access 2010

Create a New Database in Access 2010 Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...

More information

MODULE 7: FINANCIAL REPORTING AND ANALYSIS

MODULE 7: FINANCIAL REPORTING AND ANALYSIS MODULE 7: FINANCIAL REPORTING AND ANALYSIS Module Overview Businesses running ERP systems capture lots of data through daily activity. This data, which reflects such things as the organization's sales

More information

Introduction to Microsoft Access 2013

Introduction to Microsoft Access 2013 Introduction to Microsoft Access 2013 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

Module A2 Item Activities, Gantt Chart and Utilization Sheet

Module A2 Item Activities, Gantt Chart and Utilization Sheet Module A2 Item Activities, Gantt Chart and Utilization Sheet A2.1 Project item activities A2.2 Gantt chart A2.3 Utilization sheet 1 Module 1. Project item activities, Gantt Chart & Utilization Sheet Contents...

More information

CalPlanning. Smart View Essbase Ad Hoc Analysis

CalPlanning. Smart View Essbase Ad Hoc Analysis 1 CalPlanning CalPlanning Smart View Essbase Ad Hoc Analysis Agenda Overview Introduction to Smart View & Essbase 4 Step Smart View Essbase Ad Hoc Analysis Approach 1. Plot Dimensions 2. Drill into Data

More information

Cal Answers Analysis Training Part III. Advanced OBIEE - Dashboard Reports

Cal Answers Analysis Training Part III. Advanced OBIEE - Dashboard Reports Cal Answers Analysis Training Part III Advanced OBIEE - Dashboard Reports University of California, Berkeley March 2012 Table of Contents Table of Contents... 1 Overview... 2 Remember How to Create a Query?...

More information

Oracle Business Intelligence Publisher: Create Reports and Data Models. Part 1 - Layout Editor

Oracle Business Intelligence Publisher: Create Reports and Data Models. Part 1 - Layout Editor Oracle Business Intelligence Publisher: Create Reports and Data Models Part 1 - Layout Editor Pradeep Kumar Sharma Senior Principal Product Manager, Oracle Business Intelligence Kasturi Shekhar Director,

More information

Search help. More on Office.com: images templates. Here are some basic tasks that you can do in Microsoft Excel 2010.

Search help. More on Office.com: images templates. Here are some basic tasks that you can do in Microsoft Excel 2010. Page 1 of 8 Excel 2010 Home > Excel 2010 Help and How-to > Getting started with Excel Search help More on Office.com: images templates Basic tasks in Excel 2010 Here are some basic tasks that you can do

More information

Excel Pivot Tables. Blue Pecan Computer Training Ltd - Onsite Training Provider www.bluepecantraining.com :: 0800 6124105 :: info@bluepecan.co.

Excel Pivot Tables. Blue Pecan Computer Training Ltd - Onsite Training Provider www.bluepecantraining.com :: 0800 6124105 :: info@bluepecan.co. Excel Pivot Tables 1 Table of Contents Pivot Tables... 3 Preparing Data for a Pivot Table... 3 Creating a Dynamic Range for a Pivot Table... 3 Creating a Pivot Table... 4 Removing a Field... 5 Change the

More information

SuperOffice AS. CRM Online. Introduction to importing contacts

SuperOffice AS. CRM Online. Introduction to importing contacts SuperOffice AS CRM Online Introduction to importing contacts Index Revision history... 2 How to do an import of contacts in CRM Online... 3 Before you start... 3 Prepare the file you wish to import...

More information

Business Portal for Microsoft Dynamics GP 2010. User s Guide Release 5.1

Business Portal for Microsoft Dynamics GP 2010. User s Guide Release 5.1 Business Portal for Microsoft Dynamics GP 2010 User s Guide Release 5.1 Copyright Copyright 2011 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and

More information

Business Management Online

Business Management Online Business Management Online Version: 27102012 http://bmo.my User Guide Version 27102012 page 1 of 93 Table of Contents Summary 1 Business Management Online (BMO)...6 2 Starting BMO Quotation...10 3 Starting

More information

Bullet Proof: A Guide to Tableau Server Security

Bullet Proof: A Guide to Tableau Server Security Bullet Proof: A Guide to Tableau Server Security PDF Guide Tableau Conference 2014 Bryan Naden & Ray Randall Tableau Server Security Hands On To begin the exercise we are going to start off fresh by restoring

More information

1-Step Appraisals Jewelry Appraisal Software

1-Step Appraisals Jewelry Appraisal Software User Guide for 1-Step Appraisals Jewelry Appraisal Software Version 5.02 Page Table of Contents Installing 1-Step Appraisals... Page 3 Getting Started... Page 4 Upgrading from a Previous Version... Page

More information

Create a PivotTable or PivotChart report

Create a PivotTable or PivotChart report Page 1 of 5 Excel Home > PivotTable reports and PivotChart reports > Basics Create or delete a PivotTable or PivotChart report Show All To analyze numerical data in depth and to answer unanticipated questions

More information

What is OneDrive for Business at University of Greenwich? Accessing OneDrive from Office 365

What is OneDrive for Business at University of Greenwich? Accessing OneDrive from Office 365 This guide explains how to access and use the OneDrive for Business cloud based storage system and Microsoft Office Online suite of products via a web browser. What is OneDrive for Business at University

More information

Microsoft Dynamics CRM Adapter for Microsoft Dynamics GP

Microsoft Dynamics CRM Adapter for Microsoft Dynamics GP Microsoft Dynamics Microsoft Dynamics CRM Adapter for Microsoft Dynamics GP May 2010 Find updates to this documentation at the following location. http://go.microsoft.com/fwlink/?linkid=162558&clcid=0x409

More information

SmartBar for MS CRM 2013

SmartBar for MS CRM 2013 SmartBar for MS CRM 2013 Version 2013.26 - April 2014 Installation and User Guide (How to install/uninstall and use SmartBar for MS CRM 2013) The content of this document is subject to change without notice.

More information

How to Use Excel for Law Firm Billing

How to Use Excel for Law Firm Billing How to Use Excel for Law Firm Billing FEATURED FACULTY: Staci Warne, Microsoft Certified Trainer (MCT) (801) 463-1213 computrainhelp@hotmail.com Staci Warne, Microsoft Certified Trainer (MCT) Staci Warne

More information

EzyScript User Manual

EzyScript User Manual Version 1.4 Z Option 417 Oakbend Suite 200 Lewisville, Texas 75067 www.zoption.com (877) 653-7215 (972) 315-8800 fax: (972) 315-8804 EzyScript User Manual SAP Transaction Scripting & Table Querying Tool

More information

A Quick Tour of F9 1

A Quick Tour of F9 1 A Quick Tour of F9 1 Table of Contents I. A Quick Tour of F9... 3 1. Getting Started... 3 2. Quick Trial Balance... 7 3. A More Dynamic Table Report... 10 II. The Fundamental F9 Formula... 14 The GL Formula...

More information

Creating Online Surveys with Qualtrics Survey Tool

Creating Online Surveys with Qualtrics Survey Tool Creating Online Surveys with Qualtrics Survey Tool Copyright 2015, Faculty and Staff Training, West Chester University. A member of the Pennsylvania State System of Higher Education. No portion of this

More information

Word 2010: Mail Merge to Email with Attachments

Word 2010: Mail Merge to Email with Attachments Word 2010: Mail Merge to Email with Attachments Table of Contents TO SEE THE SECTION FOR MACROS, YOU MUST TURN ON THE DEVELOPER TAB:... 2 SET REFERENCE IN VISUAL BASIC:... 2 CREATE THE MACRO TO USE WITHIN

More information

Content Management System Help. basic tutorial on Evergreen s CMS

Content Management System Help. basic tutorial on Evergreen s CMS Content Management System Help cms.evergreen.edu Tips, tricks and basic tutorial on Evergreen s CMS Contents Vocabulary Login Opening a page Editing a page Creating a new page Inserting internal and external

More information

Excel 2010: Create your first spreadsheet

Excel 2010: Create your first spreadsheet Excel 2010: Create your first spreadsheet Goals: After completing this course you will be able to: Create a new spreadsheet. Add, subtract, multiply, and divide in a spreadsheet. Enter and format column

More information

Creating Pivot Tables

Creating Pivot Tables Creating Pivot Tables Example Using CIA Inspection Information This is a step by step guide of how to create pivot tables using Microsoft Excel. You can create a pivot tables from any database you have

More information

Choosing the right Mobile BI tool: SSRS vs Power BI vs Datazen

Choosing the right Mobile BI tool: SSRS vs Power BI vs Datazen Choosing the right Mobile BI tool: SSRS vs Power BI vs Datazen Andrea Martorana Tusa @bruco441 andrea.martoranatusa@gmail.com Sponsors Organizers getlatestversion.it Speaker @bruco441 Analyst/Developer

More information

Sisense. Product Highlights. www.sisense.com

Sisense. Product Highlights. www.sisense.com Sisense Product Highlights Introduction Sisense is a business intelligence solution that simplifies analytics for complex data by offering an end-to-end platform that lets users easily prepare and analyze

More information

CHAPTER 9: ANALYSIS AND REPORTING

CHAPTER 9: ANALYSIS AND REPORTING Chapter 9: Analysis and Reporting CHAPTER 9: ANALYSIS AND REPORTING Objectives Introduction The objectives are: Explain how to set up and use sales and purchase analysis reports. Describe and demonstrate

More information

Excel 2007 - Using Pivot Tables

Excel 2007 - Using Pivot Tables Overview A PivotTable report is an interactive table that allows you to quickly group and summarise information from a data source. You can rearrange (or pivot) the table to display different perspectives

More information

Inventory Web Pro Version 1.06. User Guide 20120728

Inventory Web Pro Version 1.06. User Guide 20120728 Inventory Web Pro Version 1.06 User Guide 20120728 2 P A G E 1. Overview... 3 1.1. General Introduction... 3 1.2. Getting Started with Inventory Web Pro... 3 1.2.1. Sign Up... 4 1.2.2. Subscribe to a Plan...

More information

MODULE 2: SMARTLIST, REPORTS AND INQUIRIES

MODULE 2: SMARTLIST, REPORTS AND INQUIRIES MODULE 2: SMARTLIST, REPORTS AND INQUIRIES Module Overview SmartLists are used to access accounting data. Information, such as customer and vendor records can be accessed from key tables. The SmartList

More information

AIM Dashboard-User Documentation

AIM Dashboard-User Documentation AIM Dashboard-User Documentation Accessing the Academic Insights Management (AIM) Dashboard Getting Started Navigating the AIM Dashboard Advanced Data Analysis Features Exporting Data Tables into Excel

More information