Adv. Reports & Dashboard

Slides:



Advertisements
Similar presentations
DATA WAREHOUSE QueryLink TUTORIAL QueryLink is used to retrieve Campus data for Departmental use. This tutorial presents an overview of the point and click.
Advertisements

© Paradigm Publishing, Inc Access 2010 Level 1 Unit 2Creating Forms and Reports Chapter 6Creating Reports and Mailing Labels.
With Microsoft Access 2010© 2011 Pearson Education, Inc. Publishing as Prentice Hall1 PowerPoint Presentation to Accompany GO! with Microsoft ® Access.
Creating Custom Reports. 2 Design and create a custom report You can easily create custom reports based on a table or query. There are seven sections.
XP New Perspectives on Microsoft Access 2002 Tutorial 61 Microsoft Access 2002 Tutorial 6 – Creating Custom Reports.
MyFloridaMarketPlace Analysis 2.0 Functional Overview December 18 - December 19, 2007.
University of Nevada, Reno College of Business Administration What are we going to learn 9/27 – 9/29? 1. Answer questions about MS Access queries. 2. Understand.
With Microsoft Access 2010 © 2011 Pearson Education, Inc. Publishing as Prentice Hall1 PowerPoint Presentation to Accompany GO! with Microsoft ® Access.
6 th Annual Focus Users’ Conference Custom Reports and Dashboards Presented by: Mike Morris.
Self Guided Tour for Query V8.4 Basic Features. 2 This Self Guided Tour is meant as a review only for Query V8.4 Basic Features and not as a substitute.
CS1100: Access Reports A (Very) Short Tutorial on Microsoft Access Report Construction Created By Martin Schedlbauer With contributions from Matthew Ekstrand-Abueg.
European Computer Driving Licence Syllabus version 5.0 Module 4 – Spreadsheets Chapter 22 – Functions Pass ECDL5 for Office 2007 Module 4 Spreadsheets.
Lesson No:9 MS-Word Tools, Mail Merge and working with Tables CHBT-01 Basic Micro process & Computer Operation.
MDS-NX The next generation of MDS... MDS-NX Overview.
Overview of User Set-up & Security. Template Overview  Unique Template & Mapping Technology  Off the shelf/customised Template containing lookups for.
 Agenda 2/20/13 o Review quiz, answer questions o Review database design exercises from 2/13 o Create relationships through “Lookup tables” o Discuss.
Chapter 3 Query and Report. Agenda Report types Report contents Report creation Report design view Query and dynaset Function and grouping Action query.
Course ILT Forms and queries Unit objectives Create forms by using AutoForm and the Form Wizard, and add or modify form headers and footers Open and enter.
1 Chapter 4: Creating Simple Queries 4.1 Introduction to the Query Task 4.2 Selecting Columns and Filtering Rows 4.3 Creating New Columns with an Expression.
Page Designer Storyboard J. A. Fitzpatrick December 2004.
Advanced Adhoc Reporting 2010 Visions Conference July 28, 2010.
25 Copyright © 2009, Oracle. All rights reserved. Showing Results with Pivot Tables.
PowerPoint – Slide Master and Animation Computer Tech.
Module 2: Authoring Basic Reports. Overview Creating a Basic Table Report Formatting Report Pages Calculating Values.
24 Copyright © 2009, Oracle. All rights reserved. Building Views and Charts in Requests.
MyFloridaMarketPlace Analysis 2.0 Functional Overview.
© 2015 Ex Libris | Confidential & Proprietary Yoel Kortick | Senior Librarian Primo Analytics.
CHAPTER 7 LESSON B Creating Database Reports. Lesson B Objectives  Describe the components of a report  Modify report components  Modify the format.
Building Dashboards with JMP 13 Dan Schikore SAS, JMP
Patricia 5.7.
ODMAP Level 2 access.
Contract Compliance: Reporting
Creating Oracle Business Intelligence Interactive Dashboards
Your Dashboard to Success
MONITORING AND EVALUATION
Queries.
Dashboard 5.7.
CARA 3.10 Major New Features
Microsoft Office Illustrated
Plug-In T7: Problem Solving Using Access 2007
ODMAP Level 2 access.
Computer Programming I
SQL: Advanced Options, Updates and Views Lecturer: Dr Pavle Mogin
Creating Charts & Dashboards
Microsoft Office Access 2003
2018 Real Microsoft MB2-716 Dumps IT-Dumps
5.8 Presentation.
Database Applications – Microsoft Access
Patricia Training - Financial
Navigation Details Boeing 787 SCMP March 2018.
CIS16 Application Programming with Visual Basic
DB Implementation: MS Access Forms
Access Tutorial 5 Creating Advanced Queries and Enhancing Table Design
Creating Noninput Items
Contents Preface I Introduction Lesson Objectives I-2
Access: Queries III Participation Project
Report Creation: Basic
Exploring Microsoft Office Access 2010
Quid Usage.
Planning a Group Policy Management and Implementation Strategy
Patricia Training - Financial
PCP – IP Practice.
Use of SQL – The Patricia database
Basic Reports.
PCP – Industry Focus.
PCP Super User.
Shelly Cashman: Microsoft Access 2016
Chapter 3 Query and Report.
ESeries Widgets Justin Kishbaugh.
Training Document Accessing Reports in VinCENT.
Presentation transcript:

