NHS e-referral Service

Size: px
Start display at page:

Download "NHS e-referral Service"

Transcription

1 Extracting Advice and Guidance data Published July 2017 Copyright 2016 Health and Social Care Information Centre. The Health and Social Care Information Centre is a non-departmental body created by statute, also known as NHS Digital.

2 Contents Introduction 3 Where to find information? 3 Extracting information 3 1. Advice Requests Created 3 2. Advice Responses 3 3. Bookings How do I calculate the number of working days? 4 What else should I be aware of? 7 Copyright 2016 Health and Social Care Information Centre. 2

3 Introduction This guide has been developed for Information Analysts to extract Advice and Guidance information to support the requirements detailed within the NHS e-referral Service CQUIN (Commissioning for Quality and Innovation) - see section 7. A number of coding strings are detailed within this document which can be copied and pasted into a database that will provide a list of all e-referral Service requests made, and any subsequent response or bookings. Where to find information? The data required is held within the EbsX02 which can be downloaded from within NHS e- Referral Service from the Extracts tab. You must be logged into the e-referral Service as an Information Analyst to view this extract. Extracting information Open the Ebsx02 and import Ebsx02 into a database. 1. Advice Requests Created Create tables for action_cds by copying the following code: SELECT Ebsx02.UBRN_ID, Ebsx02.SPECIALTY_CD, Ebsx02.PRIORITY_CD, Ebsx02.REFERRING_ORG_ID, Ebsx02.PATIENT_ID, Ebsx02.ACTION_ID, DateValue(Mid([Ebsx02]![ACTION_DT_TM],7,2) & "-" & Mid([Ebsx02]![ACTION_DT_TM],5,2) & "-" & Left([Ebsx02]![ACTION_DT_TM],4)) AS Request_Date, TimeValue(Mid([Ebsx02]![ACTION_DT_TM],9,2) & ":" & Mid([Ebsx02]![ACTION_DT_TM],11,2) & ":" & Right([Ebsx02]![ACTION_DT_TM],2)) AS Request_Time, Ebsx02.ACTION_CD, Ebsx02.BUS_FUNCTION_CD, Ebsx02.ACTION_REASON_CD, Ebsx02.SERVICE_ID, Ebsx02.UBRN INTO Advice_Requests_Created FROM Ebsx02 WHERE (((Ebsx02.ACTION_CD)="1407")); 2. Advice Responses Create tables for action_cds by copying the following code: SELECT Ebsx02.UBRN_ID, Ebsx02.SPECIALTY_CD, Ebsx02.PRIORITY_CD, Ebsx02.REFERRING_ORG_ID, Ebsx02.PATIENT_ID, Ebsx02.ACTION_ID, DateValue(Mid([Ebsx02]![ACTION_DT_TM],7,2) & "-" & Mid([Ebsx02]![ACTION_DT_TM],5,2) & "-" & Left([Ebsx02]![ACTION_DT_TM],4)) AS Response_Date, TimeValue(Mid([Ebsx02]![ACTION_DT_TM],9,2) & ":" & Mid([Ebsx02]![ACTION_DT_TM],11,2) & ":" & Right([Ebsx02]![ACTION_DT_TM],2)) AS Response_Time, Ebsx02.ACTION_CD, Ebsx02.BUS_FUNCTION_CD, Copyright 2016 Health and Social Care Information Centre. 3

4 Ebsx02.ACTION_REASON_CD, Ebsx02.SERVICE_ID, Ebsx02.UBRN INTO Advice_Responses FROM Ebsx02 WHERE (((Ebsx02.ACTION_CD)="1408")); 3. Bookings Create tables for action_cds by copying the following code: SELECT Ebsx02.UBRN_ID, Ebsx02.SPECIALTY_CD, Ebsx02.PRIORITY_CD, Ebsx02.REFERRING_ORG_ID, Ebsx02.PATIENT_ID, Ebsx02.ACTION_ID, DateValue(Mid([Ebsx02]![ACTION_DT_TM],7,2) & "-" & Mid([Ebsx02]![ACTION_DT_TM],5,2) & "-" & Left([Ebsx02]![ACTION_DT_TM],4)) AS Booking_Date, TimeValue(Mid([Ebsx02]![ACTION_DT_TM],9,2) & ":" & Mid([Ebsx02]![ACTION_DT_TM],11,2) & ":" & Right([Ebsx02]![ACTION_DT_TM],2)) AS Booking_Time, Ebsx02.ACTION_CD, Ebsx02.BUS_FUNCTION_CD, Ebsx02.ACTION_REASON_CD, Ebsx02.SERVICE_ID, Ebsx02.UBRN INTO Bookings FROM Ebsx02 WHERE (((Ebsx02.ACTION_CD)="1412")); Create the following query to list the advice requests with any response and/ or bookings: SELECT Advice_Requests_Created.UBRN_ID, Advice_Requests_Created.Request_Date, Advice_Requests_Created.Request_Time, Advice_Requests_Created.ACTION_ID, Advice_Responses.Response_Date, Advice_Responses.Response_Time, Advice_Responses.ACTION_ID, Bookings.Booking_Date, Bookings.Booking_Time, Bookings.ACTION_ID, Bookings.SERVICE_ID, Bookings.SPECIALTY_CD FROM (Advice_Requests_Created LEFT JOIN Advice_Responses ON Advice_Requests_Created.UBRN_ID = Advice_Responses.UBRN_ID) LEFT JOIN Bookings ON Advice_Requests_Created.UBRN_ID = Bookings.UBRN_ID WHERE (((IIf([Advice_Responses]![ACTION_ID]<[Advice_Requests_Created]![ACTION_ID],"exclude","include"))="include")) ORDER BY Advice_Requests_Created.UBRN_ID, Advice_Requests_Created.ACTION_ID, Advice_Responses.ACTION_ID;- Note: The service_id and Specialty fields can be linked to Ebsx03 and Ebsx05 to get more information about the provider How do I calculate the number of working days? Using MS Excel To work out the number of working days between request, response and booking, export the results into excel and use the NETWORKDAYS function. Using Visual Basic Creating functions within Visual Basic will calculate the number of working days. How do I do this? Copyright 2016 Health and Social Care Information Centre. 4

