IN08_05. Fun With Functions. Marje Fecht, Prowerk Consulting Ltd, Mississauga, ON Canada

Size: px
Start display at page:

Download "IN08_05. Fun With Functions. Marje Fecht, Prowerk Consulting Ltd, Mississauga, ON Canada"

Transcription

1 Fun With Functins Marje Fecht, Prwerk Cnsulting Ltd, Mississauga, ON Canada ABSTRACT Functins can be fun (and useful) if yu knw when, hw, and why t use them. Functins can be frustrating if yu d nt knw the tricks behind them. In this presentatin, we will explre the mst cmmnly used functins t streamline data prcessing and reduce yur prgramming effrt. Yu will learn hw t use summary functins, string functins, cnversin functins, and date functins. We will als explre sme f the 60 functins added t SAS 9. This presentatin will als help yu understand WHERE t use functins, since they are nt just fr the DATA Step. INTRODUCTION The SAS language is rich with functins that enable the savvy prgrammer t handle all f their data transfrmatin and manipulatin needs. Hwever, the wealth f functins des have implicatins: Hw d yu knw which functin t chse when s many are similar? Are there tricks fr using the functins? Shuld yu cnsider replacing ld cde with sme f the new SAS 9 functins? Where can functins be used in yur SAS cde? What is the difference between using Summary functins in the data step versus using Summary Prcedures? This Prceedings paper prvides an verview f the tpics that will be cvered in the presentatin. The detailed PwerPint is available at the presentatin, r frm the authr fllwing the cnference. A QUIZ Befre diving int the tpics, test yur knwledge! 1. What is the value f Q1? C = '' ; *** N blanks at all; Q1 = length( C ); 2. What is the value f Q2? C = ' ' ; *** ONE blank; Q2 = length( C ); 1

2 3. What is the value f Q3? IN08_05 C = 'eight ' ; Q3 = length( C ); 4. What is the value f Q4? m =. ; ** missing; y = 4 ; z = 0 ; ** zer; Q4 = m + y + z; 5. What is the value f Q5? m =. ; ** missing; y = 4 ; z = 0 ; ** zer; Q5 = mean(m -- z ); Hw sure are yu f yur answers? Have yu run int these questins befre? Less than 50% f the audience during my first tw presentatins (cnsisting f nvice, intermediate, and advanced SAS users) gt the crrect answers. The answers are: 1. Q1 = 1 2. Q2 = 1 (Length always returns 1 fr a blank string) 3. Q3 = 5 (Length returns the psitin f the right mst nn-blank character) 4. Q4 =. (numeric missing value) 5. Q5 =. (numeric missing value) SUMMARY FUNCTIONS Key features f mst SAS Summary functins include: ignre arguments cntaining missing data prcess data within an bservatin (rw) f data use the OF keywrd t specify ranges f variables. If yur gal is t summarize data within a clumn (variable), yu shuld cnsider SAS Summary Prcedures such as PROC MEANS r PROC SUMMARY. EXAMPLES The SUM functin prvides the ttal f all nn-missing arguments. m =. ; y = 4 ; z = 0 ; Q1 = sum(m, y, z ); Q2 = sum(f m -- z); 2

3 The abve prgram results in Q1 = 4 and Q2 = 4. Since the variable m cntains a missing value, it is ignred in the cmputatin. T sum an entire list f variables (where the variable rder is dictated by rder within the SAS data set), use the keywrd OF and a duble hyphen. If yu exclude the keywrd OF, SAS will subtract the value negative z frm the value f m and return the result. T determine the number f missing values that are excluded in a cmputatin, use the NMISS functin. m =. ; y = 4 ; z = 0 ; N = N(m, y, z); NMISS = NMISS(m, y, z); The abve prgram results in N = 2 (Number f nn missing values) and NMISS = 1 (number f missing values). TRICKS Listing all f the variables in a summary functin can be time cnsuming. If yu use sme tricks in naming yur variables, yu can use shrtcuts. Fr example, if yu want t ttal all f the variables beginning with the string amt, simply specify OF AMT: as the argument fr the summary functin. AmtGrc = 220 ; AmtCar = 180 ; AmtUtil = 270; Mnth = 12; MthlyAmt = Sum( f Amt:); put MthlyAmt = ; The abve prgram results in MthlyAmt = 670. STRING AND SEARCH FUNCTIONS The SAS Language has a full cmplement f character manipulatin functins, including functins t Search Substring Jin Cmpress and many thers.. COMBINING CHARACTER STRINGS If yu wrk with character data, yu prbably have t cmbine strings r extract strings. The cding can be cumbersme and there are many misunderstandings abut hw the functins wrk. EXAMPLE A standard example f string manipulatin invlves jining a first name, middle initial, and last name. Since all SAS variables are f fixed length, this results in extra blanks in the result by default. Thus, a standard slutin is: data cat; length fn mi ln $10; fn = 'Mary'; mi = ''; ln = 'Smith'; Name = trim(fn) ' ' trim(mi) ' ' ln; put name=; What wuld happen withut the trim functin? Since all SAS variables are f fixed length, Mary is actually stred in fn as Mary fllwed by 6 blanks. The result fr name is Mary Smith (there are tw blanks between Mary and Smith). Unfrtunately, if a persn had n recrded middle initial, the result wuld be 2 blank spaces between first and last names. When in dubt, use TRIMN t remve trailing blanks frm character expressins and return a null string if the expressin is missing. The abve example wuld be cded better as: 3

