Stores & Pharmacies by County

Size: px
Start display at page:

Download "Stores & Pharmacies by County"

Transcription

1 Stores & Pharmacies by County VENDOR (REVISED ) Report Overview Lists of active stores and pharmacies based on specified counties. Lists are provided by name and by city. An OPTIONAL input control filters the output by selected cities. Some Uses Include: Notes Obtain a list of WIC-allowed stores in a specific county/city for participants. Obtain a list of WIC-allowed pharmacies in a specific county/city for participants. Only currently active stores and pharmacies display in the output. County names are not case-sensitive but must be spelled correctly in the Enter County Name(s) PROMPT. This report uses Document Input controls to filter the report outputs by specific cities. A brief overview of How to Use Input Controls is provided at the end of this guidance document (page 7). The default input control is to run the report for all cities. Remove the checkmark from the Select All checkbox and select one or more cities to filter the report output in all four tabs. The report output has been formatted to export to an 8.5 x 11 Portrait PDF. It can also be exported to Excel (NOTE: the margins will need to be adjusted and the headers/footers may not display). Tab 1 Stores by Name

2 Tab 2 Stores by City Tab 3 Pharmacies by Name Tab 4 Pharmacies by City Prompts TABLE FIELD OPERATOR VALUE PROMPT/DEFINITIONS V_VENDORS_BY_COUNTY Countyname In List County Name (use semi-colons to separate; do not use spaces) Enter County Names The county where the stores are located. The county must be spelled correctly. Static Criteria Stores Query VENDOR.Peergroup in List 5;8;9;10;11 Explanation: Include stores VENDOR.Currentstatus Equal to 3 Explanation: Include active stores V_VENDORS_BY_COUNTY.Vendorid Not Equal to 1518 Explanation: Exclude store 1518 (per request from RC) 2

3 Pharmacies Query VENDOR.Peergroup Equal to 4 Explanation: Include pharmacies VENDOR.Currentstatus Equal to 3 Explanation: Include active pharmacies Report Columns Tab 1 Stores by Name STORE NAME (VENDOR.Tradename) STORE ADDRESS (V_VENDORS_BY_COUNTY.Physicaladdress1) CITY (V_VENDORS_BY_COUNTY.Physicalcity) ZIP CODE (V_VENDORS_BY_COUNTY.Physicalzipcode) TELEPHONE # (VENDORS.Telephone) Grouped by County Name - Ascending Store Name - Ascending City - Ascending Tab 2 Stores by City CITY (V_VENDORS_BY_COUNTY.Physicalcity) STORE NAME (VENDOR.Tradename) STORE ADDRESS (V_VENDORS_BY_COUNTY.Physicaladdress1) ZIP CODE (V_VENDORS_BY_COUNTY.Physicalzipcode) TELEPHONE # (VENDORS.Telephone) Grouped by County Name - Ascending City Ascending Store Name - Ascending Tab 3 Pharmacies by Name STORE NAME (VENDOR.Tradename) STORE ADDRESS (V_VENDORS_BY_COUNTY.Physicaladdress1) CITY (V_VENDORS_BY_COUNTY.Physicalcity) ZIP CODE (V_VENDORS_BY_COUNTY.Physicalzipcode) TELEPHONE # (VENDORS.Telephone) 3

4 Grouped by County Name - Ascending Store Name - Ascending City Ascending INFOVIEW GUIDANCE DOCUMENT Tab 4 Pharmacies by City CITY (V_VENDORS_BY_COUNTY.Physicalcity) STORE NAME (VENDOR.Tradename) STORE ADDRESS (V_VENDORS_BY_COUNTY.Physicaladdress1) ZIP CODE (V_VENDORS_BY_COUNTY.Physicalzipcode) TELEPHONE # (VENDORS.Telephone) Grouped by County Name - Ascending City Ascending Store Name - Ascending 4

5 Technical Notes Notes Cities are not case-consistent because they are manually typed in by Vendor Unit staff (some are lower-case, some upper). In order to have the input controls only display upper-case options, a variable was created using the merged dimension (Physicalcity) to force the UPPER(). This variable (V_CITY) was then used to create the input control. Variables [V_City] =Upper([Physicalcity]) Formulas Tab 1 Stores by Name County (group header) =[Stores].[Countyname] + " COUNTY" STORE NAME =Upper([Stores].[Tradename]) STORE ADDRESS =Upper([Stores].[Physicaladdress1]) ZIP CODE =Left([Stores].[Physicalzipcode];5) TELEPHONE # ="("+ Left([Stores].[Telephone];3)+") "+Substr([Stores].[Telephone];4;3)+"- "+Right([Stores].[Telephone];4) Tab 2 Stores by City County (group header) =[Stores].[Countyname] + " COUNTY" STORE NAME =Upper([Stores].[Tradename]) STORE ADDRESS =Upper([Stores].[Physicaladdress1]) ZIP CODE =Left([Stores].[Physicalzipcode];5) TELEPHONE # ="("+ Left([Stores].[Telephone];3)+") "+Substr([Stores].[Telephone];4;3)+"- "+Right([Stores].[Telephone];4) Tab 3 Pharmacies by Name County (group header) =[Pharmacies].[Countyname] + " COUNTY" STORE NAME =Upper([Pharmacies].[Tradename]) STORE ADDRESS =Upper([Pharmacies].[Physicaladdress1]) City =Upper([Pharmacies].[Physicalcity]) ZIP CODE =Left([Pharmacies].[Physicalzipcode];5) 5