5 Instead of running the query in section 3.3 above, create a table called holidays and in it include a Holiday column that stores the date on which each holiday occurs. Include one row for each holiday that occurs on a weekday. To create the user defined function: 1. On the Microsoft Office Ribbon, click Database Tools. 2. On the Macro tab, click Visual Basic. 3. On the Insert menu, click Module. 4. At the top of the module, type the following two lines, if they are not already there. Option Compare Database Option Explicit 5. Type or copy following the Workdays and Weekdays functions: Public Function Workdays(ByRef startdate As Date, _ ByRef enddate As Date, _ Optional ByRef strholidays As String = "Holidays" _ ) As Integer ' Returns the number of workdays between startdate ' and enddate inclusive. Workdays excludes weekends and ' holidays. Optionally, pass this function the name of a table ' or query as the third argument. If you don't the default ' is "Holidays". On Error GoTo Workdays_Error Dim nweekdays As Integer Dim nholidays As Integer Dim strwhere As String ' DateValue returns the date part only. startdate = DateValue(startDate) enddate = DateValue(endDate) nweekdays = Weekdays(startDate, enddate) If nweekdays = -1 Then Workdays = -1 GoTo Workdays_Exit End If strwhere = "[Holiday] >= #" & startdate _ & "# AND [Holiday] <= #" & enddate & "#" ' Count the number of holidays. nholidays = DCount(Expr:="[Holiday]", _ Domain:=strHolidays, _ Criteria:=strWhere) Workdays = nweekdays - nholidays Workdays_Exit: Exit Function Workdays_Error: Workdays = -1 MsgBox "Error " & Err.Number & ": " & Err.Description, _ Copyright 2016 Health and Social Care Information Centre. 5

6 vbcritical, "Workdays" Resume Workdays_Exit End Function Public Function Weekdays(ByRef startdate As Date, _ ByRef enddate As Date _ ) As Integer ' Returns the number of weekdays in the period from startdate ' to enddate inclusive. Returns -1 if an error occurs. ' If your weekend days do not include Saturday and Sunday and ' do not total two per week in number, this function will ' require modification. On Error GoTo Weekdays_Error ' The number of weekend days per week. Const ncnumberofweekenddays As Integer = 2 ' The number of days inclusive. Dim vardays As Variant ' The number of weekend days. Dim varweekenddays As Variant ' Temporary storage for datetime. Dim dtmx As Date ' If the end date is earlier, swap the dates. If enddate < startdate Then dtmx = startdate startdate = enddate enddate = dtmx End If ' Calculate the number of days inclusive (+ 1 is to add back startdate). vardays = DateDiff(Interval:="d", _ date1:=startdate, _ date2:=enddate) + 1 ' Calculate the number of weekend days. varweekenddays = (DateDiff(Interval:="ww", _ date1:=startdate, _ date2:=enddate) _ * ncnumberofweekenddays) _ + IIf(DatePart(Interval:="w", _ Date:=startDate) = vbsunday, 1, 0) _ + IIf(DatePart(Interval:="w", _ Date:=endDate) = vbsaturday, 1, 0) ' Calculate the number of weekdays. Weekdays = (vardays - varweekenddays) Weekdays_Exit: Copyright 2016 Health and Social Care Information Centre. 6

7 Exit Function Weekdays_Error: Weekdays = -1 MsgBox "Error " & Err.Number & ": " & Err.Description, _ vbcritical, "Weekdays" Resume Weekdays_Exit End Function 6. On the File menu, click Save. 7. Type a module name, such as Working Days, and then press ENTER. 8. On the Debug menu, click Compile. 9. On the File menu, click Close and Return to MS Access. Create the following query to calculate the number of working days between responses and requests, and bookings and responses: SELECT Advice_Requests_Created.UBRN_ID, Advice_Requests_Created.Request_Date, Advice_Requests_Created.Request_Time, Advice_Requests_Created.ACTION_ID, Advice_Responses.Response_Date, Advice_Responses.Response_Time, Advice_Responses.ACTION_ID, Bookings.Booking_Date, Bookings.Booking_Time, Bookings.ACTION_ID, Bookings.SERVICE_ID, Bookings.SPECIALTY_CD, IIf([Response_Date] Is Null,"-",Weekdays([Request_Date],[Response_Date])) AS [Working Days Between Request and Response], IIf([Booking_Date] Is Null Or [Response_Date] Is Null,"-",Weekdays([Response_Date],[Booking_Date])) AS [Working Days Between Response and Booking] FROM (Advice_Requests_Created LEFT JOIN Advice_Responses ON Advice_Requests_Created.UBRN_ID = Advice_Responses.UBRN_ID) LEFT JOIN Bookings ON Advice_Requests_Created.UBRN_ID = Bookings.UBRN_ID WHERE (((IIf([Advice_Responses]![ACTION_ID]<[Advice_Requests_Created]![ACTION_ID],"exclude","include"))="include")) ORDER BY Advice_Requests_Created.UBRN_ID, Advice_Requests_Created.ACTION_ID, Advice_Responses.ACTION_ID; Further guidance on Working Days and User Defined functions can be found here: What else should I be aware of? Please note that where multiple requests and responses have been sent or received, these are all linked to the same UBRN. The action_id should be used to determine the order in which the requests/ responses took place. Copyright 2016 Health and Social Care Information Centre. 7

