Cell Suppression In SAS Visual Analytics: A Primer

Size: px
Start display at page:

Download "Cell Suppression In SAS Visual Analytics: A Primer"

Transcription

1 ABSTRACT Paper Cell Suppression In SAS Visual Analytics: A Primer Marc Flore, Institute for Health Policy and Practice, University of New Hampshire In healthcare and other fields, the importance of cell suppression as a means to avoid unintended disclosure or identification of Protected Health Information (PHI) or any other sensitive data has grown as we move toward dynamic query systems and reports. Organizations such as the Centers for Medicare & Medicaid Services (CMS), the National Center for Health Statistics (NCHS), and the Privacy Technical Assistance Center (PTAC) have outlined best practices to help researchers, analysts, report writers, and others avoid unintended disclosure for privacy reasons and to maintain statistical validity. Cell suppression is a crucial consideration during report design and can be a substantial hurdle in the dissemination of information. Often, the goal is to display as much data as possible without enabling the identification of individuals and while maintaining statistical validity. When designing reports using SAS Visual Analytics, achieving suppression can be handled multiple ways. One way is to suppress the data before loading it into the SAS LASR Analytic server. This has the drawback that a user cannot take full advantage of the dynamic filtering and aggregation available with SAS Visual Analytics. Another method is to create formulas that govern how SAS Visual Analytics displays cells within a table (crosstab) or bars within a chart. The logic can be complex and can meet a variety of needs. This presentation walks through examples of the latter methodology, namely, the creation of suppression formulas and how to apply them to report objects. INTRODUCTION Report suppression is a necessity in many environments and for a variety of reasons. In other environments it is a critical consideration. Suppression protects patient and customer identity, maintains statistical validity and allows for greater dissemination of information. The purpose of this paper is to provide examples of suppression in SAS Visual Analytics using a real-world report suite developed for a wide audience interested in viewing health care claims data. There are many organizations (governmental and otherwise) offering suppression guidelines. Some guidelines, such as CMS current cell size suppression policy are widely publicized while others may be internal to an organization. The examples presented in this paper may be easily modified to meet many varied needs. SAS Visual Analytics does not, to the author s knowledge and as of the writing of this paper, possess built-in suppression. However, there are tools available to report-writers that will allow cells and other objects (e.g. visualizations) to be suppressed. This paper will show one methodology for accomplishing suppression though there may be others. The author has tested these methods using versions 6.4 and 7.2 and has no reason to believe that other versions will function differently. DEFINING THE PROBLEM Using a cell suppression rule where cells less than 11 (i.e. 10 or fewer) are suppressed, row three in Table 1 would be suppressed while rows one and two would be displayed (row four represents the total). Whether row four should be displayed is an open question that depends upon the suppression rule and the preferences of the report-writer and her colleagues. Care must be taken when displaying totals and sub-totals as they may be used to reconstruct data. Let us say that only row 3 is suppressed as is the case in Table 2. It is quite easy to deduce that the contents of the suppressed cell is the number nine ( =9). Row Number of Patients Age Group Table 1. Sample Data, Unsuppressed 1

2 Row Number of Patients Age Group * Table 2. Sample Data, Suppressed When displaying a table in SAS Visual Analytics a report-writer may be able to browse all of the data (as is the case in Tables 1 and 2) to determine if small cells are present and take appropriate action. More often, the data is too large or complex to browse. And when employing the dynamic features of SAS Visual Analytics such as dynamic filtering, browsing the data becomes onerous. For example, imagine that a checkbox style filter for age grouping is instituted allowing the report-viewer to combine age groupings in any combination she wishes. As the number of age groupings increases, there arises a combinatorial explosion. That is, the number of combinations of age groupings quickly becomes quite large. The number of combinations of age groupings in Table 1 is n!=3!=6. At four age groupings grows to n!=4!=24 combinations and at five age groupings n!=5!=120 combinations. A report-writer is unlikely to check all 120 combinations for small sample sizes. IMPLEMENTING THE SOLUTION The solution will depend upon the structure of the data as well as the constraints and aims of the reportwriter. This paper walks through a few simplified examples to illustrate suppression in SAS Visual Analytics. These techniques can be modified to fill many needs. Please refer to the SAS Visual Analytics User s Guide for your version of SAS Visual Analytics as these directions may vary for your installation. DISAGGREGATED SUPPRESSION If the desired report does not incorporate dynamic filtering then the task is simplified. The data may be suppressed before being loaded to the SAS LASR Analytic server. This can be accomplished using base SAS, for example and is beyond the scope of this paper. Another solution is to implement the suppression in SAS Visual Analytics using calculated items. To create a calculated item in SAS Visual Analytics, select Data New Calculated Item (Figure 1). After naming the Calculated Item, create a formula by dragging and dropping Operators (Figure 2) and Data Items (Figure 3) to the scratch area (Figure 4) in the appropriate places, manually enter 10 and. (missing), name the Calculated Item and click OK. Figure 1 Creating a New Calculated Item 2

3 Figure 2. Operators Figure 3. Data Items 3