6 TELEPHONE # ="("+ Left([Pharmacies].[Telephone];3)+") "+Substr([Pharmacies].[Telephone];4;3)+"- "+Right([Pharmacies].[Telephone];4) Tab 4 Pharmacies by City County (group header) =[Pharmacies].[Countyname] + " COUNTY" City =Upper([Pharmacies].[Physicalcity]) STORE NAME =Upper([Pharmacies].[Tradename]) STORE ADDRESS =Upper([Pharmacies].[Physicaladdress1]) ZIP CODE =Left([Pharmacies].[Physicalzipcode];5) TELEPHONE # ="("+ Left([Pharmacies].[Telephone];3)+") "+Substr([Pharmacies].[Telephone];4;3)+"- "+Right([Pharmacies].[Telephone];4) SQL (changes are highlighted) Stores Query SELECT dbo.v_vendors_by_county.countyname, dbo.vendor.tradename, dbo.v_vendors_by_county.physicaladdress1, dbo.v_vendors_by_county.municipalityname, dbo.v_vendors_by_county.physicalzipcode, dbo.vendor.telephone, dbo.v_vendors_by_county.vendorid FROM dbo.vendor INNER JOIN dbo.v_vendors_by_county ON (dbo.v_vendors_by_county.vendorid=dbo.vendor.vendorid) WHERE ( dbo.vendor.peergroup IN ( 5, 10, 8, 11, 9 ) dbo.vendor.currentstatus = '3' dbo.v_vendors_by_county.countyname County Name(s):','A','Dbo V Vendors By County\Countyname',Multi,Free,Persistent,,User:0) dbo.v_vendors_by_county.vendorid <> '1518' ) Pharmacies Query SELECT dbo.v_vendors_by_county.countyname, dbo.vendor.tradename, dbo.v_vendors_by_county.physicaladdress1, dbo.v_vendors_by_county.physicalcity, dbo.v_vendors_by_county.physicalzipcode, dbo.vendor.telephone FROM dbo.vendor INNER JOIN dbo.v_vendors_by_county ON (dbo.v_vendors_by_county.vendorid=dbo.vendor.vendorid) WHERE ( dbo.vendor.peergroup = 4 6

7 dbo.vendor.currentstatus = '3' dbo.v_vendors_by_county.countyname County Name(s):','A','Dbo V Vendors By County\Countyname',Multi,Free,Persistent,,User:0) ) Colors Dark Blue = 105;130;175 Light Blue = 230;234;242 Dark Blue-Green = 94;138;156 Light Blue-Green =205;219;225 Revisions corrected peer groups; added input controls to allow user to filter by city. How to Use Input Controls In this report template, the user can filter the output by city. After entering PROMPT information and running the report, click the Input Controls icon. The input control affects all tabs of the report. Remove the Select All checkbox and select one or more cities. An Input Controls training module is available on the Infoview Training Modules page of the MDH WIC Website. 7

Missing Scanned Documentation for CSP Formula

Missing Scanned Documentation for CSP Formula MN WIC PROGRAM Missing Scanned Documentation for CSP Formula SCANNED DOCUMENTS REVISED 3.1.17) Report Overview A list and total count of participants who were issued benefits for Condition Specific Protocol

More information

Spot Check Report. Report Overview. Notes. Infoview Report Template Guidance BREASTFEEDING PEER PROGRAM

Spot Check Report. Report Overview. Notes. Infoview Report Template Guidance BREASTFEEDING PEER PROGRAM Report Overview This report has 4 tabs. The first tab is a reference report that can be used to obtain the BF Counselor ID(s) necessary to identify the peer counselors for whom the report should be run.

More information

*The Value IDs are the same for all One Call reports (Future Appointments, Missed Appointments and Missed Pick-ups).

*The Value IDs are the same for all One Call reports (Future Appointments, Missed Appointments and Missed Pick-ups). Report Overview This report is for agencies participating in the One Call automated messaging project and utilizing the Local Use Question (LUQ) in Position 6. One Call: Roster Infoview Report Template