NHS e-referral Service

NHS e-referral Service Translating Extracts Published June 2017 Copyright 2016 Health and Social Care Information Centre. The Health and Social Care Information Centre is a non-departmental body created by statute, also known

More information

NHS e-referral Service

NHS e-referral Service Archived Referrals Published November 2016 Copyright 2016 Health and Social Care Information Centre. The Health and Social Care Information Centre is a non-departmental body created by statute, also known

More information

The Year argument can be one to four digits between 1 and Month is a number representing the month of the year between 1 and 12.

The Year argument can be one to four digits between 1 and Month is a number representing the month of the year between 1 and 12. The table below lists all of the Excel -style date and time functions provided by the WinCalcManager control, along with a description and example of each function. FUNCTION DESCRIPTION REMARKS EXAMPLE

More information

A Back-End Link Checker for Your Access Database

A Back-End Link Checker for Your Access Database A Back-End for Your Access Database Published: 30 September 2018 Author: Martin Green Screenshots: Access 2016, Windows 10 For Access Versions: 2007, 2010, 2013, 2016 Working with Split Databases When

More information

How to complete the NHSmail Social Care Provider Registration Portal

How to complete the NHSmail Social Care Provider Registration Portal How to complete the NHSmail Social Care Provider Registration Portal April 2018 Version 1 Copyright 2018 Health and Social Care Information Centre. The Health and Social Care Information Centre is a non-departmental

More information

Simply Access Tips. Issue May 4 th, Welcome to the thirteenth edition of Simply Access Tips for 2007.

Simply Access Tips. Issue May 4 th, Welcome to the thirteenth edition of Simply Access Tips for 2007. Hi [FirstName], Simply Access Tips Issue 13 2007 May 4 th, 2007 Welcome to the thirteenth edition of Simply Access Tips for 2007. Housekeeping as usual is at the end of the Newsletter so, if you need to

More information

DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6)

DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6) AGENDA 3. Executing VBA

More information

Social care: local sponsorship model application process guidance

Social care: local sponsorship model application process guidance Social care: local sponsorship model application process guidance Published August 2017 Copyright 2017Health and Social Care Information Centre. The Health and Social Care Information Centre is a non-departmental

More information

National Diabetes Audit and Diabetes Prevention Programme Pilot

National Diabetes Audit and Diabetes Prevention Programme Pilot National Diabetes Audit and Diabetes Prevention Programme Pilot MiQuest Query Guidance for Practices using SystmOne Published 13 March 2017 Copyright 2017 Health and Social Care Information Centre. The

More information

Respond to Errors and Unexpected Conditions

Respond to Errors and Unexpected Conditions Respond to Errors and Unexpected Conditions Callahan Chapter 7 Practice Time Artie s List Loose Ends ensure that frmrestaurant s module has Option Explicit modify tblrestaurant field sizes Restaurant -

More information

Simply Access Tips. Issue April 26 th, Welcome to the twelfth edition of Simply Access Tips for 2007.

Simply Access Tips. Issue April 26 th, Welcome to the twelfth edition of Simply Access Tips for 2007. Hi [FirstName], Simply Access Tips Issue 12 2007 April 26 th, 2007 Welcome to the twelfth edition of Simply Access Tips for 2007. Housekeeping as usual is at the end of the Newsletter so, if you need to

More information

VBA Collections A Group of Similar Objects that Share Common Properties, Methods and

VBA Collections A Group of Similar Objects that Share Common Properties, Methods and VBA AND MACROS VBA is a major division of the stand-alone Visual Basic programming language. It is integrated into Microsoft Office applications. It is the macro language of Microsoft Office Suite. Previously

More information

National Diabetes Audit and Diabetes Prevention Programme Pilot

National Diabetes Audit and Diabetes Prevention Programme Pilot National Diabetes Audit and Diabetes Prevention Programme Pilot MiQuest Query Guidance for Practices using Microtest Evolution Published 13 March 2017 Copyright 2017 Health and Social Care Information

More information

Creating a File and Folder Backup

Creating a File and Folder Backup Applicable Products These instructions apply to the following products: Barracuda Intronis Backup - MSP How to Create a Files and Folders Backup Before creating a files and folders backup set, make sure

More information

User Guide on Online Resource Booking System (ORBS) Centre for Genomic Sciences HKU

User Guide on Online Resource Booking System (ORBS) Centre for Genomic Sciences HKU User Guide on Online Resource Booking System (ORBS) Centre for Genomic Sciences HKU July 2013 Introduction to Online Resource Booking System The Online Resource Booking System (ORBS) is a convenient web-based

More information

Microsoft Excel IV Handout

Microsoft Excel IV Handout Microsoft Excel IV Handout More On Functions In the previous Excel courses you learned several different kinds of functions. These functions mostly involved basic mathematical operations. However, functions

More information

d2vbaref.doc Page 1 of 22 05/11/02 14:21

d2vbaref.doc Page 1 of 22 05/11/02 14:21 Database Design 2 1. VBA or Macros?... 2 1.1 Advantages of VBA:... 2 1.2 When to use macros... 3 1.3 From here...... 3 2. A simple event procedure... 4 2.1 The code explained... 4 2.2 How does the error

More information

If you have established that it is not possible to refer directly from your clinical system it is still possible to refer through ers but this

If you have established that it is not possible to refer directly from your clinical system it is still possible to refer through ers but this How to make a referral directly on ers when cannot do it through Emis Web eg for temporary residents OR if you do not have the NHS Number OR patient not fully registered If a patient is not fully registered