4 data cat; length fn mi ln $10; fn = 'Mary'; mi = ''; ln = 'Smith'; Name = trimn(fn) trimn(' ' mi ) ' ' ln; put name=; SAS 9 FUNCTIONS Prir t SAS 9, yu prbably used cmplex sequences f functins r steps t accmplish standard tasks. When yu cncatenated 2 character strings, yu likely had t left justify, trim, and include an extra blank t get the prper result. If yu needed t determine the secnd highest value in a list f variables fr each bservatin, yu likely used quite a few cmparative statements r maybe even used a PROC. Mre than 60 analytic and data manipulatin functins were added t SAS 9. Many functins were added t reduce cde cmplexity. Additinally, the lgic behind sme functins was revised t imprve perfrmance (LENGTH and TRIM functins). REDUCE CODE COMPLEXI TY Several character functins were added t reduce the cmplexity f cmmn tasks. Fr example, the CATX functin prvides a straightfrward slutin t jining 2 strings s the result remves leading and trailing blanks and includes a designated character as a separatr. Versin 8 Slutin: Cmbine = trim(left(char1)) ' ' left(char2); SAS 9 Slutin: Cmbine = CATX(' ', Char1, Char2); If yu used repetitive INDEX and SUBSTR functins t determine hw many times a wrd ccurs in a character string, that task can be accmplished mre easily in Versin 9. The COUNT functin determines the number f times argument 2 ccurs in argument 1. SUBSTR has always been an effective functin fr extracting (r replacing) a prtin f a character string. Tw variatins f SUBSTR are available in SAS 9: CHAR - t extract a single character frm a text string JustOne = CHAR(String, 5); FIRST t grab just the first character frm a text string Initial = FIRST(name); If yu need t strip bth leading and trailing blanks frm a string, yu can skip using the LEFT and TRIM functins and just use the new STRIP functin. COMPUTING STATISTICS OR QUANTITIES If yu wrk frequently with Medians r Percentiles, yu can nw btain thse quantities in the DATA step. The MEDIAN functin determines the median f nn-missing values. The PCTL functin accepts a percentage fr argument 1 t specify the percentile f interest. The functin then cmputes the percentile fr the list f values. If yu need t find the secnd largest value in a list f values, r perhaps the third smallest value, the LARGEST and SMALLEST functins are available. In additin t supplying a list f values, yu supply which placement yu are lking fr. ThirdLargest = LARGEST(3, a, b, c, d, e, f); 4

5 WHERE TO USE FUNCTIONS D yu typically create a subset f yur data befre prcessing the data in a PROC? If yu answered YES, yu may be reading yur data twice unnecessarily. Mst functins can be used in a WHERE statement which means a lt f prcessing can ccur in PROCs. Suppse yu want t lk at all July sales. Instead f a tw-step subset print prcess, yu can handle the subsetting in the same step as the print. prc print data=sashelp.retail; where mnth(date) = 7; title 'Sandal Sales in July'; If the abve example were handled as a DATA step t subset, fllwed by a PROC step t Print, the data wuld have been prcessed twice. If yu wrk with large vlumes f data, the savings in resurces wuld be cnsiderable. CONCLUSION Befre yu write messy cde t slve yur data transfrmatin/manipulatin needs, review the existing functins. Yu may be able t slve mst tasks in ne line rather than many, which will als make yur cde easier t understand (and thus easier t inherit ). REFERENCES The SAS nline dcumentatin prvides bth syntax and examples fr all f the available functins. CONTACT INFORMATION Yur cmments and questins are valued and encuraged. Cntact the authr at: Marje Fecht Prwerk Cnsulting marje.fecht@prwerk.cm Web: SAS and all ther SAS Institute Inc. prduct r service names are registered trademarks r trademarks f SAS Institute Inc. in the USA and ther cuntries. indicates USA registratin. Other brand and prduct names are trademarks f their respective cmpanies. 5

CSE 231 Fall 2015 Computer Project #4

CSE 231 Fall 2015 Computer Project #4 CSE 231 Fall 2015 Cmputer Prject #4 Assignment Overview This assignment fcuses n the design, implementatin and testing f a Pythn prgram that uses character strings fr data decmpressin. It is wrth 45 pints

More information

THE CUSTOMER SUPPORT KNOWLEDGE BASE FAQ

THE CUSTOMER SUPPORT KNOWLEDGE BASE FAQ THE CUSTOMER SUPPORT KNOWLEDGE BASE FAQ What is the Knwledge Base? - The Knwledge Base (r KB) is a searchable database in which different dcument types f technical dcumentatin are aggregated. These vary

More information

The ad hoc reporting feature provides a user the ability to generate reports on many of the data items contained in the categories.

The ad hoc reporting feature provides a user the ability to generate reports on many of the data items contained in the categories. 11 This chapter includes infrmatin regarding custmized reprts that users can create using data entered int the CA prgram, including: Explanatin f Accessing List Screen Creating a New Ad Hc Reprt Running

More information

Access EEC s Web Applications... 2 View Messages from EEC... 3 Sign In as a Returning User... 3

Access EEC s Web Applications... 2 View Messages from EEC... 3 Sign In as a Returning User... 3 EEC Single Sign In (SSI) Applicatin The EEC Single Sign In (SSI) Single Sign In (SSI) is the secure, nline applicatin that cntrls access t all f the Department f Early Educatin and Care (EEC) web applicatins.

More information

BRILL s Editorial Manager (EM) Manual for Authors Table of Contents

BRILL s Editorial Manager (EM) Manual for Authors Table of Contents BRILL s Editrial Manager (EM) Manual fr Authrs Table f Cntents Intrductin... 2 1. Getting Started: Creating an Accunt... 2 2. Lgging int EM... 3 3. Changing Yur Access Cdes and Cntact Infrmatin... 3 3.1

More information

Times Table Activities: Multiplication

Times Table Activities: Multiplication Tny Attwd, 2012 Times Table Activities: Multiplicatin Times tables can be taught t many children simply as a cncept that is there with n explanatin as t hw r why it is there. And mst children will find

More information

TRAINING GUIDE. Crystal Reports for Work

TRAINING GUIDE. Crystal Reports for Work TRAINING GUIDE Crystal Reprts fr Wrk Crystal Reprts fr Wrk Orders This guide ges ver particular steps and challenges in created reprts fr wrk rders. Mst f the fllwing items can be issues fund in creating

More information

How to put together a Workforce Development Fund (WDF) claim 2015/16