More information

One Call: Missed Appointments

One Call: Missed Appointments Report Overview 1 P age MN Department of Health WIC Program One Call: Missed Appointments This report is for agencies participating in the One Call automated messaging project and utilizing the Local Use

More information

2.19 Software Release Document Addendum

2.19 Software Release Document Addendum 2.19 Software Release Document Addendum Guidance for WIC Users with: Role 10 - LSA Implementation Date: 2/22/2014 2/22/2014 Release 2.19 1 Table of Contents System Administration: Duplicate Participant

More information

One Call: Missed Nutrition Visit

One Call: Missed Nutrition Visit Report Overview This report is for agencies participating in the One Call automated messaging project and utilizing the Local Use Question LUQ in Position 6. A list of participants who belong to the specified

More information

Service Minder Plus Features/Helpful Hints

Service Minder Plus Features/Helpful Hints Service Minder Plus Features/Helpful Hints This manual covers helpful hints and use of features. Note: These items will be addressed during the training sessions. This document is meant to be used as an

More information

Excel 2013 Next Steps

Excel 2013 Next Steps Excel 2013 Next Steps ADULT SERVICES DEPARTMENT CRYSTAL LAKE PUBLIC LIBRARY 126 W. PADDOCK STREET CRYSTAL LAKE, IL 60014 815-459-1687, X7 WWW.CLPL.ORG Agenda 2 Home Toolbar Alignment Group Number Formats

More information

User Guide. Web Intelligence Rich Client. Business Objects 4.1

User Guide. Web Intelligence Rich Client. Business Objects 4.1 User Guide Web Intelligence Rich Client Business Objects 4.1 2 P a g e Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence 4.1... 5 Log into EDDIE...

More information

Creating Mailing Labels (2010)

Creating Mailing Labels (2010) Creating Mailing Labels (2010) The procedure through to printing is a two-stage process. Firstly the client list for the mailing labels is created in Query Builder and then the information is merged within

More information

Processing Private Agency Foster Parent Training Manual Payments. Knowledge Base Article

Processing Private Agency Foster Parent Training Manual Payments. Knowledge Base Article Processing Private Agency Foster Parent Training Manual Payments Knowledge Base Article Table of Contents Overview... 3 Navigating to the Payments Created Screen... 3 Generating Pre-Placement Stipend Payment

More information

Help Contents. Custom Query Builder Functionality Synopsis

Help Contents. Custom Query Builder Functionality Synopsis Help Contents Custom Query Builder Functionality Synopsis... Section : General Custom Query Builder Functions... Section : Query Tool Main Menu Functions... Section : Query Tool Choose Datasource Functions...

More information

My Query Builder Function

My Query Builder Function My Query Builder Function The My Query Builder function is used to build custom SQL queries for reporting information out of the TEAMS system. Query results can be exported to a comma-separated value file,

More information

Furniture Reporting Updated July 2016

Furniture Reporting Updated July 2016 Updated July 2016 Contents About Furniture Reports...3 Open P/Os Not Acknowledged Report...3 O/E Third Party Gross Profit Report...4 P/O Expected Ship Report...5 Quotes Outstanding...6 Vendor Open P/O

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

New Features and Enhancements

New Features and Enhancements chapter 1 New Features and Enhancements Constituent Records.................................................................. 2 Duplicate Constituent Management Tool.................................................

More information

1. First, log into ParishSOFT and you will be at your typical home screen:

1. First, log into ParishSOFT and you will be at your typical home screen: Families overall giving by date range from IQ 1. First, log into ParishSOFT and you will be at your typical home screen: 2. First, in order the run a query in your system you will need your Organization

More information

Guide Event Attendee Management System

Guide Event Attendee Management System Guide Event Attendee Management System Event Attendee Management System (EAMS) Admin Guide Contents Access your event... 2 Setup Event... 2 Create a New Event... 3 Event information... 4 Event contact...

More information

Help Contents. Creating a Query - Synopsis

Help Contents. Creating a Query - Synopsis Help Contents Creating a Query - Synopsis...1 Phase 1: How to Begin a New Query...2 Phase 2: Choosing My Data Source...3 Phase 3: Choosing My Data Fields...4 Choosing My Data Fields - Selecting All Fields...4

More information

Sourcing. Supplier Maintenance and Company Administration Buyer User Guide

Sourcing. Supplier Maintenance and Company Administration Buyer User Guide Sourcing Supplier Maintenance and Company Administration Buyer User Guide Version 6.1 Ion Wave Technologies, Inc. 2002-2008 Table of Contents Table of Contents...2 Welcome to Supplier Maintenance and Company

More information

System Administration: Module 1 - Referrals/Organizations