More information

Guide to patching. Published 14 May 2017

Guide to patching. Published 14 May 2017 Published 14 May 2017 Copyright 2017 Health and Social Care Information Centre. The Health and Social Care Information Centre is a non-departmental body created by statute, also known as NHS Digital. How

More information

Substitute Quick Reference (SmartFindExpress Substitute Calling System and Web Center)

Substitute Quick Reference (SmartFindExpress Substitute Calling System and Web Center) Substitute Quick Reference (SmartFindExpress Substitute Calling System and Web Center) System Phone Number 578-6618 Help Desk Phone Number 631-4868 (6:00 a.m. 4:30 p.m.) Write your Access number here Write

More information

Workday Posting Guide. 13-Sep Broadbean

Workday Posting Guide. 13-Sep Broadbean Workday Posting Guide 13-Sep-16 2015 Broadbean Posting your Requisition via Broadbean Your Workday account has been configured to include Broadbean as your global posting distribution partner. You will

More information

Pharmacy - Frequently Asked Questions

Pharmacy - Frequently Asked Questions Pharmacy - Frequently Asked Questions Published October 2017 Version 4 Copyright 2017Health and Social Care Information Centre. The Health and Social Care Information Centre is a non-departmental body

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Microsoft Access is database software that provides templates to help you add databases that make it easier to track, report, and share data with others. Although very powerful, the

More information

How to modify convert task to use variable value from source file in output file name

How to modify convert task to use variable value from source file in output file name Page 1 of 6 How to modify convert task to use variable value from source file in output file name The default SolidWorks convert task add-in does not have support for extracting variable values from the

More information

To become familiar with array manipulation, searching, and sorting.

To become familiar with array manipulation, searching, and sorting. ELECTRICAL AND COMPUTER ENGINEERING 06-88-211: COMPUTER AIDED ANALYSIS LABORATORY EXPERIMENT #2: INTRODUCTION TO ARRAYS SID: OBJECTIVE: SECTIONS: Total Mark (out of 20): To become familiar with array manipulation,

More information

VBA Handout. References, tutorials, books. Code basics. Conditional statements. Dim myvar As <Type >

VBA Handout. References, tutorials, books. Code basics. Conditional statements. Dim myvar As <Type > VBA Handout References, tutorials, books Excel and VBA tutorials Excel VBA Made Easy (Book) Excel 2013 Power Programming with VBA (online library reference) VBA for Modelers (Book on Amazon) Code basics

More information

Package bizdays. September 14, 2017

Package bizdays. September 14, 2017 Title Business Days Calculations and Utilities Package bizdays September 14, 2017 Business days calculations based on a list of holidays and nonworking weekdays. Quite useful for fixed income and derivatives

More information

Outline. Midterm Review. Using Excel. Midterm Review: Excel Basics. Using VBA. Sample Exam Question. Midterm Review April 4, 2014

Outline. Midterm Review. Using Excel. Midterm Review: Excel Basics. Using VBA. Sample Exam Question. Midterm Review April 4, 2014 Midterm Review Larry Caretto Mechanical Engineering 209 Computer Programming for Mechanical Engineers April 4, 2017 Outline Excel spreadsheet basics Use of VBA functions and subs Declaring/using variables

More information

Substitute Quick Reference Card

Substitute Quick Reference Card Substitute Quick Reference Card System Phone Number 240-439-6900 Help Desk Phone Number 301-644-5120 ID PIN System Calling Times Week Day Today s Jobs Future Jobs Weekdays Starts at 6:00 a.m. 5:00 p.m.

More information

BASIC EXCEL SYLLABUS Section 1: Getting Started Section 2: Working with Worksheet Section 3: Administration Section 4: Data Handling & Manipulation

BASIC EXCEL SYLLABUS Section 1: Getting Started Section 2: Working with Worksheet Section 3: Administration Section 4: Data Handling & Manipulation BASIC EXCEL SYLLABUS Section 1: Getting Started Unit 1.1 - Excel Introduction Unit 1.2 - The Excel Interface Unit 1.3 - Basic Navigation and Entering Data Unit 1.4 - Shortcut Keys Section 2: Working with

More information

Language Fundamentals

Language Fundamentals Language Fundamentals VBA Concepts Sept. 2013 CEE 3804 Faculty Language Fundamentals 1. Statements 2. Data Types 3. Variables and Constants 4. Functions 5. Subroutines Data Types 1. Numeric Integer Long

More information

Database Programming with SQL

Database Programming with SQL Database Programming with SQL 4-3 Objectives This lesson covers the following objectives: Demonstrate the use of SYSDATE and date functions State the implications for world businesses to be able to easily

More information

Sébastien Mathier wwwexcel-pratiquecom/en Variables : Variables make it possible to store all sorts of information Here's the first example : 'Display the value of the variable in a dialog box 'Declaring

More information

Data Quality Maturity Index (DQMI) Power BI Interactive Report User Guide

Data Quality Maturity Index (DQMI) Power BI Interactive Report User Guide Data Quality Maturity Index (DQMI) Power BI Interactive Report User Guide Published 08 May 2018 Copyright 2018 Health and Social Care Information Centre. The Health and Social Care Information Centre is

More information

NHS e-referral Service Transition Planning WebEx May 2015

NHS e-referral Service Transition Planning WebEx May 2015 NHS e-referral Service Transition Planning WebEx May 2015 Issued 19.05.15 V3.0 Purpose of this webinar and key messages To reassure users that they do not need to worry about the change to NHS e-referral

More information

Excel Expert Microsoft Excel 2010