4 Figure 4. Calculated Item Scratch Area At this point, the calculated item is available under the measure section of the data tab (Figure 5). This data item is now available to use in report-building. It may be added to tables and visualizations just as any other data item. It will suppress when the suppression criteria is triggered (in this example, when Variable-X is 10 or less). Figure 5. Measure List AGGREGATED SUPPRESSION If the desired report will utilize aggregation the solution is to create an Aggregated Measure. This process is very similar to that outlined above (the creation of a calculated item). Begins by selecting Data New Aggregated Measure (Figure 6). After naming the Aggregated Measure, create a formula by dragging and dropping Operators (Figure 2) and Data Items (Figure 3) to the scratch area (Figure 4Figure 7) in the appropriate places, manually enter 10 and. (missing), name the Aggregated Measure and click OK. 4

5 Figure 6. New Aggregated Measure Figure 7. Aggregated Measure Scratch Area At this point, the Aggregated Measure is available under the Aggregated Measure section of the data tab (Figure 5). This data item is now available to use in report-building. It may be added to tables and visualizations just as any other data item. And when coupled with dynamic filtering, it will suppress when the suppression criteria is triggered (in this example, when Variable-X is 10 or less). MULTIPLE CONDITIONS AND INTERDEPENDENCIES Suppression rules may be much more complicated than the above examples. The contents of one cell may be suppressed based on the contents of another and multiple conditions may be combined. Let us say that you are tasked with suppressing Variable-Z when either the minimum value of Variable-X is less than 44 or when Variable-X is greater than Variable-Y. To accomplish this, simply add the Boolean operator OR, to the IF portion of the condition, and replace the rest of the formula to match Figure 8. 5

6 Figure 8. Multiple Conditions & Interdependencies AGGREGATED MEASURES VS. CALCULATED ITEMS The benefit of utilizing Aggregated Measures over Calculated Items is that Aggregated Measures trigger suppression after aggregation. If the report does not have aggregation or if it is desired that disaggregated items are suppressed then Calculated Items are appropriate. CONCLUSION While SAS Visual Analytics does not feature built-in suppression, the tools available to the report-writer are flexible and powerful, allowing suppression to be achieved in a variety of contexts. This paper has provided several examples for illustrative purposes but these are only a fraction of what is possible. Try these out for yourself to become familiar with the process, then explore on your own. The author would be interested in hearing your stories, both successes and failures. You will find Contact Information below. REFERENCES CMS accessed March 18, Systems/Computer-Dataand-Systems/Privacy/Researchers.html ACKNOWLEDGMENTS The author would like to acknowledge his colleagues at the Institute for Health Policy and Practice and SAS for their help creating and testing suppression. The author would also like to thank these colleagues for their encouragement to write this paper. RECOMMENDED READING SAS Visual Analytics User s Guide CONTACT INFORMATION Your comments and questions are valued and encouraged. Contact the author at: Marc Flore Institute for Health Policy and Practice University of New Hampshire 4 Library Way Durham, NH Marc.Flore@unh.edu 6

7 SAS and all other SAS Institute Inc. product or service names are registered trademarks or trademarks of SAS Institute Inc. in the USA and other countries. indicates USA registration. Other brand and product names are trademarks of their respective companies. 7

A Hands-On Introduction to SAS Visual Analytics Reporting

A Hands-On Introduction to SAS Visual Analytics Reporting MWSUG 2016 - Paper HW01 A Hands-On Introduction to SAS Visual Analytics Reporting David Foster, Pinnacle Solutions Inc, Indianapolis, IN ABSTRACT This Hands-On work shop will walk through SAS Visual Analytics

More information

Writing Reports with Report Designer and SSRS 2014 Level 1

Writing Reports with Report Designer and SSRS 2014 Level 1 Writing Reports with Report Designer and SSRS 2014 Level 1 Duration- 2days About this course In this 2-day course, students are introduced to the foundations of report writing with Microsoft SQL Server

More information

Chapter 6 Creating Reports. Chapter Table of Contents

Chapter 6 Creating Reports. Chapter Table of Contents Chapter 6 Creating Reports Chapter Table of Contents Introduction...115 Listing Data...115 ListDataOptions...116 List Data Titles...118 ListDataVariables...118 Example:CreateaListingReport...119 Creating

More information

Course Outline. Writing Reports with Report Builder and SSRS Level 1 Course 55123: 2 days Instructor Led. About this course

Course Outline. Writing Reports with Report Builder and SSRS Level 1 Course 55123: 2 days Instructor Led. About this course About this course Writing Reports with Report Builder and SSRS Level 1 Course 55123: 2 days Instructor Led In this 2-day course, students will continue their learning on the foundations of report writing

More information

WASHINGTON UNIVERSITY HIPAA Privacy Policy # 7. Appropriate Methods of Communicating Protected Health Information

WASHINGTON UNIVERSITY HIPAA Privacy Policy # 7. Appropriate Methods of Communicating Protected Health Information WASHINGTON UNIVERSITY HIPAA Privacy Policy # 7 Appropriate Methods of Communicating Protected Health Information Statement of Policy Washington University and its member organizations (collectively, Washington

More information

Basic Intro to ETO Results

Basic Intro to ETO Results Basic Intro to ETO Results Who is the intended audience? Registrants of the 8 hour ETO Results Orientation (this training is a prerequisite) Anyone who wants to learn more but is not ready to attend the