System Administration: Module 1 - Referrals/Organizations System Administration: Module 1 - Referrals/Organizations SCRIPT Description Text Introduction This is Session 11: Module 1 of the HuBERT On-Demand Training provided by the Minnesota Department of Health

More information

Quick Reference for the FloridaCHARTS Fetal Death Query

Quick Reference for the FloridaCHARTS Fetal Death Query Quick Reference for the FloridaCHARTS Fetal Death Query 1. Toolbar Functions 2. Reports 3. Frequently Asked Questions This application is set up in sections. To use it, you do not have to follow any particular

More information

Using Warner Provider Check

Using Warner Provider Check Using Warner Provider Check T: (800) 801-2300 F: (800) 609-0111 www.warnerpacific.com Warner Pacific Insurance Services 32110 Agoura Road Westlake Village, CA 91361 CA Insurance License No. 0764260 CO

More information

Service Minder Plus Features/Helpful Hints

Service Minder Plus Features/Helpful Hints Service Minder Plus Features/Helpful Hints NOTE: These items will be addressed during the training sessions. This document is meant to be an overview resource for after completion of training. General

More information

Griffin Training Manual Grif-WebI Introduction (For Analysts)

Griffin Training Manual Grif-WebI Introduction (For Analysts) Griffin Training Manual Grif-WebI Introduction (For Analysts) Alumni Relations and Development The University of Chicago Table of Contents Chapter 1: Defining WebIntelligence... 1 Chapter 2: Working with

More information

Using Interactive Reports and Dashboards

Using Interactive Reports and Dashboards Using Interactive Reports and Dashboards Typical interactive features Use onscreen filters to modify a dashboard or report and choose whether to see all or only some of the data available. The screen will

More information

TAI Indicator Database User Instructions for Version 1.0

TAI Indicator Database User Instructions for Version 1.0 TAI Indicator Database User Instructions for Version 1.0 Table of Contents QUICK HELP... 4 How do I get started?...4 Where can I find research guidelines and background information for this assessment?...5

More information

Add notes to a document

Add notes to a document Add notes to a document WX and AX Add notes to a document ApplicationXtender Web Access (WX) and ApplicationXtender Document Manager (AX) In ApplicationXtender, you can mark up a document using the annotation

More information

Columbia University InfoView Reports

Columbia University InfoView Reports Columbia University InfoView Reports To access Enterprise Reporting information, go to http://enterprisereporting.cuit.columbia.edu/ Purpose: The purpose of this job aid is to provide you with guidance

More information

Reminder/Recall Notices

Reminder/Recall Notices From the Reports menu option, you may generate reminder and recall notices, which include letters, cards, address labels, client listings, and downloadable text files. Generation of reminder and recall

More information

QUERY USER MANUAL Chapter 7

QUERY USER MANUAL Chapter 7 QUERY USER MANUAL Chapter 7 The Spectrum System PeopleSoft Financials Version 7.5 1. INTRODUCTION... 3 1.1. QUERY TOOL... 3 2. OPENING THE QUERY TOOL... 4 3. THE QUERY TOOL PANEL... 5 3.1. COMPONENT VIEW

More information

How to Mail Merge a file with Microsoft Word 2003

How to Mail Merge a file with Microsoft Word 2003 2003 February 2005 How to create a query in SOS, export the report to a Text file and then use the report to do a mail merge with Microsoft Word 2003. The same example applies to any of the export options

More information

Excel Tools for Internal Auditing

Excel Tools for Internal Auditing Excel Tools for Internal Auditing BONNIE MAXFIELD SMITH COUNTY INTERNAL AUDITOR Data Process Obtain Data Data Import Format Text to Columns Concatenate Macros Compare /Analyze IF Function Subtotal Random

More information

User Manual Mail Merge

User Manual Mail Merge User Manual Mail Merge Version: 1.0 Mail Merge Date: 27-08-2013 How to print letters using Mail Merge You can use Mail Merge to create a series of documents, such as a standard letter that you want to

More information

Note: You can click the black arrow in the upper righthand corner to close and reopen the Navigation Pane. 2. Click the New Worklist button.

Note: You can click the black arrow in the upper righthand corner to close and reopen the Navigation Pane. 2. Click the New Worklist button. This Desktop Procedure demonstrates the steps for creating an Issue Worklist and an Activity Worklist in QIM, viewing the Worklist in the QIM Worklists screen, and exporting the Worklist to an Excel document.

More information

Purchase Order Creating a Manual Purchase Order

Purchase Order Creating a Manual Purchase Order ................................................................................................... Purchase Order Creating a Manual Purchase Order Pharmacy Technology Solutions Issued January 2014 Purchase

More information

Welcome to Cole On-line Help system!

Welcome to Cole On-line Help system! Welcome to Cole On-line Help system! Cole Online is an Internet based information directory that allows fast and efficient access to demographic information about residences and businesses. You can search