Excel Expert Microsoft Excel 2010 Excel Expert Microsoft Excel 2010 Formulas & Functions Table of Contents Excel 2010 Formulas & Functions... 2 o Formula Basics... 2 o Order of Operation... 2 Conditional Formatting... 2 Cell Styles...

More information

Package bizdays. June 25, 2018

Package bizdays. June 25, 2018 Title Business Days Calculations and Utilities Package bizdays June 25, 2018 Business days calculations based on a list of holidays and nonworking weekdays. Quite useful for fixed income and derivatives

More information

Ms Excel Vba Continue Loop Through Worksheets By Name

Ms Excel Vba Continue Loop Through Worksheets By Name Ms Excel Vba Continue Loop Through Worksheets By Name exceltip.com/files-workbook-and-worksheets-in-vba/determine-if- Checks if the Sheet name is matching the Sheet name passed from the main macro. It

More information

Ms Excel Dashboards & VBA

Ms Excel Dashboards & VBA Ms Excel Dashboards & VBA 32 hours, 4 sessions, 8 hours each Day 1 Formatting Conditional Formatting: Beyond Simple Conditional Formats Data Validation: Extended Uses of Data Validation working with Validation

More information

Function: function procedures and sub procedures share the same characteristics, with

Function: function procedures and sub procedures share the same characteristics, with Function: function procedures and sub procedures share the same characteristics, with one important difference- function procedures return a value (e.g., give a value back) to the caller, whereas sub procedures

More information

Simply Access Tips. Issue February 12 th, Welcome to the fifth edition of Simply Access Tips for 2007.

Simply Access Tips. Issue February 12 th, Welcome to the fifth edition of Simply Access Tips for 2007. Hi [FirstName], Simply Access Tips Issue 5 2007 February 12 th, 2007 Welcome to the fifth edition of Simply Access Tips for 2007. I have added the housekeeping section to the bottom of the Newsletter so,

More information

DroidBasic Syntax Contents

DroidBasic Syntax Contents DroidBasic Syntax Contents DroidBasic Syntax...1 First Edition...3 Conventions Used In This Book / Way Of Writing...3 DroidBasic-Syntax...3 Variable...4 Declaration...4 Dim...4 Public...4 Private...4 Static...4

More information

Put Final Touches on an Application

Put Final Touches on an Application Put Final Touches on an Application Callahan Chapter 11 Preparing Your Application for Distribution Controlling How Your Application Starts Forms-based bound forms for data presentation dialog boxes Switchboard

More information

'... '... '... Module created: unknown '... Proj finished: March 21, 2012 '... '...

'... '... '... Module created: unknown '... Proj finished: March 21, 2012 '... '... ThisWorkbook - 1 If g_bdebugmode Then '... Module created: unknown '... Proj finished: March 21, 2012 '************************* CLASS-LEVEL DECLARATIONS ************************** Option Explicit Option

More information

Excel on Steroids 50 Tips & Tricks vol.5 2

Excel on Steroids 50 Tips & Tricks vol.5 2 CONTENTS USING FILTERING OPTIONS... 4 USING THE DATEIF FUNCTION... 5 THE RIGHT FUNCTION... 7 PUBLISHING AN EXCEL WORKBOOK TO AN INTRANET/INTERNET LOCATION... 8 SPLITTING OF WINDOWS... 10 MULTIPLE DATA

More information

NHSmail Skype for Business

NHSmail Skype for Business NHSmail Skype for Business Mobile device installation guide Published December 2017 Version 3 Copyright 2017Health and Social Care Information Centre. The Health and Social Care Information Centre is a

More information

ADVANCED ALGORITHMS TABLE OF CONTENTS

ADVANCED ALGORITHMS TABLE OF CONTENTS ADVANCED ALGORITHMS TABLE OF CONTENTS ADVANCED ALGORITHMS TABLE OF CONTENTS...1 SOLVING A LARGE PROBLEM BY SPLITTING IT INTO SEVERAL SMALLER SUB-PROBLEMS CASE STUDY: THE DOOMSDAY ALGORITHM... INTRODUCTION

More information

EnableBasic. The Enable Basic language. Modified by Admin on Sep 13, Parent page: Scripting Languages

EnableBasic. The Enable Basic language. Modified by Admin on Sep 13, Parent page: Scripting Languages EnableBasic Old Content - visit altium.com/documentation Modified by Admin on Sep 13, 2017 Parent page: Scripting Languages This Enable Basic Reference provides an overview of the structure of scripts

More information

Quick Steps Temporary

Quick Steps Temporary This manual is designed to provide an overview and Quick Steps to process the AppState Careers Applicant Tracking (Posting and Hiring Proposal) modules. Refer to the ASU detail training manuals for specific

More information

Microsoft Excel 2013 Series and Custom Lists (Level 3)

Microsoft Excel 2013 Series and Custom Lists (Level 3) IT Training Microsoft Excel 2013 Series and Custom Lists (Level 3) Contents Introduction...1 Extending a Single Cell...1 Built-in Data Series...2 Extending Two Cells...2 Extending Multiple Cells...3 Linear

More information

Excel VBA Variables, Data Types & Constant

Excel VBA Variables, Data Types & Constant Excel VBA Variables, Data Types & Constant Variables are used in almost all computer program and VBA is no different. It's a good practice to declare a variable at the beginning of the procedure. It is

More information

TIPS & TRICKS SERIES

TIPS & TRICKS SERIES TIPS & TRICKS SERIES TIPS & TRICKS OFFICE XP MACROS C o m p i l e d b y MUHAMMAD AJMAL BEIG NAZ TIPS & TRICKS OFFICE XP MACROS P a g e 1 CONTENTS Table of Contents OFFICE XP MACROS 3 ABOUT MACROS 3 MICROSOFT