More information

Mira Shapiro, Analytic Designers LLC, Bethesda, MD

Mira Shapiro, Analytic Designers LLC, Bethesda, MD Paper JMP04 Using JMP Partition to Grow Decision Trees in Base SAS Mira Shapiro, Analytic Designers LLC, Bethesda, MD ABSTRACT Decision Tree is a popular technique used in data mining and is often used

More information

Business Insight Authoring

Business Insight Authoring Business Insight Authoring Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: August 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Seamless Dynamic Web (and Smart Device!) Reporting with SAS D.J. Penix, Pinnacle Solutions, Indianapolis, IN

Seamless Dynamic Web (and Smart Device!) Reporting with SAS D.J. Penix, Pinnacle Solutions, Indianapolis, IN Paper RIV05 Seamless Dynamic Web (and Smart Device!) Reporting with SAS D.J. Penix, Pinnacle Solutions, Indianapolis, IN ABSTRACT The SAS Business Intelligence platform provides a wide variety of reporting

More information

SAS. Information Map Studio 3.1: Creating Your First Information Map

SAS. Information Map Studio 3.1: Creating Your First Information Map SAS Information Map Studio 3.1: Creating Your First Information Map The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Information Map Studio 3.1: Creating Your

More information

Primo Analytics Workshop. BIBSYS Konferansen 20 March 2018

Primo Analytics Workshop. BIBSYS Konferansen 20 March 2018 Primo Analytics Workshop BIBSYS Konferansen 20 March 2018 Objectives By the end of this session, you will: Understand what is Primo Analytics and OBI. Have a high-level view of how Primo Analytics is working.

More information

Alan Davies and Sarah Perry

Alan Davies and Sarah Perry Alan Davies and Sarah Perry Administering Visual Analytics Sarah Perry Agenda Topics Loading data Auditing in Visual Analytics Row level security Supporting stored processes What s new in 7.4 Copyright

More information

Training Guide. Microsoft Excel 2010 Advanced 1 Using Conditional and Custom Formats. Applying Conditional Formatting

Training Guide. Microsoft Excel 2010 Advanced 1 Using Conditional and Custom Formats. Applying Conditional Formatting Microsoft Excel 2010 Advanced 1 Using Conditional and Custom Formats Applying Conditional Formatting Excel lets you quickly apply Conditional Formatting to help you explore and analyze data visually, detect

More information

Related Documents and Projects Getting Started Guide

Related Documents and Projects Getting Started Guide Related Documents and Projects Getting Started Guide Version: 6.6.x Written by: Product Documentation, R&D Date: February 2011 ImageNow and CaptureNow are registered trademarks of Perceptive Software,

More information

PREREQUISITES FOR EXAMPLES

PREREQUISITES FOR EXAMPLES 212-2007 SAS Information Map Studio and SAS Web Report Studio A Tutorial Angela Hall, Zencos Consulting LLC, Durham, NC Brian Miles, Zencos Consulting LLC, Durham, NC ABSTRACT Find out how to provide the

More information

SAS BI Dashboard 3.1. User s Guide Second Edition

SAS BI Dashboard 3.1. User s Guide Second Edition SAS BI Dashboard 3.1 User s Guide Second Edition The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2007. SAS BI Dashboard 3.1: User s Guide, Second Edition. Cary, NC:

More information

GETTING STARTED. A Step-by-Step Guide to Using MarketSight

GETTING STARTED. A Step-by-Step Guide to Using MarketSight GETTING STARTED A Step-by-Step Guide to Using MarketSight Analyze any dataset Run crosstabs Test statistical significance Create charts and dashboards Share results online Introduction MarketSight is a

More information

Privacy Policy. How we handle your information you provide to us. Updated: 14 March 2016