More information

Premier ebill Enhancements

Premier ebill Enhancements Premier ebill Enhancements Release Notes July 2013 ebill Consolidation Premier ebill Enhancements The Premier ebill enhancements include: Email Capability of Bill Remittance Slip o Billing foundation accounts

More information

Teacher Connect Progress Report User Guide v

Teacher Connect Progress Report User Guide v Teacher Connect Progress Report User Guide v. 4.4.1 Copyright 2002-2015 eschooldata, LLC All rights reserved. TABLE OF CONTENTS Overview... 3 Accessing Teacher Connect Progress Report... 3 Navigation Row...

More information

PCS Search, Export, and Sort

PCS Search, Export, and Sort , Export, and Sort OVERVIEW PCS offers both a quick and advanced search to help you locate programs and program components. You may then export select data types from the search results titles into a report.

More information

MiVoice Office Call Reporter Quick Reference Guide APRIL 2017 DOCUMENT RELEASE 5.0 QUICK REFERENCE GUIDE

MiVoice Office Call Reporter Quick Reference Guide APRIL 2017 DOCUMENT RELEASE 5.0 QUICK REFERENCE GUIDE MiVoice Office Call Reporter Quick Reference Guide APRIL 2017 DOCUMENT RELEASE 5.0 QUICK REFERENCE GUIDE Quick Reference Guide NOTICE The information contained in this document is believed to be accurate

More information

Learn about the Display options Complete Review Questions and Activities Complete Training Survey

Learn about the Display options Complete Review Questions and Activities Complete Training Survey Intended Audience: Staff members who will be using the AdHoc reporting tools to query the Campus database. Description: To learn filter and report design capabilities available in Campus. Time: 3 hours

More information

Job Aid. Remote Access BAIRS Printing and Saving a Report. Table of Contents

Job Aid. Remote Access BAIRS Printing and Saving a Report. Table of Contents Remote Access BAIRS Printing and Saving a Report Table of Contents Remote Access BAIRS Printing a Report PDF HTML... 2 Remote Access BAIRS Printing a Report Export to PDF Interactive Reporting... 3 Remote

More information

Excel Tables and Pivot Tables

Excel Tables and Pivot Tables A) Why use a table in the first place a. Easy to filter and sort if you only sort or filter by one item b. Automatically fills formulas down c. Can easily add a totals row d. Easy formatting with preformatted

More information

Quick Reference Card - Basic

Quick Reference Card - Basic Process: Business Warehouse reports can be modified to meet the specific needs of the users. The following steps will show you how you can design your report layout to analyze the data. The techniques

More information

New Finance Officer & Staff Training

New Finance Officer & Staff Training New Finance Officer & Staff Training Overview MUNIS includes many programs and tools to allow for the management of the District financials. As newer finance officers and staff, you are charged with understanding,

More information

: Creating a Basic Hyperfind

: Creating a Basic Hyperfind What is a HyperFind query? HyperFind Queries enable users to view a list of employees based on selected filters. For example, you may be only interested in looking at active employees as of today s date

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access Creating Select Queries Norm Downey Chapter 2 pages 173 193 and Chapter 3 pages 218 249 2 1 This PowerPoint uses the Sample Databases on the class website Please download them now

More information

Oracle Eloqua Segments

Oracle Eloqua Segments http://docs.oracle.com Oracle Eloqua Segments User Guide 2017 Oracle Corporation. All rights reserved 08-Dec-2017 Contents 1 Segments Overview 3 1.0.1 Examples 3 1.1 Additional resources 5 2 Creating segments

More information

.txt - Exporting and Importing. Table of Contents

.txt - Exporting and Importing. Table of Contents .txt - Exporting and Importing Table of Contents Export... 2 Using Add Skip... 3 Delimiter... 3 Other Options... 4 Saving Templates of Options Chosen... 4 Editing Information in the lower Grid... 5 Import...

More information

User Guide. Version

User Guide. Version User Guide Version 0.19 2-11-2008 StormPro Max User Guide Page 1 of 69 5/10/2008 Table of Contents 1. Overview... 4 1.1 Definition of StormPro Max Terms... 4 2. Accessing StormPro Max... 5 3. Navigating

More information

Frequency tables Create a new Frequency Table

Frequency tables Create a new Frequency Table Frequency tables Create a new Frequency Table Contents FREQUENCY TABLES CREATE A NEW FREQUENCY TABLE... 1 Results Table... 2 Calculate Descriptive Statistics for Frequency Tables... 6 Transfer Results

More information

Getting Started With the Cisco PAM Desktop Software

Getting Started With the Cisco PAM Desktop Software CHAPTER 3 Getting Started With the Cisco PAM Desktop Software This chapter describes how to install the Cisco PAM desktop client software, log on to Cisco PAM, and begin configuring access control features