How to put together a Workforce Development Fund (WDF) claim 2015/16 Index Page 2 Hw t put tgether a Wrkfrce Develpment Fund (WDF) claim 2015/16 Intrductin What eligibility criteria d my establishment/s need t meet? Natinal Minimum Data Set fr Scial Care (NMDS-SC) and WDF

More information

Data Analytics for Campaigns Assignment 1: Jan 6 th, 2015 Due: Jan 13 th, 2015

Data Analytics for Campaigns Assignment 1: Jan 6 th, 2015 Due: Jan 13 th, 2015 Data Analytics fr Campaigns Assignment 1: Jan 6 th, 2015 Due: Jan 13 th, 2015 These are sample questins frm a hiring exam that was develped fr OFA 2012 Analytics team. Plan n spending n mre than 4 hurs

More information

Copyrights and Trademarks

Copyrights and Trademarks Cpyrights and Trademarks Sage One Accunting Cnversin Manual 1 Cpyrights and Trademarks Cpyrights and Trademarks Cpyrights and Trademarks Cpyright 2002-2014 by Us. We hereby acknwledge the cpyrights and

More information

In this lab class we will approach the following topics:

In this lab class we will approach the following topics: Department f Cmputer Science and Engineering 2013/2014 Database Administratin and Tuning Lab 8 2nd semester In this lab class we will apprach the fllwing tpics: 1. Query Tuning 1. Rules f thumb fr query

More information

Understanding Federal Direct Consolidation Loans. 2012 Spring MASFAA Conference

Understanding Federal Direct Consolidation Loans. 2012 Spring MASFAA Conference Understanding Federal Direct Cnslidatin Lans 2012 Spring MASFAA Cnference UNDERSTANDING FEDERAL DIRECT & SPECIAL CONSOLIDATION LOANS Amy M. Mser, Reginal Directr Nelnet Educatin Lan Services 2 Nelnet Educatin

More information

Enrollee Health Assessment Program Implementation Guide and Best Practices

Enrollee Health Assessment Program Implementation Guide and Best Practices Enrllee Health Assessment Prgram Implementatin Guide and Best Practices March 2015 033129 (03-2015) This guide will help yu answer these questins: What is the Enrllee Health Assessment (EHA) prgram and

More information

Frequently Asked Questions About I-9 Compliance

Frequently Asked Questions About I-9 Compliance Frequently Asked Questins Abut I-9 Cmpliance What is required t verify wrk authrizatin? The basic requirement t verify wrk authrizatin is the Frm I-9. This frm is available n the HR website: http://www.fit.edu/hr/dcuments/frms/i-9.pdf

More information

The Ohio Board of Regents Credit When It s Due process identifies students who

The Ohio Board of Regents Credit When It s Due process identifies students who Credit When It s Due/ Reverse Transfer FAQ fr students Ohi is participating in a natinal grant initiative, Credit When It s Due, designed t implement reverse-transfer, which is a prcess t award assciate

More information

What payments will I need to make during the construction phase? Will the lender advance construction funds prior to the work being completed?

What payments will I need to make during the construction phase? Will the lender advance construction funds prior to the work being completed? Q&A What is a cnstructin lan? A cnstructin lan prvides the financing fr the cnstructin f yur new hme. Cnstructin lans may be structured as a single r tw-settlement transactin. Cnstructin lans culd include

More information

David Drivers Revit One-sheets: Linked Project Positioning and shared coordinates

David Drivers Revit One-sheets: Linked Project Positioning and shared coordinates This paper discusses the fllwing features f Revit Building Shared Crdinates Named lcatins Publish and acquire Vs Saving lcatins Shared Crdinates and wrkset enabled files Revisin 1 (Versin 9.0) David Driver.

More information

Group Term Life Insurance: Table I Straddle Testing and Imputed Income for Dependent Life Insurance

Group Term Life Insurance: Table I Straddle Testing and Imputed Income for Dependent Life Insurance An American Benefits Cnsulting White Paper American Benefits Cnsulting, LLC 99 Park Ave, 25 th Flr New Yrk, NY 10016 212 716-3400 http://www.abcsys.cm Grup Term Life Insurance: Table I Straddle Testing

More information

A Walk on the Human Performance Side Part I

A Walk on the Human Performance Side Part I A Walk n the Human Perfrmance Side Part I Perfrmance Architects have a license t snp. We are in the business f supprting ur client rganizatins in their quest fr results that meet r exceed gals. We accmplish

More information

Personal Selling. Lesson 22. 22.1 Objectives. 22.2 Meaning of Personal Selling

Personal Selling. Lesson 22. 22.1 Objectives. 22.2 Meaning of Personal Selling Persnal Selling Lessn 22 Persnal Selling When yu want t buy smething yu usually g t a cncerned shp and purchase it frm there. But, smetimes yu find peple bring certain gds r prducts and make them available

More information

Optimal Payments Extension. Supporting Documentation for the Extension Package. 20140225 v1.1

Optimal Payments Extension. Supporting Documentation for the Extension Package. 20140225 v1.1 Optimal Payments Extensin Supprting Dcumentatin fr the Extensin Package 20140225 v1.1 Revisin Histry v1.1 Updated Demac Media branding v1.0 Initial Dcument fr Distributin supprt@ptimalpayments.cm Page

More information

A Journey from data to dashboard: Visualizing the university instructional classroom utilization and diversity trends with SAS Visual Analytics

A Journey from data to dashboard: Visualizing the university instructional classroom utilization and diversity trends with SAS Visual Analytics SESUG 2015 Paper RIV125 A Jurney frm data t dashbard: Visualizing the university instructinal classrm utilizatin and diversity trends with SAS Visual Analytics ABSTRACT Shweta Dshi, Office f Institutinal

More information

DIRECT DATA EXPORT (DDE) USER GUIDE