More information

CCG questions: EMIS. SNOMED CT in Primary Care. Updated: 31 th July 2017

CCG questions: EMIS. SNOMED CT in Primary Care. Updated: 31 th July 2017 SNOMED CT in Primary Care Updated: 31 th July 2017 Copyright 2017 Health and Social Care Information Centre. The Health and Social Care Information Centre is a non-departmental body created by statute,

More information

variables programming statements

variables programming statements 1 VB PROGRAMMERS GUIDE LESSON 1 File: VbGuideL1.doc Date Started: May 24, 2002 Last Update: Dec 27, 2002 ISBN: 0-9730824-9-6 Version: 0.0 INTRODUCTION TO VB PROGRAMMING VB stands for Visual Basic. Visual

More information

Substitute Quick Reference Card For Questions Please Contact, Shaunna Wood: ext. 1205

Substitute Quick Reference Card For Questions Please Contact, Shaunna Wood: ext. 1205 Substitute Quick Reference Card For Questions Please Contact, Shaunna Wood: 218-336-8700 ext. 1205 System Phone Number: (218) 461-4437 Help Desk Phone Number: (218) 336-8700 ext. 1059 ID PIN System Calling

More information

Software Manual. For Fingerprint Attendance System

Software Manual. For Fingerprint Attendance System Software Manual For Fingerprint Attendance System Content: 1 PRECAUTION... 4 2 GETTING STARTED...4 2.1. HOW TO COMMUNICATE THE SYSTEM WITH THE READER TERMINAL... 4 3 HOW TO USE FINGERPRINT T & A MANAGEMENT

More information

Import Advice How do I

Import Advice How do I Import Advice How do I July 2017 Version: 1 TABLE OF CONTENTS Register for Import Advice... 2 Log In... 4 Creating a Block Stack... 6 Create a Day Pickup... 8 Holds... 10 Create List of Booked Containers...

More information

Configuring Cisco Access Policies

Configuring Cisco Access Policies CHAPTER 11 This chapter describes how to create the Cisco Access Policies assigned to badge holders that define which doors they can access, and the dates and times of that access. Once created, access

More information

TELEPHONE ACCESS INSTRUCTIONS

TELEPHONE ACCESS INSTRUCTIONS DISTRICT NAME Substitute Quick Reference Card System Phone Number 1-910-816-1822 Help Desk Phone Number 671-6000 Ext 3221 or 3222 Write your Access ID here Write your PIN here Web Browser URL robeson.eschoolsolutions.com

More information

Bill Jelen with 112K contributors and 6,156,123 guests H OLY MACRO! BOOKS. PO Box 82, Uniontown, OH 44685

Bill Jelen with 112K contributors and 6,156,123 guests H OLY MACRO! BOOKS. PO Box 82, Uniontown, OH 44685 by Bill Jelen with 112K contributors and 6,156,123 guests H OLY MACRO! BOOKS PO Box 82, Uniontown, OH 44685 Excel Gurus Gone Wild 2009 by Bill Jelen All rights reserved. No part of this book may be reproduced

More information

Tutorial 2. Building a Database and Defining Table Relationships

Tutorial 2. Building a Database and Defining Table Relationships Tutorial 2 Building a Database and Defining Table Relationships Microsoft Access 2010 Objectives Learn the guidelines for designing databases and setting field properties Modify the format of a field in

More information

* I have attended for both excel & VBA customized training and it was awesome and have found his trainings are very useful

* I have attended for both excel & VBA customized training and it was awesome and have found his trainings are very useful This Excel training is to help everyone to learn, develop and to get exposure to their MS-Excel knowledge. It will help you to get knowledge on various world class examples. This training is based on the

More information

GETTING STARTED GUIDE

GETTING STARTED GUIDE GETTING STARTED GUIDE To get started access the Appointment Manager within the service quoting system or directly from the start screen. INTRODUCTION The innovative online booking system allows customers

More information

Simplify Your Intelligence Reporting Process. Excel Tips and Tricks Booklet Volume 5

Simplify Your Intelligence Reporting Process. Excel Tips and Tricks Booklet Volume 5 Simplify Your Intelligence Reporting Process Excel Tips and Tricks Booklet Volume 5 Table of Contents Using Filtering Options... 4 Using the DATEIF Function... 5 The Right Function... 6 Publishing an Excel

More information

Auto Attendant. Blue Platform. Administration. User Guide

Auto Attendant. Blue Platform. Administration. User Guide Blue Platform Administration User Guide Contents 1 About Auto Attendant... 3 1.1 Benefits... 3 2 Accessing the Auto Attendant Admin Portal... 4 3 Auto Attendant Admin Portal Interface... 5 4 Auto Attendant

More information

Name :. Roll No. :... Invigilator s Signature : INTRODUCTION TO PROGRAMMING. Time Allotted : 3 Hours Full Marks : 70

Name :. Roll No. :... Invigilator s Signature : INTRODUCTION TO PROGRAMMING. Time Allotted : 3 Hours Full Marks : 70 Name :. Roll No. :..... Invigilator s Signature :.. 2011 INTRODUCTION TO PROGRAMMING Time Allotted : 3 Hours Full Marks : 70 The figures in the margin indicate full marks. Candidates are required to give

More information

Review for Programming Exam and Final May 4-9, Ribbon with icons for commands Quick access toolbar (more at lecture end)

Review for Programming Exam and Final May 4-9, Ribbon with icons for commands Quick access toolbar (more at lecture end) Review for Programming Exam and Final Larry Caretto Mechanical Engineering 209 Computer Programming for Mechanical Engineers May 4-9, 2017 Outline Schedule Excel Basics VBA Editor and programming variables