More information

Chapter A8: Scheduled reports

Chapter A8: Scheduled reports Chapter A8: Scheduled reports This chapter is aimed at BankLink Administrators All users can set up a report schedule for a client (see Chapter A5). However, only BankLink Administrators can actually generate

More information

etrac Report Builder

etrac Report Builder etrac Guide to etrac Report Builder Version: 2.0 Published: 09/06/2013 Global DMS, 1555 Bustard Road, Suite 300, Lansdale, PA 19446 2014, All Rights Reserved. Table of Contents Introduction to Reporting...

More information

Microsoft Office Word 2013

Microsoft Office Word 2013 Microsoft Office Word 2013 Mail Merge and Creating Forms University Information Technology Services Training, Outreach, Learning Technologies and Video Production Copyright 2014 KSU Department of University

More information

Immigration and Reform Collection System submission Instructions

Immigration and Reform Collection System submission Instructions Immigration and Reform Collection System submission Instructions After you have created an account, activated it, and requested access for the Immigration Reform Collection System you are ready to begin

More information

Skills Funding Agency

Skills Funding Agency Provider Data Self-Assessment Toolkit (PDSAT) v17 User Guide Contents Introduction... 2 Compatibility and prerequisites... 2 1. Installing PDSAT... 3 2. Opening PDSAT... 6 2.1 Opening Screen... 6 2.2 Updates...

More information

Manual Speedy Report. Copyright 2013 Im Softly. All rights reserved.

Manual Speedy Report. Copyright 2013 Im Softly. All rights reserved. 1 Manual Speedy Report 2 Table of Contents Manual Speedy Report... 1 Welcome!... 4 Preparations... 5 Technical Structure... 5 Main Window... 6 Create Report... 7 Overview... 7 Tree View... 8 Query Settings

More information

Intermediate Query for Elementary & Secondary Schools

Intermediate Query for Elementary & Secondary Schools InBegin Intermediate Query for Elementary & Secondary Schools Conference 2017 Session Description: The "TOTAL", "KEEP", "SKIP" commands; printing labels, letters, saving and loading query statements, using

More information

Premier ebill Enhancements

Premier ebill Enhancements Premier ebill Enhancements Release Notes July 1, 2013 ebill Consolidation Premier ebill Enhancements The Premier ebill enhancements include: Email Capability of Bill Remittance Slip o Billing foundation

More information

Libre Writer Exercise - 4

Libre Writer Exercise - 4 Libre Writer Exercise - 4 Aim: Introduction to Writer, importance of Writer as Word Processor, overview of toolbars, saving, accessing files, using help and resources. i). Create a document using the features:

More information

Michigan WIC Connect Mobile App

Michigan WIC Connect Mobile App Michigan WIC Connect Mobile App Getting Started How to get the Michigan WIC Mobile App The Michigan WIC Mobile App is available on both the iphone App Store and Google Play for Android by simply searching

More information

Reports and File Transfers

Reports and File Transfers and File Transfers 2 The Reports link under the Office Management menu allows you to create two different reports: Member Roster Obtain a list of members with a particular PCP Provider Report Obtain a

More information

MiVoice Office Call Reporter Quick Reference Guide SEPTEMBER 2018 DOCUMENT RELEASE 5.1 QUICK REFERENCE GUIDE

MiVoice Office Call Reporter Quick Reference Guide SEPTEMBER 2018 DOCUMENT RELEASE 5.1 QUICK REFERENCE GUIDE MiVoice Office Call Reporter SEPTEMBER 2018 DOCUMENT RELEASE 5.1 QUICK REFERENCE GUIDE NOTICE The information contained in this document is believed to be accurate in all respects but is not warranted

More information

People. Processes. Integrating Globally.

People. Processes. Integrating Globally. People. Processes. Integrating Globally. Course: isupplier for Suppliers Table of Contents Table of Contents Course Introduction...4 L1: Vendor Registration... 6 Register for isupplier using SteelTrack

More information

REPORT WRITER MANUAL (Version 10)

REPORT WRITER MANUAL (Version 10) REPORT WRITER MANUAL (Version 10) 2 Report Writer - Navigation You may access Report Writer by choosing view from your toolbar and selecting Report Writer or by choosing the Report Writer option when you

More information

Shopping Cart: Queries, Personalizations, Filters, and Settings

Shopping Cart: Queries, Personalizations, Filters, and Settings Shopping Cart: Queries, Personalizations, Filters, and Settings on the Shopping Cart Home Page Use this Job Aid to: Learn how to organize the Shopping Cart home page so that it is easier to use. BEFORE

More information

Sorting your Database