DIRECT DATA EXPORT (DDE) USER GUIDE 2 ND ANNUAL PSUG-NJ CONFERNCE PSUG-NJ STUDENT MANAGEMENT SYSTEM DIRECT DATA EXPORT (DDE) USER GUIDE VERSION 7.6+ APRIL, 2013 FOR USE WITH POWERSCHOOL PREMIER VERSION 7.6+ Prepared by: 2 TABLE OF CONTENTS

More information

How To Install Fcus Service Management Software On A Pc Or Macbook

How To Install Fcus Service Management Software On A Pc Or Macbook FOCUS Service Management Sftware Versin 8.4 fr Passprt Business Slutins Installatin Instructins Thank yu fr purchasing Fcus Service Management Sftware frm RTM Cmputer Slutins. This bklet f installatin

More information

Succession Planning & Leadership Development: Your Utility s Bridge to the Future

Succession Planning & Leadership Development: Your Utility s Bridge to the Future Successin Planning & Leadership Develpment: Yur Utility s Bridge t the Future Richard L. Gerstberger, P.E. TAP Resurce Develpment Grup, Inc. 4625 West 32 nd Ave Denver, CO 80212 ABSTRACT A few years ag,

More information

GED MATH STUDY GUIDE. Last revision July 15, 2011

GED MATH STUDY GUIDE. Last revision July 15, 2011 GED MATH STUDY GUIDE Last revisin July 15, 2011 General Instructins If a student demnstrates that he r she is knwledgeable n a certain lessn r subject, yu can have them d every ther prblem instead f every

More information

PBS TeacherLine Course Syllabus

PBS TeacherLine Course Syllabus 1 Title Fstering Cperative Learning, Discussin, and Critical Thinking in Elementary Math (Grades 1-5) Target Audience This curse is intended fr pre-service and in-service grades 1-5 teachers. Curse Descriptin

More information

HIPAA 5010 Implementation FAQs for Health Care Professionals

HIPAA 5010 Implementation FAQs for Health Care Professionals HIPAA 5010 Implementatin FAQs fr Health Care Prfessinals Updated September 27, 2012 Key Messages In January 2009, the Department f Health and Human Services published the final rule cntaining the requirements

More information

Live Analytics for Kaltura Live Streaming Information Guide. Version: Jupiter

Live Analytics for Kaltura Live Streaming Information Guide. Version: Jupiter Live Analytics fr Kaltura Live Streaming Infrmatin Guide Versin: Jupiter Kaltura Business Headquarters 250 Park Avenue Suth, 10th Flr, New Yrk, NY 10003 Tel.: +1 800 871 5224 Cpyright 2015 Kaltura Inc.

More information

WSI White Paper. Prepared by: Feras Alhlou Web Analytics Expert, WSI

WSI White Paper. Prepared by: Feras Alhlou Web Analytics Expert, WSI Optimize Yur Marketing Dllars During The Recessin WSI White Paper Prepared by: Feras Alhlu Web Analytics Expert, WSI Intrductin We have heard it many times, an ld management and marketing saying: Yu Can

More information

WHITEPAPER SERIES. info@metavistech.com 610.717.0413 www.metavistech.com

WHITEPAPER SERIES. info@metavistech.com 610.717.0413 www.metavistech.com WHITEPAPER SERIES Shredded Strage in SharePint 2013 What des Shredded Strage mean, hw much des it actually save and hw t take advantage f it in SharePint 2013. What is Shredded Strage? Shredded Strage

More information

Visualization of Student Migration Data Using Google Charts Sankey Diagrams

Visualization of Student Migration Data Using Google Charts Sankey Diagrams Visualizatin f Student Migratin Data Using Ggle Charts Sankey Diagrams Sean V. Hffman Institutinal Research Analyst Office f Institutinal Research, Planning & Effectiveness GOALS Gals T learn the basics

More information

ICD-10 Frequently Asked Questions: (resource CMS website)

ICD-10 Frequently Asked Questions: (resource CMS website) ICD-10 Frequently Asked Questins: (resurce CMS website) 1. Will ICD-9-CM cdes be accepted n claims with FROM dates f service r dates f discharge/through dates n r after Octber 1, 2015? N. ICD-9-CM cdes

More information

By offering the Study Abroad Scholarship, we hope to make your study abroad experience much more affordable!

By offering the Study Abroad Scholarship, we hope to make your study abroad experience much more affordable! Internatinal Educatin Prgrams is pleased t annunce a Study Abrad Schlarship fr Seattle Central Cmmunity Cllege students. The schlarship has been established by the Internatinal Educatin Prgrams divisin

More information

How to Reduce Project Lead Times Through Improved Scheduling

How to Reduce Project Lead Times Through Improved Scheduling Hw t Reduce Prject Lead Times Thrugh Imprved Scheduling PROBABILISTIC SCHEDULING & BUFFER MANAGEMENT Cnventinal Prject Scheduling ften results in plans that cannt be executed and t many surprises. In many

More information

Topic: Import MS Excel data into MS Project Tips & Troubleshooting

Topic: Import MS Excel data into MS Project Tips & Troubleshooting Tpic: Imprt MS Excel data int MS Prject Tips & Trubleshting by Ellen Lehnert, MS Prject MVP, PMP, MCT, MCP www.lehnertcs.cm April, 2014 There are several things yu shuld be aware f regarding the imprt

More information

Table of Contents. Welcome to Employee Self Service... 3 Who Do I Call For Help?... 3

Table of Contents. Welcome to Employee Self Service... 3 Who Do I Call For Help?... 3 ALABAMA STATE UNIVERSITY HUMAN RESOURCES EMPLOYEE SELF SERVICE USER GUIDE 2 Table f Cntents Welcme t Emplyee Self Service... 3 Wh D I Call Fr Help?... 3 Hw d I access Emplyee Self Service?... 4 Persnal

More information

Oracle Social Relationship Management Professional Services Descriptions. July 23, 2015