More information

GlobAl EDITION. Database Concepts SEVENTH EDITION. David M. Kroenke David J. Auer

GlobAl EDITION. Database Concepts SEVENTH EDITION. David M. Kroenke David J. Auer GlobAl EDITION Database Concepts SEVENTH EDITION David M. Kroenke David J. Auer This page is intentionally left blank. Chapter 3 Structured Query Language 157 the comment. We will use similar comments

More information

HKTA TANG HIN MEMORIAL SECONDARY SCHOOL SECONDARY 3 COMPUTER LITERACY. Name: ( ) Class: Date: Databases and Microsoft Access

HKTA TANG HIN MEMORIAL SECONDARY SCHOOL SECONDARY 3 COMPUTER LITERACY. Name: ( ) Class: Date: Databases and Microsoft Access Databases and Microsoft Access Introduction to Databases A well-designed database enables huge data storage and efficient data retrieval. Term Database Table Record Field Primary key Index Meaning A organized

More information

NHS e-referrals User Guide - SystmOne TPP (C&B) Please Use This Guide for Practices in: North West London CCG s

NHS e-referrals User Guide - SystmOne TPP (C&B) Please Use This Guide for Practices in: North West London CCG s NHS e-referrals User Guide SystmOne TPP Please Use This Guide for Practices in: North West London CCG s Version: 3.4 Author Filename: Path: Primary Care Systems Team / CWHHECCG System One Implementation

More information

Autodesk Inventor Tutorials by Sean Dotson VBA Functions in Parts Part Two Latest Revision: 3/17/03 For R Sean

Autodesk Inventor Tutorials by Sean Dotson   VBA Functions in Parts Part Two Latest Revision: 3/17/03 For R Sean Autodesk Inventor Tutorials by Sean Dotson www.sdotson.com sean@sdotson.com VBA Functions in Parts Part Two Latest Revision: 3/17/03 For R6 2003 Sean Dotson (sdotson.com) Inventor is a registered trademark

More information

VBA Macro for Micro Focus Reflections Face-to-Face Orlando March 2018

VBA Macro for Micro Focus Reflections Face-to-Face Orlando March 2018 VBA Macro for Micro Focus Reflections Face-to-Face Orlando March 2018 Christopher Guertin Pharm D, MBA, BCPS Clinical Analyst, Pharmacy Benefits Management Objectives Define what a Macro is Explain why

More information

Wordman s Production Corner

Wordman s Production Corner Wordman s Production Corner By Dick Eassom, AF.APMP Three Excel Tricks...Just for a Change Three Problems One of my colleagues has the good fortune to have to manage marketing mailing lists. Since the

More information

Creating a Departmental Standard SAS Enterprise Guide Template

Creating a Departmental Standard SAS Enterprise Guide Template Paper 1288-2017 Creating a Departmental Standard SAS Enterprise Guide Template ABSTRACT Amanda Pasch and Chris Koppenhafer, Kaiser Permanente This paper describes an ongoing effort to standardize and simplify

More information

Sébastien Mathier wwwexcel-pratiquecom/en While : Loops make it possible to repeat instructions a number of times, which can save a lot of time The following code puts sequential numbers into each of the

More information

Arena SQL: Query Attendance History Addendum