Sorting your Database Sue Doogan 10/12/2015 08:41 Sorting your Database You are often asked to put your database into some sort of order, eg alphabetically, numerically or date order. This is easy if you are just being asked

More information

Generating the SAR/Case Review Due Date Report

Generating the SAR/Case Review Due Date Report Overview The SAR/Case Review Due Date Report is a planning tool that assists caseworkers and supervisors in scheduling SARs and Case Reviews within the required timeframes. SACWIS staff has worked closely

More information

Introduction to Qualtrics Research Suite Wednesday, September 19, 2012

Introduction to Qualtrics Research Suite Wednesday, September 19, 2012 Logging in to Qualtrics Introduction to Qualtrics Research Suite Wednesday, September 19, 2012 1. Open a browser and go to http://www.qualtrics.com 2. If you have a Qualtrics account, use it to login.

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

Teacher and Leader Keys Effectiveness System Electronic Platform. Directions for Evaluators in Using the Teacher Keys Effectiveness System DRAFT

Teacher and Leader Keys Effectiveness System Electronic Platform. Directions for Evaluators in Using the Teacher Keys Effectiveness System DRAFT Teacher and Leader Keys Effectiveness System Electronic Platform Directions for Evaluators in Using the DRAFT The contents of this document were developed under a grant from the U. S. Department of Education.

More information

Workshop: Qualitative Data Analysis with Atlas.ti

Workshop: Qualitative Data Analysis with Atlas.ti Workshop: Qualitative Data Analysis with Atlas.ti December 2017 D-Lab Follow-Along (dlab.berkeley.edu) Celia Emmelhainz, Qualitative Research Librarian, UC Berkeley Today s outline: Introductions and overview

More information

Business Objects For End Users BI_BOBJ_200

Business Objects For End Users BI_BOBJ_200 Business Objects For End Users BI_BOBJ_200 Course Content This optional course focuses on how the end user displays and updates a Business Objects report, including an overview of available exporting options.

More information

Acclaim Solaria 5.60 Release Notes

Acclaim Solaria 5.60 Release Notes Acclaim Solaria 5.60 Release Notes 5.60 Release ENHANCEMENTS SYSTEM WIDE CHANGES The title of order/invoice remarks was standardized to Invoice Remarks across all windows and all links to show the remarks

More information

Processing Private Agency Foster Parent Training Manual Payments. Knowledge Base Article

Processing Private Agency Foster Parent Training Manual Payments. Knowledge Base Article Processing Private Agency Foster Parent Training Manual Payments Knowledge Base Article Table of Contents Section 1: Navigating to the Payments Created Screen... 3 Payment Exceptions... 6 Section 2: Searching

More information

Compass Tips and Tricks

Compass Tips and Tricks Search Wizard Compass The search wizard allows you to perform a property search, then choose any or all of the management companies based on your results, and then further allows you to search contacts

More information

Basic Query for Human Resources

Basic Query for Human Resources Basic Query for Human Resources Open browser Log into PeopleSoft Human Resources: Go to: https://cubshr9.clemson.edu/psp/hpprd/?cmd=login Enter your Novell ID and Password Click Sign In Navigation into

More information

Product Reports Daily Sales Analysis Report

Product Reports Daily Sales Analysis Report ................................................................................................... Product Reports Daily Sales Analysis Report Pharmacy Technology Solutions Issued July 2014 Report Builder:

More information

Select a report and click this to view it. Select a report and click this to change it.

Select a report and click this to view it. Select a report and click this to change it. Quick Videos: A tutorial on creating reports. Shows reports you have created.s Not used by the county Reports pre-made by the county Reports pre-made by 4-H Online Shows reports and folders you have deleted.

More information

Secure Transfer Site (STS) User Manual

Secure Transfer Site (STS) User Manual Secure Transfer Site (STS) User Manual (Revised 3/1/12) Table of Contents Basic System Display Information... 3 Command Buttons with Text... 3 Data Entry Boxes Required / Enabled... 3 Connecting to the

More information

Online Evaluation Tool: Dashboards and Reports

Online Evaluation Tool: Dashboards and Reports Slide 1 Online Evaluation Tool: Dashboards and DeLea Payne, Tad Piner Donna Albaugh, Kim Simmons, Robert Sox, Savon Willard, & Beth Ann Williams Welcome to our Online Evaluation Tool: Completing the Teacher

More information

Reporting. Guide: Variable. nightly.

Reporting. Guide: Variable. nightly. Reporting Step-by-Step Guide: There are two types of Buy@Duke reports, Real Time Reports and Historical Reports. The Real Time reports provide real time accesss to transactional data. The Historical Reports

More information

Searching and Favorites in Datatel Web UI 4.3

Searching and Favorites in Datatel Web UI 4.3 Searching and Favorites in Datatel Web UI 4.3 Search Field The Search field uses icons and text prompts (see Figure 1) to switch between Person Search and Form Search. You can click the icon to the left