Oracle Social Relationship Management Professional Services Descriptions. July 23, 2015 Oracle Scial Relatinship Management Prfessinal Services Descriptins July 23, 2015 TABLE OF CONTENTS ORACLE SOCIAL ENGAGEMENT & MONITORING: ONE-TIME SET-UP & TRAINING 3 SOCIAL ENGAGEMENT AND MONITORING

More information

Kronos Workforce Timekeeper Frequently Asked Questions

Kronos Workforce Timekeeper Frequently Asked Questions Krns Wrkfrce Timekeeper Frequently Asked Questins 1. I d nt have the Emplyee Time Reprting ptin listed in my Agra menu. What d I d? If yu are a new emplyee and can t see yur emplyee timecard, cnfirm with

More information

Note: The designation of a Roommate is determined from the Occupants table. Roommate checkbox must be checked.

Note: The designation of a Roommate is determined from the Occupants table. Roommate checkbox must be checked. MultiSite Feature: Renters Insurance Versin 2 with Rmmates Renter s Insurance infrmatin can be tracked n each resident and rmmate, including insurance histry. Infrmatin can be edited in the Renters Insurance

More information

How much life insurance do I need? Wrong question!

How much life insurance do I need? Wrong question! Hw much life insurance d I need? Wrng questin! We are ften asked this questin r sme variatin f it. We believe it is NOT the right questin t ask. What yu REALLY need is mney, cash. S the questin shuld be

More information

efusion Table of Contents

efusion Table of Contents efusin Cst Centers, Partner Funding, VAT/GST and ERP Link Table f Cntents Cst Centers... 2 Admin Setup... 2 Cst Center Step in Create Prgram... 2 Allcatin Types... 3 Assciate Payments with Cst Centers...

More information

Net Conferencing User Guide: Advanced and Customized Net Conference with Microsoft Office Live Meeting Event Registration

Net Conferencing User Guide: Advanced and Customized Net Conference with Microsoft Office Live Meeting Event Registration Net Cnferencing User Guide: Advanced and Custmized Net Cnference with Micrsft Office Live Meeting Event Registratin Event Registratin User Guide Event Registratin is a feature f Advanced and Custmized

More information

CCHIIM ICD-10 Continuing Education Requirements for AHIMA Certified Professionals (& Frequently Asked Questions for Recertification)

CCHIIM ICD-10 Continuing Education Requirements for AHIMA Certified Professionals (& Frequently Asked Questions for Recertification) CCHIIM ICD-10 Cntinuing Educatin Requirements fr AHIMA Certified Prfessinals (& Frequently Asked Questins fr Recertificatin) The transitin t ICD-10-CM and ICD-10-PCS is anticipated t imprve the capture

More information

Hearing Loss Regulations Vendor information pack

Hearing Loss Regulations Vendor information pack Hearing Lss Regulatins Vendr infrmatin pack Nvember 2010 Implementing the Accident Cmpensatin (Apprtining Entitlements fr Hearing Lss) Regulatins 2010 The Minister fr ACC, the Hn. Dr Nick Smith, has annunced

More information

April 29, 2013 INTRODUCTION ORGANIZATIONAL OVERVIEW PROJECT OVERVIEW

April 29, 2013 INTRODUCTION ORGANIZATIONAL OVERVIEW PROJECT OVERVIEW April 29, 2013 INTRODUCTION The Mid-Atlantic Reginal Air Management Assciatin, Inc (MARAMA) is seeking t engage a cntractr t assist in updating f MARAMA s current website sftware and mve the website t

More information

HR Management Information (HRS)

HR Management Information (HRS) HR Management Infrmatin (HRS) Fact Sheet N 10. Managing Access t Claims Online T give access t ther departmental staff yu must be a Site Leader ie a Principal r Preschl Directr. If yu are nt a site leader

More information

Research Report. Abstract: The Emerging Intersection Between Big Data and Security Analytics. November 2012

Research Report. Abstract: The Emerging Intersection Between Big Data and Security Analytics. November 2012 Research Reprt Abstract: The Emerging Intersectin Between Big Data and Security Analytics By Jn Oltsik, Senir Principal Analyst With Jennifer Gahm Nvember 2012 2012 by The Enterprise Strategy Grup, Inc.

More information

Licensing Windows Server 2012 for use with virtualization technologies

Licensing Windows Server 2012 for use with virtualization technologies Vlume Licensing brief Licensing Windws Server 2012 fr use with virtualizatin technlgies (VMware ESX/ESXi, Micrsft System Center 2012 Virtual Machine Manager, and Parallels Virtuzz) Table f Cntents This

More information

UNIVERSITY OF CALIFORNIA MERCED PERFORMANCE MANAGEMENT GUIDELINES

UNIVERSITY OF CALIFORNIA MERCED PERFORMANCE MANAGEMENT GUIDELINES UNIVERSITY OF CALIFORNIA MERCED PERFORMANCE MANAGEMENT GUIDELINES REFERENCES AND RELATED POLICIES A. UC PPSM 2 -Definitin f Terms B. UC PPSM 12 -Nndiscriminatin in Emplyment C. UC PPSM 14 -Affirmative

More information

Implementing ifolder Server in the DMZ with ifolder Data inside the Firewall

Implementing ifolder Server in the DMZ with ifolder Data inside the Firewall Implementing iflder Server in the DMZ with iflder Data inside the Firewall Nvell Cl Slutins AppNte www.nvell.cm/clslutins JULY 2004 OBJECTIVES The bjectives f this dcumentatin are as fllws: T cnfigure

More information

Oracle Social Engagement & Monitoring Professional Services Descriptions. July 23, 2015

Oracle Social Engagement & Monitoring Professional Services Descriptions. July 23, 2015 Oracle Scial Engagement & Mnitring Prfessinal Services Descriptins July 23, 2015 TABLE OF CONTENTS ORACLE SOCIAL ENGAGEMENT & MONITORING: ONE-TIME SET-UP & TRAINING 2 SOCIAL ENGAGEMENT AND MONITORING CONSULTING

More information

STIOffice Integration Installation, FAQ and Troubleshooting