Arena SQL: Query Attendance History Addendum Arena SQL: Query Attendance History Addendum (Course #A252) Presented by Tim Wilson Arena Software Developer 2017 Shelby Systems, Inc. Other brand and product names are trademarks or registered trademarks

More information

Microsoft Excel 2010 Level 1

Microsoft Excel 2010 Level 1 Microsoft Excel 2010 Level 1 One Day Course Course Description You have basic computer skills such as using a mouse, navigating through windows, and surfing the Internet. You have also used paper-based

More information

Package datetimeutils

Package datetimeutils Type Package Title Utilities for Dates and Times Version 0.2-12 Date 2018-02-28 Package datetimeutils March 10, 2018 Maintainer Utilities for handling dates and times, such as selecting

More information

MIS CURRICULUM. Advanced Excel Course - Working with Templates Designing the structure of a template Using templates for standardization of worksheets

MIS CURRICULUM. Advanced Excel Course - Working with Templates Designing the structure of a template Using templates for standardization of worksheets MIS CURRICULUM ADVANCE EXCEL Advanced Excel Course - Overview of the Basics of Excel Customizing common options in Excel Absolute and relative cells Protecting and un-protecting worksheets and cells Advanced

More information

Parcelforce Worldwide Dashboard User Guide

Parcelforce Worldwide Dashboard User Guide Parcelforce Worldwide Dashboard User Guide PFW Dashboard User Guide July 2018 Page 1 Contents Welcome... 3 Accessing the Dashboard... 4 Level 1 Summary Domestic Dashboard tab... 5 Level 1 Summary International

More information

Substitute Quick Reference Card

Substitute Quick Reference Card Substitute Quick Reference Card System Phone Number 703-962-1572 Help Desk Phone Number 571-423-3030 opt. 8 ID PIN System Calling Times Same Day Jobs Future Jobs Weekdays Starts at 5:00 am 4:30-10:00 pm

More information

Scottish Care Information. SCI Gateway v11.1. Receiving Referrals User Guide

Scottish Care Information. SCI Gateway v11.1. Receiving Referrals User Guide Scottish Care Information SCI Gateway v11.1 Receiving Referrals User Guide Contents 1 Introduction...1-1 2 Accessing SCI Gateway...2-1 Accessing SCI Gateway...2-2 Passwords & Security...2-3 Logging on

More information

Applying Web Hot Fix Package 04 for Sage SalesLogix Version Version Developed by Sage SalesLogix User Assistance

Applying Web Hot Fix Package 04 for Sage SalesLogix Version Version Developed by Sage SalesLogix User Assistance Applying Web Hot Fix Package 04 for Sage SalesLogix Version 7.5.2 Version 7.5.2.04 Developed by Sage SalesLogix User Assistance Applying Web Hot Fix Package 04 for Sage SalesLogix Version 7.5.2 Documentation

More information

Excel Course Outline

Excel Course Outline 26 Videos Skyrocket your productivity and propel your career. Enrol for our excel course and be a Rockstar at work! Video #1 Getting Started with Excel Excel Structure Navigating in Excel Ribbon and Tabs

More information

San Diego Unified School District Substitute Reference Guide

San Diego Unified School District Substitute Reference Guide San Diego Unified School District Substitute Reference Guide System Phone Number (619) 297-0304 Help Desk Phone Number (619) 725-8090 Write your PIN here Web Browser URL https://subweb.sandi.net THE SYSTEM

More information

How to get your subscription account ready for the GDPR. Step-guide for getting the consent you may need from your subscribers.

How to get your  subscription account ready for the GDPR. Step-guide for getting the consent you may need from your subscribers. How to get your email subscription account ready for the GDPR. Step-guide for getting the consent you may need from your subscribers. Please be aware this document does not constitute legal advice. It

More information

Desktop Configuration Guide for NHSmail

Desktop Configuration Guide for NHSmail Desktop Configuration Guide for NHSmail Version 4 Published October 2017 Copyright 2017Health and Social Care Information Centre. The Health and Social Care Information Centre is a non-departmental body

More information

Midpoint Security,

Midpoint Security, User Manual Revision: 6, Date: October 4, 009 Midpoint Security, UAB, Kaunas, Lithuania www..emssa.net TABLE OF CONTENTS Copyright notice... Liability waiver... Introduction... 4 Overview... Settings tab...

More information

Exploring the Microsoft Access User Interface and Exploring Navicat and Sequel Pro, and refer to chapter 5 of The Data Journalist.

Exploring the Microsoft Access User Interface and Exploring Navicat and Sequel Pro, and refer to chapter 5 of The Data Journalist. Chapter 5 Exporting Data from Access and MySQL Skills you will learn: How to export data in text format from Microsoft Access, and from MySQL using Navicat and Sequel Pro. If you are unsure of the basics

More information

The Direct Excel Connection plugin PRINTED MANUAL

The Direct Excel Connection plugin PRINTED MANUAL The Direct Excel Connection plugin PRINTED MANUAL Direct Excel Connection plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical,

More information

BUP2 5/2 12/4/07 12:49 AM Page 1. Introduction

BUP2 5/2 12/4/07 12:49 AM Page 1. Introduction BUP2 5/2 12/4/07 12:49 AM Page 1 Introduction This booklet will give you easy to follow instructions to allow you to set your BUP2 Programmer to the Weekday/Weekend, (same times Monday - Friday, different

More information

Quick Reference Guide

Quick Reference Guide SOFTWARE AND HARDWARE SOLUTIONS FOR THE EMBEDDED WORLD mikroelektronika Development tools - Books - Compilers Quick Reference Quick Reference Guide with EXAMPLES for Basic language This reference guide

More information

M I C R O S O F T A C C E S S : P A R T 2 G E T T I N G I N F O R M A T I O N O U T O F Y O U R D A T A

M I C R O S O F T A C C E S S : P A R T 2 G E T T I N G I N F O R M A T I O N O U T O F Y O U R D A T A M I C R O S O F T A C C E S S 2 0 1 0 : P A R T 2 G E T T I N G I N F O R M A T I O N O U T O F Y O U R D A T A Michael J. Walk ALC Instructor michael@jwalkonline.org www.jwalkonline.org/main @MichaelJWalk

More information

Basic Programming Algorithms. 1-D Arrays

Basic Programming Algorithms. 1-D Arrays Basic Programming Algorithms 1-D Arrays 1-D fixed-size array Dim arr(5) As Double 0-base, 6 elements Dim arr(0 to 5) As Double 0-base, 6 elements Dim arr(1 to 5) As Double 1-base, 5 elements Option Base

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

Simply Access Tips. Issue February 2 nd 2009

Simply Access Tips. Issue February 2 nd 2009 Hi [FirstName], Simply Access Tips Issue 02 2009 February 2 nd 2009 Welcome to the second edition of Simply Access Tips for 2009. Housekeeping, as usual, is at the end of the Newsletter so; if you need

More information

Applying Update 13 for Sage SalesLogix Version Version Developed by Sage SalesLogix User Assistance

Applying Update 13 for Sage SalesLogix Version Version Developed by Sage SalesLogix User Assistance Version 7.5.4.13 Developed by Sage SalesLogix User Assistance Documentation Comments Copyright Address This documentation was developed by Sage SalesLogix User Assistance. For content revisions, questions,

More information

Learning Map Excel 2007

Learning Map Excel 2007 Learning Map Excel 2007 Our comprehensive online Excel tutorials are organized in such a way that it makes it easy to obtain guidance on specific Excel features while you are working in Excel. This structure

More information

Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 2 INTEGRATION WITH OFFICE EDITING FILES 4 EDITING A WORKBOOK. 1.

Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 2 INTEGRATION WITH OFFICE EDITING FILES 4 EDITING A WORKBOOK. 1. Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 1.1 Introduction 1.2 A spreadsheet 1.3 Starting up Excel 1.4 The start screen 1.5 The interface 1.5.1 A worksheet or workbook 1.5.2 The title bar 1.5.3

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