More information

emerge Help Document Table of Contents

emerge Help Document Table of Contents Table of Contents Logging Into emerge... 2 Navigation Bar... 3 Main Menu... 4 Creating a New Order... 6 Order Checklist... 6 Information... 7 Overview... 8 Geography... 9 List Select... 12 Demographics...

More information

emerge Help Document Table of Contents

emerge Help Document Table of Contents Table of Contents Logging Into emerge... 2 Navigation Bar... 3 Main Menu... 4 My Account... 6 My Information... 6 Manage Lists... 7 Manage Seeds... 8 Search/Add Suppress... 9 Update My Suppress... 10 Creating

More information

Compliance Document Manager User Guide

Compliance Document Manager User Guide Compliance Document Manager User Guide Contents OVERVIEW... 3 SYSTEM REQUIREMENTS... 3 VENDORMATE PASSWORD REQUIREMENTS... 3 LOGIN... 4 THE HOME SCREEN... 5 BA Screening... 5 BA Oversight... 5 My Screening

More information

Stellar Training Guide

Stellar Training Guide Stellar Training Guide v. 2.1 - updated Winter 2008 Stellar Training Guide Table of Contents Getting to Know Stellar 1-5 Accessing Stellar 1-2 Stellar Home Page 3 Stellar Dayparts 4-5 Creating Stellar

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access Creating Queries Norm Downey This PowerPoint uses the Sample Databases on the class website Please download them now 2 1 What is a Query? Queries allow the user to manipulate the

More information

Teacher Connect Progress Report User Guide v

Teacher Connect Progress Report User Guide v Teacher Connect Progress Report User Guide v. 5.9.0 Copyright 2002-2017 eschooldata, LLC All rights reserved. TABLE OF CONTENTS Overview... 3 Accessing Teacher Connect Progress Report... 3 Navigation Row...4

More information

ICDL & OOo BASE. Module Five. Databases

ICDL & OOo BASE. Module Five. Databases ICDL & OOo BASE Module Five Databases BASE Module Goals taken from the Module 5 ICDL Syllabus Module 5 Database requires the candidate to understand some of the main concepts of databases and demonstrates

More information

Identifying Duplicate Persons in SACWIS

Identifying Duplicate Persons in SACWIS This knowledge base article discusses how to use the Identify Duplicate Person functionality in SACWIS to locate potential duplicate person records, research each person s information, and exclude the

More information

Book Report. Activity 2. Objectives. Benchmarks for Technology Standards. Learning Objectives. Before the Computer.

Book Report. Activity 2. Objectives. Benchmarks for Technology Standards. Learning Objectives. Before the Computer. Book Report Objectives Each student will use the Google Docs word processing application to create a template that he or she can use to prepare a book report. Benchmarks for Technology Standards Students

More information

Using Word 2016: A Quick Guide

Using Word 2016: A Quick Guide Using Word 2016: A Quick Guide Prepared by Sali Kaceli http://kaceli.com GETTING STARTED WITH WORD 2016 CREATING A NEW DOCUMENT & THE DOCUMENT GALLERY 1. Open Word 2016 2. Click on Blank Document or click

More information

Microsoft Office Illustrated. Getting Started with Excel 2007

Microsoft Office Illustrated. Getting Started with Excel 2007 Microsoft Office 2007- Illustrated Getting Started with Excel 2007 Objectives Understand spreadsheet software Tour the Excel 2007 window Understand formulas Enter labels and values and use AutoSum Objectives

More information

Quick Reference Guide Hosting WebEx Meetings

Quick Reference Guide Hosting WebEx Meetings Quick Reference Guide Hosting WebEx Meetings You can schedule meetings in advance, or start an instant meeting and invite participants to join you. They do not have to subscribe to WebEx. They simply click

More information

The Basics. As of December 12, 2016

The Basics. As of December 12, 2016 The Basics As of December 12, 2016 Accessing REDCap 1. To access REDCap, enter the URL into your internet browser: https://redcap.wakehealth.edu/ 2. Login using your Medical Center ID and password 3. FAQ

More information

VUEWorks Report Generation Training Packet

VUEWorks Report Generation Training Packet VUEWorks Report Generation Training Packet Thursday, June 21, 2018 Copyright 2017 VUEWorks, LLC. All rights reserved. Page 1 of 53 Table of Contents VUEWorks Reporting Course Description... 3 Generating

More information

Evolution Query Builder Manual

Evolution Query Builder Manual Evolution Query Builder Manual PayData A Vermont Company Working for You! Page 1 of 37 Report Writer Introduction... 3 Creating Customized Reports... 4 Go to Client RW Reports... 4 Reports Tab... 4 Details

More information