Adv. Reports & Dashboard

Advanced Reports Main focus on the Design aspect Compute Expressions Report Groups Custom Related Cases & Overview Reports

Adv. Reports – Compute Expressions Allows for design changes depending on report content Applied on properties of fields Can also be generated as standalone fields

Adv. Reports – Compute Expressions Expressions are written as s.c. IF statements The pseudocode for these are IF (expression to be evaluated = true THEN 1 ELSE 2) E.g. IF (diary_date_35 < Today(), 1, 0) These can be built with the use of built-in options Columns, Functions, Constants

Common Computed Expressions Color changes Select Color property of a field Start with an If statement Decide on which field that will be the deciding factor Then using the constants, choose the “true” value Finally using the constants, choose the “false” value If (diary_date_35<Today(), 255 /* red */ , 32768 /* green */ )

Common Computed Expressions Current Page Counter Right Click > New Field > Compute Expressions Write text within single quotes – ‘Page: ‘ Add a + to concatenate texts Using the functions, choose the Page expression which returns current page number Add another + and then‘/’ Using the functions, choose the PageCount expression. ‘Page: ‘ + Page() + ‘/’ + PageCount()

Common Computed Expressions Alternating Row Color Select the detail field Choose color property Begin with an IF statement Select the Mod function Pass in the GetRow function and the number 2 If the result is 0 the row is even and we can set the color property, otherwise we set it to a different color If ( Mod(GetRow(), 2), 8421504 /* gray */, 16777215 /* white */)

Advanced Reports - Dashboards Dashboards are Graph reports Used not to show a list of individual items, but instead to display aggregate information over groups Created in Maintenance Accessible on all three Patricia platforms Patricia C/S PCP Patricia APP

Advaned Reports - Dashboards Accessed from Report > Reports > Dashboards Granted access to specific dashboards based on Security Groups

Advanced Reports - Dashboards Created in two steps. Done in Maintenance under Report > Dashboard Configuration Each Dashboard is a collection of so called “Dashlets” Dashlets are individual report components that can share common filter expressions on the same Dashboard Dashlet creation requires SQL knowledge

Advanced Reports - Dashboards Dashboards come in two versions General Case General fetches many cases and aggregates upon data from all cases Case only fetches information from currently opened case and aggregates upon data from that particular case Case Dashboards are accessed by adding the Dashboard tab in Case Display Layout

Dashboards – Dashlet Creation 11 different Report Types Choose beforehand what type of report is most suitable for the data that you want to display Aggregation of data differs depending on report type

Dashboards – Dashlet Creation Since general dashboards are used for aggregation of data, your SQL query should contain at least one aggregate statement, e.g. COUNT(), AVG(), MAX, MIN() etc., and also a GROUP BY statement. Case Dashboards operate on a single cases information, and for this to work the query needs to contain the Case ID parameter. Parameters has to be added in the SQL Query by the format ${parameter_name}

General Dashboard

Component Configuration Depending on what type of report selected, different components has to be setup These include Labels as well as which fields retrieved from the query will be used for what in the final report layout

Bar Report Example – Component Configuration

Dashboard Setup Name of Report Layout Selection Platforms Type of Dashboard

Dashboard Setup – Designer Drag and Drop functionality Depending on the Layout Selected, the available areas in the designer will differ This is were we add Dashlet Reports to the Dashboard

Dashboard Setup – Parameter Configuration This section will only be populated if you are creating a general dashboard that contains parameters Parameters are automatically retrieved from the SQL Query Defining the type, the label and an initial value. If you receive an error when opening a dashboard, the problem can sometimes be a missing initial value. Security setup (Optional)

When using Combobox (Dropdown) Custom SQL Query for dropdown values has to be provided

Dashboard Setup – Parameter Security Depending on if the Dashboard is setup for PCP, either both Security Groups and PCP Roles are available or just Security Groups By default, everybody has access By adding one security setting, you are automatically denying everybody else access

Dashboard Setup – General Security Defines the Security Group(s) that will have access to view the Dashboard Same concept as with Parameter Security in regards to Security Groups and/or PCP Roles

Dashboard Setup Platform Setup, Parameter and Security setup can be changed afterwards as well