STIOffice Integration Installation, FAQ and Troubleshooting STIOffice Integratin Installatin, FAQ and Trubleshting Installatin Steps G t the wrkstatin/server n which yu have the STIDistrict Net applicatin installed. On the STI Supprt page at http://supprt.sti-k12.cm/,

More information

STUDIO DESIGNER. Accounting 3 Participant

STUDIO DESIGNER. Accounting 3 Participant Accunting 3 Participant Thank yu fr enrlling in Accunting 3 fr Studi Designer and Studi Shwrm. Please feel free t ask questins as they arise. If we start running shrt n time, we may hld ff n sme f them

More information

Tableau Advanced 2-Day Class

Tableau Advanced 2-Day Class Tableau Advanced 2-Day Class Curse Duratin: 2 Days Audience: This tw day curse is designed t prvide yu with the skills required t becme a Tableau pwer user. The curse is designed fr the prfessinal wh has

More information

1 GETTING STARTED. 5/7/2008 Chapter 1

1 GETTING STARTED. 5/7/2008 Chapter 1 5/7/2008 Chapter 1 1 GETTING STARTED This chapter intrduces yu t the web-based UIR menu system. Infrmatin is prvided abut the set up necessary t assign users permissin t enter and transmit data. This first

More information

Loss Share Data Specifications Change Management Plan

Loss Share Data Specifications Change Management Plan Lss Share Data Specificatins Change Management Plan Last Updated: 2/27/2013 Table f Cntents I. Purpse... 3 II. Change Management Apprach... 3 III. Categries f Revisins... 4 IV. Help and Supprt... 6 Lss

More information

Project Management Fact Sheet:

Project Management Fact Sheet: Prject Fact Sheet: Managing Small Prjects Versin: 1.2, Nvember 2008 DISCLAIMER This material has been prepared fr use by Tasmanian Gvernment agencies and Instrumentalities. It fllws that this material

More information

1)What hardware is available for installing/configuring MOSS 2010?

1)What hardware is available for installing/configuring MOSS 2010? 1)What hardware is available fr installing/cnfiguring MOSS 2010? 2 Web Frnt End Servers HP Prliant DL 380 G7 2 quad cre Intel Xen Prcessr E5620, 2.4 Ghz, Memry 12 GB, 2 HP 146 GB drives RAID 5 2 Applicatin

More information

Ad Hoc Reporting: Query Building Tyler SIS Version 10.5

Ad Hoc Reporting: Query Building Tyler SIS Version 10.5 Mdule: Tpic: Ad Hc Reprting Ad Hc Reprting Basics Ad Hc Reprting: Query Building Tyler SIS Versin 10.5 Cntents OBJECTIVE... 1 OVERVIEW... 2 PREREQUISITES... 2 PROCEDURES... 3 THE COLUMN LISTING LANDSCAPE...

More information

Training Efficiency: Optimizing Learning Technology

Training Efficiency: Optimizing Learning Technology Ideas & Insights frm 2008 Training Efficiency Masters Series Survey Results Training Efficiency: Optimizing Learning Technlgy trainingefficiency.cm Survey Results: Training Efficiency: Optimizing Learning

More information

3/2 MBA Application Instructions

3/2 MBA Application Instructions 3/2 MBA Applicatin Instructins IMPORTANT INFORMATION Deadlines fr admissin are psted t the 3/2 MBA website. Applicatins are encuraged t be submitted by Nvember 1 f the Junir year. Please nte that all required

More information

990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free.

990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free. 990 e-pstcard FAQ Fr frequently asked questins abut filing the e-pstcard that are nt listed belw, brwse the FAQ at http://epstcard.frm990.rg/frmtsfaq.asp# (cpy and paste this link t yur brwser). General

More information

CRT205: CRITICAL THINKING

CRT205: CRITICAL THINKING CRT205: CRITICAL THINKING COURSE SYLLABUS Curse Start Date: 7/23/12 Curse End Date: 9/23/12 Cpyright Cpyright 2012, 2009, 2007, 2006 by University f Phenix. All rights reserved. University f Phenix is

More information

FundingEdge. Guide to Business Cash Advance & Bank Statement Loan Programs