Privacy Policy. How we handle your information you provide to us. Updated: 14 March 2016 Privacy Policy How we handle your information you provide to us Updated: 14 March 2016 Overview Enteronline (Pty) Ltd and its affiliated companies and subsidiaries (collectively, Entrytime Enteronline,

More information

Introduction to MDDBs

Introduction to MDDBs 3 CHAPTER 2 Introduction to MDDBs What Is OLAP? 3 What Is SAS/MDDB Server Software? 4 What Is an MDDB? 4 Understanding the MDDB Structure 5 How Can I Use MDDBs? 7 Why Should I Use MDDBs? 8 What Is OLAP?

More information

Beginning Tutorials. PROC FSEDIT NEW=newfilename LIKE=oldfilename; Fig. 4 - Specifying a WHERE Clause in FSEDIT. Data Editing

Beginning Tutorials. PROC FSEDIT NEW=newfilename LIKE=oldfilename; Fig. 4 - Specifying a WHERE Clause in FSEDIT. Data Editing Mouse Clicking Your Way Viewing and Manipulating Data with Version 8 of the SAS System Terry Fain, RAND, Santa Monica, California Cyndie Gareleck, RAND, Santa Monica, California ABSTRACT Version 8 of the

More information

Microsoft Access 2007 Level 3

Microsoft Access 2007 Level 3 Information Technology Services Kennesaw State University Microsoft Access 2007 Level 3 1 Copyright 2008 KSU Dept. of Information Technology Services This document may be downloaded, printed or copied

More information

SAS Visual Analytics 8.2: Getting Started with Reports

SAS Visual Analytics 8.2: Getting Started with Reports SAS Visual Analytics 8.2: Getting Started with Reports Introduction Reporting The SAS Visual Analytics tools give you everything you need to produce and distribute clear and compelling reports. SAS Visual

More information

SAS Web Report Studio 3.1

SAS Web Report Studio 3.1 SAS Web Report Studio 3.1 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Web Report Studio 3.1: User s Guide. Cary, NC: SAS

More information

Business Intelligence and Reporting Tools

Business Intelligence and Reporting Tools Business Intelligence and Reporting Tools Release 1.0 Requirements Document Version 1.0 November 8, 2004 Contents Eclipse Business Intelligence and Reporting Tools Project Requirements...2 Project Overview...2

More information

Is Your Data Viable? Preparing Your Data for SAS Visual Analytics 8.2

Is Your Data Viable? Preparing Your Data for SAS Visual Analytics 8.2 Paper SAS1826-2018 Is Your Data Viable? Preparing Your Data for SAS Visual Analytics 8.2 Gregor Herrmann, SAS Institute Inc. ABSTRACT We all know that data preparation is crucial before you can derive

More information

What to Expect When You Need to Make a Data Delivery... Helpful Tips and Techniques

What to Expect When You Need to Make a Data Delivery... Helpful Tips and Techniques What to Expect When You Need to Make a Data Delivery... Helpful Tips and Techniques Louise Hadden, Abt Associates Inc. QUESTIONS YOU SHOULD ASK REGARDING THE PROJECT Is there any information regarding

More information

SAS Report Viewer 8.3 Documentation

SAS Report Viewer 8.3 Documentation SAS Report Viewer 8.3 Documentation About SAS Report Viewer Introduction to SAS Report Viewer SAS Report Viewer (the report viewer) enables users who are not report designers to view a report using a web

More information

SAS Model Manager 2.2. Tutorials

SAS Model Manager 2.2. Tutorials SAS Model Manager 2.2 Tutorials The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2009. SAS Model Manager 2.2: Tutorials. Cary, NC: SAS Institute Inc. SAS Model Manager

More information

Website Privacy Policy

Website Privacy Policy Website Privacy Policy Village Emergency Center Privacy Policy Updated: 1/22/18. PLEASE READ THIS PRIVACY POLICY (Privacy Policy) CAREFULLY. By accessing and using this website, you agree to be bound by

More information

Orbis Cascade Alliance Archives & Manuscripts Collections Service

Orbis Cascade Alliance Archives & Manuscripts Collections Service Orbis Cascade Alliance Archives & Manuscripts Collections Service ArchivesSpace Preferences, Controlled Value Lists, & Default Values For Institutions Using Alliance ArchivesSpace Hosting Produced by the

More information

Integrating SAS and Non-SAS Tools and Systems for Behavioral Health Data Collection, Processing, and Reporting

Integrating SAS and Non-SAS Tools and Systems for Behavioral Health Data Collection, Processing, and Reporting Integrating SAS and Non-SAS Tools and Systems for Behavioral Health Data Collection, Processing, and Reporting Manuel Gomez, San Bernardino County, Department of Behavioral Health, California Keith Haigh,

More information

Tips and Tricks for Organizing and Administering Metadata

Tips and Tricks for Organizing and Administering Metadata Paper 183 Tips and Tricks for Organizing and Administering Metadata Michael G. Sadof, Bedford NH ABSTRACT The SAS Management Console was designed to control and monitor virtually all of the parts and features

More information

DOWNLOAD PDF LEARN TO USE MICROSOFT ACCESS

DOWNLOAD PDF LEARN TO USE MICROSOFT ACCESS Chapter 1 : Microsoft Online IT Training Microsoft Learning Each video is between 15 to 20 minutes long. The first one covers the key concepts and principles that make Microsoft Access what it is, and

More information

Making Your SAS Data JMP Through Hoops Mira Shapiro, Analytic Designers LLC, Bethesda, MD

Making Your SAS Data JMP Through Hoops Mira Shapiro, Analytic Designers LLC, Bethesda, MD Paper JP-02 Making Your SAS Data JMP Through Hoops Mira Shapiro, Analytic Designers LLC, Bethesda, MD ABSTRACT Longtime SAS users can benefit by adding JMP to their repertoire. JMP provides an easy-to-use

More information

Princeton University Exercise Workbook Training Developed by Elisabetta Zodeiko, Princeton University

Princeton University Exercise Workbook Training Developed by Elisabetta Zodeiko, Princeton University ReportNet Query Studio Princeton University Exercise Workbook Training Developed by Elisabetta Zodeiko, Princeton University Cognos, Impromptu, PowerPlay, and ReportNet are registered trademarks of Cognos

More information

Session 4.07 Accountability for Use or Disclosure of a Patient s Electronic Record

Session 4.07 Accountability for Use or Disclosure of a Patient s Electronic Record Session 4.07 Accountability for Use or Disclosure of a Patient s Electronic Record Requirements for a Security and Privacy Audit System Presented By: John Travis, CPA, MSA, CHFP Director, Solution Management

More information

SAS Viya 3.3 Administration: External Credentials

SAS Viya 3.3 Administration: External Credentials SAS Viya 3.3 Administration: External Credentials External Credentials: Overview In addition to logon credentials, users on SAS Viya systems might need external credentials for accessing databases and

More information

Easing into Data Exploration, Reporting, and Analytics Using SAS Enterprise Guide

Easing into Data Exploration, Reporting, and Analytics Using SAS Enterprise Guide Paper 809-2017 Easing into Data Exploration, Reporting, and Analytics Using SAS Enterprise Guide ABSTRACT Marje Fecht, Prowerk Consulting Whether you have been programming in SAS for years, are new to

More information

Virtua Health, Inc. is a 501 (c) (3) non-profit corporation located in Marlton, New Jersey ( Virtua ).

Virtua Health, Inc. is a 501 (c) (3) non-profit corporation located in Marlton, New Jersey ( Virtua ). myvirtua.org Terms of Use PLEASE READ THESE TERMS OF USE CAREFULLY Virtua Health, Inc. is a 501 (c) (3) non-profit corporation located in Marlton, New Jersey ( Virtua ). Virtua has partnered with a company

More information

Reports: How to run in SystmOne

Reports: How to run in SystmOne Reports: How to run in SystmOne Author CIS Reporting Team Last Updated by Katherine Reed Last Updated on 20 th March 2012 Creating Reports... 2 Creating your own reports... 2 Using existing reports...

More information

STREET MOBILITY PROJECT User Guide for Analysing the Health and Neighbourhood Mobility Survey

STREET MOBILITY PROJECT User Guide for Analysing the Health and Neighbourhood Mobility Survey STREET MOBILITY PROJECT User Guide for Analysing the Health and Neighbourhood Mobility Survey March 2017 S T R E E T M O B I L I T Y P R O J E C T T O O L K I T : M E A S U R I N G T H E E F F E C T S

More information

SAS Report Viewer 8.2 Documentation

SAS Report Viewer 8.2 Documentation SAS Report Viewer 8.2 Documentation About SAS Report Viewer SAS Report Viewer (the report viewer) enables users who are not report designers to view a report using a web browser. To open a report in the

More information

Copyright 2018 MakeUseOf. All Rights Reserved.

Copyright 2018 MakeUseOf. All Rights Reserved. The Beginner s Guide to Microsoft Excel Written by Sandy Stachowiak Published April 2018. Read the original article here: https://www.makeuseof.com/tag/beginners-guide-microsoftexcel/ This ebook is the

More information

General Guidelines: SAS Analyst

General Guidelines: SAS Analyst General Guidelines: SAS Analyst The Analyst application is a data analysis tool in SAS for Windows (version 7 and later) that provides easy access to basic statistical analyses using a point-and-click

More information

UAccess ANALYTICS Next Steps: Working with Bins, Groups, and Calculated Items: Combining Data Your Way

UAccess ANALYTICS Next Steps: Working with Bins, Groups, and Calculated Items: Combining Data Your Way UAccess ANALYTICS Next Steps: Working with Bins, Groups, and Calculated Items: Arizona Board of Regents, 2014 THE UNIVERSITY OF ARIZONA created 02.07.2014 v.1.00 For information and permission to use our

More information

Microsoft Office Illustrated. Using Tables

Microsoft Office Illustrated. Using Tables Microsoft Office 2007 - Illustrated Using Tables Objectives Plan a Table Create a Table Add Table Data Find and Replace Table Data Delete Table Data 2 Objectives Sort Table Data Use Formulas in a Table

More information

Using PROC SQL to Calculate FIRSTOBS David C. Tabano, Kaiser Permanente, Denver, CO

Using PROC SQL to Calculate FIRSTOBS David C. Tabano, Kaiser Permanente, Denver, CO Using PROC SQL to Calculate FIRSTOBS David C. Tabano, Kaiser Permanente, Denver, CO ABSTRACT The power of SAS programming can at times be greatly improved using PROC SQL statements for formatting and manipulating

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

InfoMaster REPORT DESIGNER

InfoMaster REPORT DESIGNER InfoMaster REPORT DESIGNER TABLE OF CONTENTS About Customized Advanced Reports... 2 Pre-Defined Advanced Reports... 2 Create Custom Advanced Report... 4 Goal: Final Report... 4 Creating custom report:

More information

SIMSme Management Cockpit Documentation

SIMSme Management Cockpit Documentation Introduction SIMSme Management Cockpit Documentation Version 2.1 February 2018 Table of Contents 1 INTRODUCTION... 2 2 USERS... 3 3 LICENSES... 5 4 GROUPS... 7 5 CHANNELS... 8 6 DASHBOARD...10 7 APP SETTINGS...12

More information

Automation is here: How Google Apps can be leveraged to automate tasks in library technology environments

Automation is here: How Google Apps can be leveraged to automate tasks in library technology environments Automation is here: How Google Apps can be leveraged to automate tasks in library technology environments Laura Gerlitz, University of Alberta Libraries Sam Hamilton, Edmonton Public Library Primary Apps

More information

Designing Adhoc Reports

Designing Adhoc Reports Designing Adhoc Reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Copyright 2010 Intellicus Technologies This document and its content

More information

ProvideX Report Writer v7.50 & v8.00. Presented by: Jane Raymond

ProvideX Report Writer v7.50 & v8.00. Presented by: Jane Raymond ProvideX Report Writer v7.50 & v8.00 Presented by: Jane Raymond Presentation Outline Overview V7.50 & V8.00 Enhancements Simplifying the Designer New report features Sample Reports and Programs Bundles

More information

A Practical Introduction to SAS Data Integration Studio

A Practical Introduction to SAS Data Integration Studio ABSTRACT A Practical Introduction to SAS Data Integration Studio Erik Larsen, Independent Consultant, Charleston, SC Frank Ferriola, Financial Risk Group, Cary, NC A useful and often overlooked tool which

More information

Hyperion Essbase Audit Logs Turning Off Without Notification

Hyperion Essbase Audit Logs Turning Off Without Notification Hyperion Essbase Audit Logs Turning Off Without Notification Audit logs, or SSAUDIT, are a crucial component of backing up Hyperion Essbase applications in many environments. It is the equivalent of a

More information

Getting Started with Performance Manager

Getting Started with Performance Manager Getting Started with Performance Manager BusinessObjects Performance Manager Windows Copyright 2008 Business Objects, an SAP company. All rights reserved. Business Objects owns the following U.S. patents,

More information

Designer TM for Microsoft Access

Designer TM for Microsoft Access Designer TM for Microsoft Access Application Guide 1.7.2018 This document is copyright 2009-2018 OpenGate Software. The information contained in this document is subject to change without notice. If you

More information

MicroStrategy Desktop Quick Start Guide

MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop Quick Start Guide Version: 10.4 10.4, June 2017 Copyright 2017 by MicroStrategy Incorporated. All rights reserved. If you have not executed a written or electronic agreement with

More information

Step 3: Type the data in to the cell

Step 3: Type the data in to the cell Simple Instructions for using Microsoft Excel The goal of these instructions is to familiarize the user with the basics of Excel. These directions will cover data entry, formatting, formulas and functions,

More information

Administering Adobe Creative Suite 5/5.5 with the Casper Suite. Technical Paper Casper Suite v9.0 or Later 8 January 2014

Administering Adobe Creative Suite 5/5.5 with the Casper Suite. Technical Paper Casper Suite v9.0 or Later 8 January 2014 Administering Adobe Creative Suite 5/5.5 with the Casper Suite Technical Paper Casper Suite v9.0 or Later 8 January 2014 JAMF Software, LLC 2014 JAMF Software, LLC. All rights reserved. JAMF Software has

More information

An Introduction to SAS Visual Analytics 8.1

An Introduction to SAS Visual Analytics 8.1 SAS 758-2017 An Introduction to SAS Visual Analytics 8.1 Jeff Diamond, SAS Institute Inc. ABSTRACT The first release of SAS Visual Analytics version 8.1 on SAS Viya has something exciting for everyone.

More information

Administering Adobe Creative Suite 6 with the Casper Suite. Technical Paper May 2012

Administering Adobe Creative Suite 6 with the Casper Suite. Technical Paper May 2012 Administering Adobe Creative Suite 6 with the Casper Suite Technical Paper May 2012 JAMF Software, LLC 2012 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this

More information

Billing (X12) Setup. Complete the fields for Billing Contact, Federal Tax ID, MA Provider ID and Provider NPI.

Billing (X12) Setup. Complete the fields for Billing Contact, Federal Tax ID, MA Provider ID and Provider NPI. Billing (X12) Setup This session includes Community Setup, Payor Setup, Procedure Codes, Place of Service, X12 codes for Transaction Types and Service Types. Note: Before using Eldermark Software for X12

More information

Objective 1: Familiarize yourself with basic database terms and definitions. Objective 2: Familiarize yourself with the Access environment.

Objective 1: Familiarize yourself with basic database terms and definitions. Objective 2: Familiarize yourself with the Access environment. Beginning Access 2007 Objective 1: Familiarize yourself with basic database terms and definitions. What is a Database? A Database is simply defined as a collection of related groups of information. Things

More information

IBM emessage Version 9 Release 1 February 13, User's Guide

IBM emessage Version 9 Release 1 February 13, User's Guide IBM emessage Version 9 Release 1 February 13, 2015 User's Guide Note Before using this information and the product it supports, read the information in Notices on page 471. This edition applies to version

More information

Secure Messaging Mobile App Privacy Policy. Privacy Policy Highlights

Secure Messaging Mobile App Privacy Policy. Privacy Policy Highlights Secure Messaging Mobile App Privacy Policy Privacy Policy Highlights For ease of review, Everbridge provides these Privacy Policy highlights, which cover certain aspects of our Privacy Policy. Please review

More information

Defense Health Agency Protected Health Information Management Tool (PHIMT)

Defense Health Agency Protected Health Information Management Tool (PHIMT) Defense Health Agency Protected Health Information Management Tool (PHIMT) Training Reference: Privacy Specialist User Guide Version 3.0 March 2011 Any data herein that may be construed as personal information

More information

Intellicus Enterprise Reporting and BI Platform

Intellicus Enterprise Reporting and BI Platform Designing Adhoc Reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Designing Adhoc Reports i Copyright 2012 Intellicus Technologies This

More information

Getting Started With. A Step-by-Step Guide to Using WorldAPP Analytics to Analyze Survey Data, Create Charts, & Share Results Online

Getting Started With. A Step-by-Step Guide to Using WorldAPP Analytics to Analyze Survey Data, Create Charts, & Share Results Online Getting Started With A Step-by-Step Guide to Using WorldAPP Analytics to Analyze Survey, Create Charts, & Share Results Online Variables Crosstabs Charts PowerPoint Tables Introduction WorldAPP Analytics

More information

Dynamic Projects in SAS Enterprise Guide How to Create and Use Parameters

Dynamic Projects in SAS Enterprise Guide How to Create and Use Parameters Paper HW02 Dynamic Projects in SAS Enterprise Guide How to Create and Use Parameters Susan J. Slaughter, Avocet Solutions, Davis, CA Lora D. Delwiche, University of California, Davis, CA ABSTRACT SAS Enterprise

More information

GETTING STARTED Contents

GETTING STARTED Contents 2.5 Enterprise GETTING STARTED Contents Quick Start Guide... 2 Supporting Data... 3 Prompts... 3 Techniques... 4 Pragmatic Observations... 5 Locations... 6 School Levels... 6 Quick Notes... 6 Session Groups...

More information

Our Commitment To Privacy PRIVACY POLICY. Last Modified July 26, 2018

Our Commitment To Privacy PRIVACY POLICY. Last Modified July 26, 2018 Our Commitment To Privacy PRIVACY POLICY Last Modified July 26, 2018 Please read this Privacy Policy carefully before using this online entertainment service. Access to and use of this online entertainment

More information

Lasso Your Business Users by Designing Information Pathways to Optimize Standardized Reporting in SAS Visual Analytics

Lasso Your Business Users by Designing Information Pathways to Optimize Standardized Reporting in SAS Visual Analytics Paper 2960-2015 Lasso Your Business Users by Designing Information Pathways to Optimize Standardized Reporting in SAS Visual Analytics ABSTRACT Stephen Overton, Zencos Consulting SAS Visual Analytics opens

More information

BMC Remedy Action Request System Using a BIRT Editor to Create or Modify Web Reports

BMC Remedy Action Request System Using a BIRT Editor to Create or Modify Web Reports White Paper BMC Remedy Action Request System 7.6.04 Using a BIRT Editor to Create or Modify Web Reports September 2012 www.bmc.com Contacting BMC Software You can access the BMC Software website at http://www.bmc.com.

More information

SAS Infrastructure for Risk Management 3.4: User s Guide

SAS Infrastructure for Risk Management 3.4: User s Guide SAS Infrastructure for Risk Management 3.4: User s Guide SAS Documentation March 2, 2018 The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2017. SAS Infrastructure for

More information

Crystal Reports. Overview. Contents. Displaying PercentOfCount and/or PercentOfDistinctCount summaries in a cross-tab

Crystal Reports. Overview. Contents. Displaying PercentOfCount and/or PercentOfDistinctCount summaries in a cross-tab Crystal Reports Displaying PercentOfCount and/or PercentOfDistinctCount summaries in a cross-tab Overview In a Crystal Reports (CR) 9 cross-tab, the summary options, PercentOfDistinctCount and PercentOfCount,

More information

Working with Census Data Excel 2013

Working with Census Data Excel 2013 Working with Census Data Excel 2013 Preparing the File If you see a lot of little green triangles next to the numbers, there is an error or warning that Excel is trying to call to your attention. In my

More information

Guide Users along Information Pathways and Surf through the Data

Guide Users along Information Pathways and Surf through the Data Guide Users along Information Pathways and Surf through the Data Stephen Overton, Overton Technologies, LLC, Raleigh, NC ABSTRACT Business information can be consumed many ways using the SAS Enterprise

More information

Eloqua Insight Intro Analyzer User Guide

Eloqua Insight Intro Analyzer User Guide Eloqua Insight Intro Analyzer User Guide Table of Contents About the Course Materials... 4 Introduction to Eloqua Insight for Analyzer Users... 13 Introduction to Eloqua Insight... 13 Eloqua Insight Home

More information

Designing Adhoc Reports

Designing Adhoc Reports Designing Adhoc Reports Intellicus Web-based Reporting Suite Version 4.5 Enterprise Professional Smart Developer Smart Viewer Intellicus Technologies info@intellicus.com www.intellicus.com Copyright 2009

More information

SmartView. User Guide - Analysis. Version 2.0

SmartView. User Guide - Analysis. Version 2.0 SmartView User Guide - Analysis Version 2.0 Table of Contents Page i Table of Contents Table Of Contents I Introduction 1 Dashboard Layouts 2 Dashboard Mode 2 Story Mode 3 Dashboard Controls 4 Dashboards

More information

Tips and Techniques for Designing the Perfect Layout with SAS Visual Analytics

Tips and Techniques for Designing the Perfect Layout with SAS Visual Analytics SAS2166-2018 Tips and Techniques for Designing the Perfect Layout with SAS Visual Analytics Ryan Norris and Brian Young, SAS Institute Inc., Cary, NC ABSTRACT Do you want to create better reports but find

More information

SAS IT Resource Management Forecasting. Setup Specification Document. A SAS White Paper

SAS IT Resource Management Forecasting. Setup Specification Document. A SAS White Paper SAS IT Resource Management Forecasting Setup Specification Document A SAS White Paper Table of Contents Introduction to SAS IT Resource Management Forecasting... 1 Getting Started with the SAS Enterprise

More information

Software Reference Sheet: Inserting and Organizing Data in a Spreadsheet

Software Reference Sheet: Inserting and Organizing Data in a Spreadsheet Inserting and formatting text Software Reference Sheet: Inserting and Organizing Data in a Spreadsheet Column headings are very important to include in your spreadsheet so that you can remember what the

More information

ConnectingOntario Clinical Viewer

ConnectingOntario Clinical Viewer ConnectingOntario Clinical Viewer Document Download Scenarios Version: 1.0 Table of Contents Table of Contents Table of Contents... ii Downloading Documents... 3 Viewing Behavior Scenarios... 3 Scenario

More information

Privacy Policy. Information we collect about you

Privacy Policy. Information we collect about you Privacy Policy Briefly.co.za ( we, and us ) respects the privacy of its users and has developed this Privacy Policy to demonstrate its commitment to protecting your privacy. This Privacy Policy describes

More information

Process Document Financial Aid: Ready to Package Version 1.0 Document Generation Date 11/6/2008 Date Modified 12/29/2008 Last Changed by

Process Document Financial Aid: Ready to Package Version 1.0 Document Generation Date 11/6/2008 Date Modified 12/29/2008 Last Changed by Version 1.0 Document Generation Date 11/6/2008 Date Modified 12/29/2008 Last Changed by ASDS Status Draft Ready to Package Concept This process evaluates students based on a series of user defined "tests"

More information

Using Graph-N-Go With ODS to Easily Present Your Data and Web-Enable Your Graphs Curtis A. Smith, Defense Contract Audit Agency, La Mirada, CA

Using Graph-N-Go With ODS to Easily Present Your Data and Web-Enable Your Graphs Curtis A. Smith, Defense Contract Audit Agency, La Mirada, CA Paper 160-26 Using Graph-N-Go With ODS to Easily Present Your Data and Web-Enable Your Graphs Curtis A. Smith, Defense Contract Audit Agency, La Mirada, CA ABSTRACT Visualizing and presenting data effectively

More information

NJIIS Immunization Registry

NJIIS Immunization Registry NJIIS Immunization Registry This document, as well as the software dscribed in it, is provided under a software license agreement with STI Computer Services, Inc. Use of this software and all related documentation

More information

Unleash the Power of Excel

Unleash the Power of Excel Unleash the Power of Excel Administrative Professionals Conference, April 18, 2018 Tricia Olinger, Administrative Office Professional Program Lead Rochester Community and Technical College Tables and Charts

More information

OneView. User s Guide

OneView. User s Guide OneView User s Guide Welcome to OneView. This user guide will show you everything you need to know to access and utilize the wealth of information available from OneView. The OneView program is an Internet-based

More information

Paper SAS Taming the Rule. Charlotte Crain, Chris Upton, SAS Institute Inc.

Paper SAS Taming the Rule. Charlotte Crain, Chris Upton, SAS Institute Inc. ABSTRACT Paper SAS2620-2016 Taming the Rule Charlotte Crain, Chris Upton, SAS Institute Inc. When business rules are deployed and executed--whether a rule is fired or not if the rule-fire outcomes are

More information

Access - Introduction to Queries

Access - Introduction to Queries Access - Introduction to Queries Part of managing a database involves asking questions about the data. A query is an Access object that you can use to ask the question(s). The answer is contained in the

More information

STIDistrict Query (Basic)

STIDistrict Query (Basic) STIDistrict Query (Basic) Creating a Basic Query To create a basic query in the Query Builder, open the STIDistrict workstation and click on Utilities Query Builder. When the program opens, database objects

More information

Using WCB s Online Incident Reporting System

Using WCB s Online Incident Reporting System Using WCB s Online Incident Reporting System Table of Contents Overview 3 System Requirements of the Online 3 When You Can Use the Online 3 Following WCB s Security Policy 4 Getting Started 6 Logging On

More information

Using the Style Scope App

Using the Style Scope App Using the Style Scope App The following sections explain how to use dashboards on an Android device. 1 of 1269 Installing the Style Scope App To install the Style Scope app on your Android tablet, follow

More information

Job Aid. Enter bid Using XML Upload Functionality

Job Aid. Enter bid Using XML Upload Functionality Enter bid Using XML Upload Functionality Scenario: You need to respond to a bid using the XML upload functionality. The XML functionality allows your responses to be transferred automatically from an Excel

More information

SAP BEX ANALYZER AND QUERY DESIGNER

SAP BEX ANALYZER AND QUERY DESIGNER SAP BEX ANALYZER AND QUERY DESIGNER THE COMPLETE GUIDE A COMPREHENSIVE STEP BY STEP GUIDE TO CREATING AND RUNNING REPORTS USING THE SAP BW BEX ANALYZER AND QUERY DESIGNER TOOLS PETER MOXON PUBLISHED BY:

More information