FundingEdge. Guide to Business Cash Advance & Bank Statement Loan Programs Guide t Business Cash Advance & Bank Statement Lan Prgrams Cash Advances: $2,500 - $1,000,000 Business Bank Statement Lans: $5,000 - $500,000 Canada Cash Advances: $5,000 - $500,000 (must have 9 mnths

More information

AMWA Chapter Subgroups on LinkedIn Guidance for Subgroup Managers and Chapter Leaders, updated 2-12-15

AMWA Chapter Subgroups on LinkedIn Guidance for Subgroup Managers and Chapter Leaders, updated 2-12-15 AMWA Chapter Subgrups n LinkedIn Guidance fr Subgrup Managers and Chapter Leaders, updated 2-12-15 1. Chapters may nt have an independent grup n LinkedIn, Facebk, r ther scial netwrking site. AMWA prvides

More information

CSAT Account Management

CSAT Account Management CSAT Accunt Management User Guide March 2011 Versin 2.1 U.S. Department f Hmeland Security 1 CSAT Accunt Management User Guide Table f Cntents 1. Overview... 1 1.1 CSAT User Rles... 1 1.2 When t Update

More information

Entering Patient Data into the SDRN/ SCI-Diabetes Research Register

Entering Patient Data into the SDRN/ SCI-Diabetes Research Register Entering Patient Data int the SDRN/ SCI-Diabetes Research Register Clinical S.O.P. N.: 25 Versin 2.0 Cmpiled by: Apprved by: Review date: Nvember 2016 Entering Patient Data int the SDRN/SCI-Diabetes S.O.P.

More information

SERVICES BEST PRACTICES

SERVICES BEST PRACTICES SERVICES SERVICES SERVICES BEST PRACTICES WHEN TO ENGAGE US Nt every study requires advanced prgramming and executin. Nt every team needs skills that are called upn nly infrequently. That s why CfMC partners

More information

Best Practices on Monitoring Hotel Review Sites By Max Starkov and Mariana Mechoso Safer

Best Practices on Monitoring Hotel Review Sites By Max Starkov and Mariana Mechoso Safer January 2008 Best Practices n Mnitring Htel Review Sites By Max Starkv and Mariana Mechs Safer Hteliers ften ask HeBS hw they can mnitr the Internet chatter surrunding their htels and whether r nt they

More information

Tipsheet: Sending Out Mass Emails in ApplyYourself

Tipsheet: Sending Out Mass Emails in ApplyYourself GEORGETOWN GRADUATE SCHOOL Tipsheet: Sending Out Mass Emails in ApplyYurself In ApplyYurself (AY), it is very simple and easy t send a mass email t all f yur prspects, applicants, r students with applicatins

More information

Time is Money Profiting from Reduced Cycle Time

Time is Money Profiting from Reduced Cycle Time Time is Mney Prfiting frm Reduced Cycle Time Yur retail custmers are demanding smaller, mre frequent shipments, which increases yur cst-t-serve them. While this makes their inventry mre predictable and

More information

Talking to parents about child protection

Talking to parents about child protection Talking t parents abut child prtectin Adapted fr NI frm Prtecting Children Update, April 2009 Jenni Whitehead discusses the difficulties faced by designated teachers, r child prtectin crdinatrs, in talking

More information

ARE YOU INTERESTED IN THE PRIOR LEARNING ASSESSMENT (PLA) PROGRAM?

ARE YOU INTERESTED IN THE PRIOR LEARNING ASSESSMENT (PLA) PROGRAM? ARE YOU INTERESTED IN THE PRIOR LEARNING ASSESSMENT (PLA) PROGRAM? City University f Seattle recgnizes that learning ccurs in many different ways and under varied circumstances. As a result, the University

More information

Improved Data Center Power Consumption and Streamlining Management in Windows Server 2008 R2 with SP1

Improved Data Center Power Consumption and Streamlining Management in Windows Server 2008 R2 with SP1 Imprved Data Center Pwer Cnsumptin and Streamlining Management in Windws Server 2008 R2 with SP1 Disclaimer The infrmatin cntained in this dcument represents the current view f Micrsft Crpratin n the issues

More information

Create a Non-Catalog Requisition

Create a Non-Catalog Requisition Create a Nn-Catalg Requisitin Jb Aid This jb aid describes hw t create a standard nn-catalg (i.e., nn-ibuynu) purchase request. REFER TO ADDITIONAL TRAINING GUIDES If yu need t create a special requisitin

More information

Agency Fund (Non-Student Org X-Fund) Guidelines Last Revision: 12/7/2009

Agency Fund (Non-Student Org X-Fund) Guidelines Last Revision: 12/7/2009 Agency Fund (Nn-Student Org X-Fund) Guidelines Last Revisin: 12/7/2009 Definitin f Agency Fund: An Agency Fund cnsists f funds held by Eastern Michigan University as custdian r fiscal agent fr thers, such

More information

Management 4560 Small Business Management

Management 4560 Small Business Management Management 4560 Small Business Management Instructr: Gary Giles Semester: Fall 2007 Office: TBD Time: Wednesdays 4:30pm 7:00pm Telephne: (770) 356-8483 (Cell) Rm: General Classrm #431 Office Hrs: By appintment.

More information

HP Connected Backup Online Help. Version 8.7.1 04 October 2012

HP Connected Backup Online Help. Version 8.7.1 04 October 2012 HP Cnnected Backup Online Help Versin 8.7.1 04 Octber 2012 Legal Ntices Warranty The nly warranties fr Hewlett-Packard prducts and services are set frth in the express statements accmpanying such prducts

More information

FOCUS Service Management Software Version 8.5 for Passport Business Solutions Installation Instructions

FOCUS Service Management Software Version 8.5 for Passport Business Solutions Installation Instructions FOCUS Service Management Sftware fr Passprt Business Slutins Installatin Instructins Thank yu fr purchasing Fcus Service Management Sftware frm RTM Cmputer Slutins. This bklet f installatin instructins

More information

Legacy EMR Data Conversions

Legacy EMR Data Conversions Legacy EMR Data Cnversins Agenda Abut us Drivers fr EMR Replacement Things t Cnsider Tp 5 Reasns EMR Cnversins Fail Optins fr Legacy EMR Cnversin Case Study Abut Us Health efrmatics is a healthcare IT

More information

Software Distribution

Software Distribution Sftware Distributin Quantrax has autmated many f the prcesses invlved in distributing new cde t clients. This will greatly reduce the time taken t get fixes laded nt clients systems. The new prcedures

More information

Backups and Backup Strategies

Backups and Backup Strategies IT Security Office Versin 2.3 02/19/10 Backups and Backup Strategies IT managers need t plan fr backups in terms f time and space required. Hwever, mst mdern backup sftware can cmpress the backup files

More information

Aim The aim of a communication plan states the overall goal of the communication effort.

Aim The aim of a communication plan states the overall goal of the communication effort. Develping a Cmmunicatin Plan- Aim Aim The aim f a cmmunicatin plan states the verall gal f the cmmunicatin effrt. Determining the Aim Ask yurself r yur team what the verall gal f the cmmunicatin plan is.

More information

CCHIIM ICD-10 Continuing Education Requirements for AHIMA Certified Professionals (& Frequently Asked Questions for Recertification)

CCHIIM ICD-10 Continuing Education Requirements for AHIMA Certified Professionals (& Frequently Asked Questions for Recertification) CCHIIM ICD-10 Cntinuing Educatin Requirements fr AHIMA Certified Prfessinals (& Frequently Asked Questins fr Recertificatin) The transitin t ICD-10-CM and ICD-10-PCS is anticipated t imprve the capture

More information

Army DCIPS Employee Self-Report of Accomplishments Overview Revised July 2012

Army DCIPS Employee Self-Report of Accomplishments Overview Revised July 2012 Army DCIPS Emplyee Self-Reprt f Accmplishments Overview Revised July 2012 Table f Cntents Self-Reprt f Accmplishments Overview... 3 Understanding the Emplyee Self-Reprt f Accmplishments... 3 Thinking Abut

More information

IN-HOUSE OR OUTSOURCED BILLING

IN-HOUSE OR OUTSOURCED BILLING IN-HOUSE OR OUTSOURCED BILLING Medical billing is ne f the mst cmplicated aspects f running a medical practice. With thusands f pssible cdes fr diagnses and prcedures, and multiple payers, the ability

More information

The Importance Advanced Data Collection System Maintenance. Berry Drijsen Global Service Business Manager. knowledge to shape your future

The Importance Advanced Data Collection System Maintenance. Berry Drijsen Global Service Business Manager. knowledge to shape your future The Imprtance Advanced Data Cllectin System Maintenance Berry Drijsen Glbal Service Business Manager WHITE PAPER knwledge t shape yur future The Imprtance Advanced Data Cllectin System Maintenance Cntents

More information

7 October 2011. Re: Themed Inspection into Third Party Personal Injury Claims. Dear

7 October 2011. Re: Themed Inspection into Third Party Personal Injury Claims. Dear 7 Octber 2011 Re: Themed Inspectin int Third Party Persnal Injury Claims Dear During 2011 the Central Bank f Ireland ( Central Bank ) undertk a themed inspectin prject in relatin t the prcessing f third

More information

Planning & Delivering Safe Work Railway Contractors Certificate Non Training Services v1.2. Keith Miller & Rebecca Pears

Planning & Delivering Safe Work Railway Contractors Certificate Non Training Services v1.2. Keith Miller & Rebecca Pears Planning & Delivering Safe Wrk Railway Cntractrs Certificate Nn Training Services v1.2 Keith Miller & Rebecca Pears Planning & Delivering Safe Wrk Backgrund / Histry Intrductin f Safe Wrk Leader Intrductin

More information

New in this release. Sphere 9.4.3.2 (October 2013)

New in this release. Sphere 9.4.3.2 (October 2013) New in this release Sphere 9.4.3.2 (Octber 2013) The fllwing client-facing changes were implemented: An issue that prevented certain Friends Asking Friends spnsrship levels frm appearing as ptins n the

More information

Website Design Worksheet

Website Design Worksheet Website Design Wrksheet The mst crucial and imprtant part f having a website designed, r redesigned is t set gals and decide up frnt what yu want yur website t d. What is the purpse f yur new website?

More information

COMMONLY ASKED INTERVIEW QUESTIONS & STRATEGIES TO ANSWER THEM

COMMONLY ASKED INTERVIEW QUESTIONS & STRATEGIES TO ANSWER THEM COMMONLY ASKED INTERVIEW QUESTIONS & STRATEGIES TO ANSWER THEM Office f Career & Prfessinal Develpment 2014, UC Hastings Cllege f the Law The fllwing are examples f the mst cmmn interview questins. Speak

More information

Special Tax Notice Regarding 403(b) (TSA) Distributions

Special Tax Notice Regarding 403(b) (TSA) Distributions Special Tax Ntice Regarding 403(b) (TSA) Distributins P.O. Bx 7893 Madisn, WI 53707-7893 1-800-279-4030 Fax: (608) 237-2529 The IRS requires us t prvide yu with a cpy f the Explanatin f Direct Rllver,

More information

Access to the Ashworth College Online Library service is free and provided upon enrollment. To access ProQuest:

Access to the Ashworth College Online Library service is free and provided upon enrollment. To access ProQuest: PrQuest Accessing PrQuest Access t the Ashwrth Cllege Online Library service is free and prvided upn enrllment. T access PrQuest: 1. G t http://www.ashwrthcllege.edu/student/resurces/enterlibrary.html

More information

Student Web Time Entry Guide

Student Web Time Entry Guide Student Web Time Entry Guide Updated July 6, 2015 TABLE OF CONTENTS TABLE OF CONTENTS... 1 GETTING STARTED... 2 HOW TO ACCESS BANNER ONLINE... 2 HOW TO ENTER CURRENT TIMESHEETS... 2 HOW TO ENTER PREVIOUS

More information

Financial advisr & Consultant Surveys - A Review

Financial advisr & Consultant Surveys - A Review INVESTOR PREFERENCES IN SELECTING A FINANCIAL ADVISOR December 1, 2014 1 Table f Cntents Page Objectives & Methdlgy. 3 Executive Summary 4 Detailed Findings... 6 Questinnaire. 14 2 Objectives & Methdlgy

More information

WHITE PAPER. Vendor Managed Inventory (VMI) is Not Just for A Items

WHITE PAPER. Vendor Managed Inventory (VMI) is Not Just for A Items WHITE PAPER Vendr Managed Inventry (VMI) is Nt Just fr A Items Why it s Critical fr Plumbing Manufacturers t als Manage Whlesalers B & C Items Executive Summary Prven Results fr VMI-managed SKUs*: Stck-uts

More information

Emulated Single-Sign-On in LISTSERV Rev: 15 Jan 2010

Emulated Single-Sign-On in LISTSERV Rev: 15 Jan 2010 Emulated Single-Sign-On in LISTSERV Rev: 15 Jan 2010 0. Nte that frm LISTSERV versin 15.5, LISTSERV supprts using an external LDAP directry (r Windws Active Directry) fr lgin authenticatin in additin t

More information

Perl for OpenVMS Alpha

Perl for OpenVMS Alpha Perl fr OpenVMS Alpha Installatin Guide and Release Ntes January 25, 2002 Perl fr OpenVMS Versin 5.6.1 CPQ-AXPVMS-PERL-V0506-1-1.PCSI-DCX-AXPEXE On this page yu'll find infrmatin abut: Sftware prerequisites

More information