I am reviewing what we looked at Monday. Name your database and decide where you want to store it. Title: Feb 3 10:54 AM (1 of 39)

Size: px
Start display at page:

Download "I am reviewing what we looked at Monday. Name your database and decide where you want to store it. Title: Feb 3 10:54 AM (1 of 39)"

Transcription

1 I am reviewing what we looked at Monday. Name your database and decide where you want to store it. Title: Feb 3 10:54 AM (1 of 39)

2 I want to develop the table in design view, so when the screen comes up looking like this, I click on View to go into design view. Right now I am seeing the datasheet. I will be prompted to name the table at this point. The database is made up of tables. The database is named mydb, now I need to enter a name for the table. Title: Feb 3 11:06 AM (2 of 39)

3 Notice than I am now in design mode so I can design my table. I named the table mytable. Access had called the first field ID and given in an auto number type. I changed the name to stuid and made it a text field and changed the field size to 5. I left it as the primary key (If Access did not designate it the primary key I would have clicked on the field and click on primary key to make it the primary key. A primary key has to be unique, when I enter data I will not be allowed to give two students the same stuid. Title: Feb 3 11:10 AM (3 of 39)

4 Title: Feb 3 11:13 AM (4 of 39) I added some more text fields and gave the field sizes that were reasonable. The stuname field is 45 and the stumajor field is 2 in field size. Now stugpa is a number and I am choosing single to allow decimals. It is a small decimal number so single works, for a large number I would use double in field size.

5 Title: Feb 3 11:14 AM (5 of 39) Now I am putting in stucredits and I made it a number with a field size of integer. For a big number I would use long integer.

6 Title: Feb 3 11:16 AM (6 of 39)

7 Title: Feb 3 11:18 AM (7 of 39) Now I closed the previous database and opened the one that I did on Monday. It has the same fields but I had already put data into it, so I wanted to save time and use it. The database is called firsts10 and the table is called students. The field names are the same names I used on the previous slides.

8 Title: Feb 3 11:24 AM (8 of 39) Now I want to do a query. I go to create and then I click on query design to bring up the list of tables in this database. There is only one table and I add it so I can use it in my query. Queries allow me to get a subset of the records based on criteria I specify.

9 Title: Feb 3 11:24 AM (9 of 39)

10 When I want to see the results, I click on the icon to see the datasheet. This shows the table and the fields in the table. I drag down the ones I want. I decided I did not need stucredits for this query. I am putting in criteria for the query. I want to see records where the stumajor is CI. Because CI is a text literal, I enclose it in quotes. If I forget Access will put in the quotes. Notice that the criteria is entered in the cell below stumajor because that is what I am testing and on the line with the word criteria. Title: Feb 3 11:27 AM (10 of 39)

11 If I want to see the design I click on the icon to see the design view. Note that I am seeing the four fields I dragged down and only the records that have a stumajor of CI. It meets my criteria. Title: Feb 3 11:28 AM (11 of 39)

12 Title: Feb 3 11:28 AM (12 of 39) Here I did not put the quotes around CI, but as you will see, Access adds them.

13 Title: Feb 3 11:28 AM (13 of 39)

14 This shows a segment of the logic flowchart to test for stumajor = CI, The question is written in a diamond. It is a Yes or No question. If the answer is Yes, then the record will be displayed, if the answer is No, nothing will happen. Title: Feb 3 11:31 AM (14 of 39)

15 Title: Feb 3 11:32 AM (15 of 39) Now I want two things to be true. The stumajor has to be CI and the stugpa has to be > 3.2. Both criteria must be true, so this is an AND relationship: stumajor = "CI" AND stugpa > 3.2.

16 Title: Feb 3 11:32 AM (16 of 39) The results show students where the stumajor is CI and the stugpa is > 3.2.

17 This shows the logic flowchart. If stumajor = CI, I take the Y branch and ask the next question. If stugpa is > 3.2 I display. If I get a N to either question, I do nothing which means I do not display. Title: Feb 3 11:36 AM (17 of 39)

18 Now I changed and put the test for stugpa > 3.2 on the or line. This means that I want either a stumajor = CI OR a stugpa > 3.2 Title: Feb 3 11:36 AM (18 of 39)

19 Title: Feb 3 11:37 AM (19 of 39) Note that the BU major that has a stugpa > 3.2 shows on the list. All of the others meet the criteria of stumajor = CI. Note that to get on the list the record must meet either of the criteria. Some meet both but the important thing is that they meet one or the other of the criteria.

20 This shows the OR logic. If the stumajor is CI, the record is displayed. If the answer is N, I get a second chance where I test to see if stugpa > 3.2. If it is, I display. If it is not, then I have no more chances and I do not display. Title: Feb 3 11:39 AM (20 of 39)

21 Title: Feb 3 11:40 AM (21 of 39) This one tests for stumajor of eithe CI or BU.

22 Title: Feb 3 11:40 AM (22 of 39)

23 Title: Feb 3 11:41 AM (23 of 39) Another way to write stumajor is CI or BU.

24 Now I am looking for either stumajor = CI and stugpa > 3.1 OR stumajor = BU and stugpa > 3. Note the use of the criteria line and the or line. Title: Feb 3 11:42 AM (24 of 39)

25 Title: Feb 3 11:42 AM (25 of 39)

26 Title: Feb 3 11:45 AM (26 of 39)

27 Note that I saved the first query by clicking on the X for the query in the right corner and I saved it as first. This changes the order of the fields which is fine. It also tests to make sure all three criteria are true. Title: Feb 3 11:49 AM (27 of 39)

28 Note that the first criteria has two things that both have to be true. The OR only has one criteria that has to be true. This means everyone with more than 20 credits will appear on the list. In this one I want either stumajor = CI and stugpa > 3.1 OR stucredits > 20 Title: Feb 3 11:50 AM (28 of 39)

29 Title: Feb 3 11:52 AM (29 of 39)

30 If I get a N to the question about CI, I test for the number of credits > 20. If I get a no to the question about stugap > 3.2 I test the stucredits to see if it is > 20. Title: Feb 3 11:54 AM (30 of 39)

31 Alternative way to flowchart the criteria. Title: Feb 3 11:56 AM (31 of 39)

32 Now I want to develop a query where stumajor has to be CI and either the stugpa > 3.2 OR stucredits > 20 Title: Feb 3 11:58 AM (32 of 39)

33 To make sure that the stumajor is CI, I put it on both the criteria line and the or line. It now reads as stumajor = CI and stugpa > 3.2 OR stumajor = CI and stucredits > 20. Title: Feb 3 12:01 PM (33 of 39)

34 Title: Feb 3 12:02 PM (34 of 39)

35 Notice on the flowchart, if stumajor is not CI, nothing is done. If it is CI, then I test for either the stugpa > 3.2 OR the stucredits > 20. Title: Feb 3 12:03 PM (35 of 39)

36 Title: Feb 3 12:05 PM (36 of 39) Homework. Note that date released can just be the year.

37 Title: Feb 3 12:06 PM (37 of 39)

38 Title: Feb 3 12:08 PM (38 of 39) When you send to me attach the database with the.accdb extension. If it is still open you see a locked version, close and then send.

39 Title: Feb 3 12:08 PM (39 of 39) I closed the database and no longer see the locked version.

Turnitin Questions and Answers from Training Sessions

Turnitin Questions and Answers from Training Sessions Turnitin Questions and Answers from Training Sessions Questions Answers Notes Will a submission to Turnitin be textmatched against student papers stored in the Turnitin repository? Can I choose not to

More information

EMAR Medication Pass

EMAR Medication Pass EMAR Medication Pass This manual includes recording of resident medication passes on a computer. To begin your Medication Pass, click on the EMAR icon, then select a Med Provider. The listing of Med Providers

More information

CrossroadsFinder.com/jobs Jobs User Guide

CrossroadsFinder.com/jobs Jobs User Guide CrossroadsFinder.com/jobs Jobs User Guide User Guide Quick Search Using the Quick Search form at www.crossroadsfinder.com/jobs, you can quickly view all jobs in a particular category. You can also refine

More information

Educational Grant and Outcomes Database User Guide

Educational Grant and Outcomes Database User Guide Educational Grant and Outcomes Database User Guide June 06 Table of Contents Getting Started System Tips and Useful Hints p.3 Where to Find Us p.4 Logging in as a Registered User p.5 Registering as a First-Time

More information

Teacher Guide to the Florida Department of Education Roster Verification Tool

Teacher Guide to the Florida Department of Education Roster Verification Tool Teacher Guide to the 2016-17 Florida Department of Education Roster Verification Tool Table of Contents Overview... 1 Timeline... 1 Contact and Help Desk... 1 Teacher Login Instructions... 2 Teacher Review,

More information

Welcome to a tutorial on the abstract submission process for the 2015 Joint Assembly.

Welcome to a tutorial on the abstract submission process for the 2015 Joint Assembly. Welcome to a tutorial on the abstract submission process for the 2015 Joint Assembly. NOTE: Please take a few moments to review this tutorial and become oriented with the abstract submission process. Table

More information

The Embark Campus Admissions Portal

The Embark Campus Admissions Portal The Embark Campus Admissions Portal Introduction Dear Boren Awards Campus Representative, Welcome to the Embark Campus Admissions Portal. In this portal you can: View a list of in-progress and submitted

More information

EMAR Medication Pass with Pre-Pour

EMAR Medication Pass with Pre-Pour EMAR Medication Pass with Pre-Pour This manual includes the setup of medications with Pre-Pour and the recording of resident medication passes. The Pre- Pour options must be turned on in File Setup Community.

More information

Kansas University Medical Center ecrt Department Administrator Training. June 2008

Kansas University Medical Center ecrt Department Administrator Training. June 2008 Kansas University Medical Center ecrt Department Administrator Training June 2008 KUMC Process Timeline Effort Reporting Period 3 Week Pre-Review Period 3 Week Certification Period Post Certification Period

More information

CTjobs.com User Guide

CTjobs.com User Guide CTjobs.com User Guide What Is It? Introduction Connecticut s leading metro, suburban and neighborhood newspapers have joined together to create a local internet career board. The site offers the most up-to-date

More information

Mobile Lite Training Key Notes

Mobile Lite Training Key Notes Mobile Lite Training Key Notes Home Health Aides can do nothing on the mobile device until their schedule has been created. The Scheduler is responsible for assuring that an Aide care plan has been initiated

More information

Supplier Relationship Management (SRM) is an SAP product that facilitates public procurement via a web based platform.

Supplier Relationship Management (SRM) is an SAP product that facilitates public procurement via a web based platform. Supplier Relationship Management Approver MM_SRM_APP_300 Definition of SRM Supplier Relationship Management (SRM) is an SAP product that facilitates public procurement via a web based platform. Enables

More information

Getting Started: Creating a New Account and Logging In

Getting Started: Creating a New Account and Logging In Getting Started: Creating a New Account and Logging In Welcome to Meals on Wheels America s Online Grant System! Meals on Wheels America will only accept grant applications and follow-up reports that are

More information

Employee Matching Gift Program Online Registration and Application Guide

Employee Matching Gift Program Online Registration and Application Guide TABLE OF CONTENTS Registering and Accessing the Online Matching Gift System 2 Starting and Submitting a Matching Gift Application 5 Viewing Your Matching Gift Status and History 8 Nonprofit Gift Confirmations

More information

Welcome to a tutorial on the abstract submission process for the 2014 AGU Fall Meeting.

Welcome to a tutorial on the abstract submission process for the 2014 AGU Fall Meeting. Welcome to a tutorial on the abstract submission process for the 2014 AGU Fall Meeting. NOTE: The abstract submission site is NEW this year. Please take a few moments to review this tutorial and become

More information

2018 AANS Annual Scientific Meeting Abstract Instructions

2018 AANS Annual Scientific Meeting Abstract Instructions 1. Visit MyAANS and login. Enter in your user ID and password. If you forgot your user ID and/or password, please use the Login Help link. 2. Click the My Meetings icon for the dropdown box, and select

More information

EMAR: Medication and Pharmacy Setup

EMAR: Medication and Pharmacy Setup EMAR: Medication and Pharmacy Setup This manual covers EMAR System Setup: Medication Time Codes, Medication Schedule Codes, SIG Codes, Medications Treatment Setup, Medical Providers and Pharmacy. Medication

More information

Development Coeus Premium. Proposal Development

Development Coeus Premium. Proposal Development Development Coeus Premium Proposal Development Exercise Guide Day 1 [Type the company name] IS&T Training Coeus Premium: Proposal Development - Page 2 - Coeus Premium 4.3.2 Coeus Premium : Proposal Development

More information

Missed (Unmade) Visit Definition and Process

Missed (Unmade) Visit Definition and Process Definition of a Missed (Unmade) Visit: Missed (Unmade) Visit Definition and Process All patient visits are scheduled according to the physicians ordered visit frequency based upon MSA s Medicare week.

More information

User Guide on Jobs Bank Portal (Employers)

User Guide on Jobs Bank Portal (Employers) User Guide on Jobs Bank Portal (Employers) Table of Contents 7 Manage Interviews... 3 7.1 Send Interview Invite... 3 7.2 Sort Interview Invites... 6 7.3 Filter Interview Invites... 8 7.4 Confirm Applicant

More information

How to Document Unmade Visits

How to Document Unmade Visits What is an Unmade Visit? A visit is considered an unmade visit when it is not made and cannot be made up within the Medicare week. Consequently, the patient s ordered visit frequency is not met for that

More information

2019 AANS Annual Scientific Meeting Abstract Instructions

2019 AANS Annual Scientific Meeting Abstract Instructions Visit MyAANS and login. Login Enter in your user ID and password. If you forgot your user ID and/or password, please use the Login Help link. Do not create another account if you cannot remember your password.

More information

EMResource NEW User Information. Online Database for Communications, Notifications, Reporting Facility Status and Bed Availability

EMResource NEW User Information. Online Database for Communications, Notifications, Reporting Facility Status and Bed Availability EMResource NEW User Information Online Database for Communications, Notifications, Reporting Facility Status and Bed Availability Contents EMResource Regional Administrators... 2 EMResource Fact Sheet...

More information

HELP - MMH Plus (WellPoint Member Medical History Plus System) 04/12/2014

HELP - MMH Plus (WellPoint Member Medical History Plus System) 04/12/2014 MMH Plus Help Topics Home/Communications Eligibility Facility Report Lab Results Report Care Alerts Report Search Professional Report Pharmacy Report Medical Management Report Patient Summary Report Basics

More information

PROCESSING HOSPICE CTI WORKFLOW NEW ADMISSIONS

PROCESSING HOSPICE CTI WORKFLOW NEW ADMISSIONS HOSPICE CTI Upon completion of the new referral, the workflow task Create/Edit Hospice CTI Order for Medical Director and Create/Edit Hospice CTI Order for Primary Physician are generated. For new admissions,

More information

Grant E-Management System Help User Guide for Applicants, Reviewers and Co-Signatories

Grant E-Management System Help User Guide for Applicants, Reviewers and Co-Signatories Grant E-Management System Help User Guide for Applicants, Reviewers and Co-Signatories About this document This document describes how to register as a user of the Grant E-Management System, and how to

More information

Online Panel shortlisting

Online Panel shortlisting Online Panel shortlisting Go to https://jobs.reading.ac.uk/jobtrain6 The following screen will be shown Click on Sign in using Microsoft 365 The following screen will be shown Online Panel Shortlisting

More information

Go! Guide: Medication Administration

Go! Guide: Medication Administration Go! Guide: Medication Administration Introduction Medication administration is one of the most important aspects of safe patient care. The EHR assists health care professionals with safety by providing

More information

Welcome to a tutorial on the abstract submission process for the 2015 AGU Fall Meeting.

Welcome to a tutorial on the abstract submission process for the 2015 AGU Fall Meeting. Welcome to a tutorial on the abstract submission process for the 2015 AGU Fall Meeting. Please take a few moments to review this tutorial and become oriented with the 2015 process. Table of Contents Before

More information

Office of Clinical Research. CTMS Reference Guide Patient Entry & Visit Tracking

Office of Clinical Research. CTMS Reference Guide Patient Entry & Visit Tracking Se Office of Clinical Research CTMS Reference Guide Patient Entry & Visit Tracking Table of Contents Logging into CTMS... 3 Search and Recruitment / Quick Search... 4 How to Configure Quick Search Fields...

More information

KY Kids Recovery Program (KKRP) and AHARTT Client Information System

KY Kids Recovery Program (KKRP) and AHARTT Client Information System KY Kids Recovery Program (KKRP) and AHARTT Client Information System A Collaboration between the Department for Behavioral Health, Developmental and Intellectual Disabilities, the University of Kentucky

More information

C. The Assessment Wizard

C. The Assessment Wizard C. The Assessment Wizard The Assessment Wizard in CAPS 2 is used to record service eligibility determination information. The Assessment Wizard information is only one part of the three components of a

More information

2017 RN Refresher Workflow Best Practices Captions

2017 RN Refresher Workflow Best Practices Captions Slide Agenda Caption 1 Hello and welcome! This is Kelli Magoon with the EMHS Clinical Informatics team. I'd like to thank you for checking out this ecourse. It is the first of three "RN Refresher" modules

More information

GLOBALMEET FOR iphone. GLOBALMEET FOR iphone USER GUIDE

GLOBALMEET FOR iphone. GLOBALMEET FOR iphone USER GUIDE GLOBALMEET FOR iphone GLOBALMEET FOR iphone USER GUIDE Release 1.3 May 2013 TABLE OF CONTENTS GlobalMeet for iphone Overview 2 Installing GlobalMeet for iphone 3 Download the App 3 System Requirements

More information

Point of Care: Medication Pass with Pre-Pour

Point of Care: Medication Pass with Pre-Pour Point of Care: Medication Pass with Pre-Pour This manual covers completion of a Medication Pass with Pre-Pour in Point of Care. Click the Pre-Pour icon on the Point of Care home screen. Enter the time

More information

IGS Abstract Submission Instructions 2018

IGS Abstract Submission Instructions 2018 66 th Annual and Scientific Meeting 2018 Transforming Ageing Across Borders Thursday (evening) 27 th, Friday 28 th & Saturday 29 th September 2018 Slieve Russell Hotel, Cavan, Ireland IGS Abstract Submission

More information

Applicant Tutorial. Overview. Registration Page

Applicant Tutorial. Overview. Registration Page Overview This document is designed to provide grant applicants with instructions for use of the Foundant Grant Lifecycle Manager application. Remember while this document attempts to provide step-by-step

More information

EFIS. (Education Finance Information System) Training Guide and User s Guide

EFIS. (Education Finance Information System) Training Guide and User s Guide EFIS (Education Finance Information System) Training Guide and User s Guide January 2011 About this Guide This guide explains the basics of using the Education Finance Information System (EFIS). The intended

More information

Patient Assignment Version 4.81

Patient Assignment Version 4.81 Patient Assignment Version 4.81 Contents Assigning Providers to Patients... 2 Patient Card... 2 Patient Assignment Manager... 3 Patient Needs... 3 Planned Treatment... 3 General Treatment Plan... 3 Unassigned

More information

D. PROPOSAL DETAILS CREATE A NEW PROPOSAL GENERAL INFO ORGANIZATION ADD INVESTIGATORS AND KEY PERSONS CREDIT SPLIT SPECIAL REVIEW D.3.

D. PROPOSAL DETAILS CREATE A NEW PROPOSAL GENERAL INFO ORGANIZATION ADD INVESTIGATORS AND KEY PERSONS CREDIT SPLIT SPECIAL REVIEW D.3. D. PROPOSAL DETAILS D. D. D.3. D.4. D.5. D.6. D.7. D.8. D.9. D.10. D.1 D.1 CREATE A NEW PROPOSAL GENERAL INFO ORGANIZATION ADD INVESTIGATORS AND KEY PERSONS CREDIT SPLIT SPECIAL REVIEW ABSTRACT OTHER YNQ

More information

White Plains Loop Academic Year

White Plains Loop Academic Year White Plains Loop 2017-2018 Academic Year Updated as of 9-8-17 Anderson Hill Rd 1 Metro North White Plains 2 Galleria Mall 3 Mamaroneck Avenue 4 Westchester Mall 5 Residence Halls 6 Alumni Village 7 The

More information

Overview What is effort? What is effort reporting? Why is Effort Reporting necessary?... 2

Overview What is effort? What is effort reporting? Why is Effort Reporting necessary?... 2 Effort Certification Training Guide Contents Overview... 2 What is effort?... 2 What is effort reporting?... 2 Why is Effort Reporting necessary?... 2 Effort Certification Process: More than just Certification...

More information

Computer System. Computer hardware. Application software: Time-Sharing Environment. Introduction to Computer and C++ Programming.

Computer System. Computer hardware. Application software: Time-Sharing Environment. Introduction to Computer and C++ Programming. ECE 114 1 Computer System Introduction to Computer and C++ Programming Computer System Dr. Z. Aliyazicioglu Cal Poly Pomona Electrical & Computer Engineering Cal Poly Pomona Electrical & Computer Engineering

More information

Implementing ICD-10 in PayDC/APS (October 1, 2015)

Implementing ICD-10 in PayDC/APS (October 1, 2015) Implementing ICD-10 in PayDC/APS (October 1, 2015) Content from this handout is derived from the ICD-10 Overview Webinar given by David Klein on September 15, 2015, and available on our website, paydc.com,

More information

What is Click IRB? Electronic Research Submission Software

What is Click IRB? Electronic Research Submission Software What is Click IRB? Electronic Research Submission Software It simplifies the way researchers submit applications, eliminates routine errors, and alerts Principal Investigator (PI) teams of approaching

More information

erecruit User Guide Workflow Approver Advertised Job

erecruit User Guide Workflow Approver Advertised Job erecruit User Guide Workflow Approver Advertised Job Brief Document Description Overview This User Guide explains how to approve a job opening in erecruit for positions to be advertised. Positions include

More information

TORA User Guide. How to Submit an Application on TORA for Institutional Approval

TORA User Guide. How to Submit an Application on TORA for Institutional Approval TORA User Guide How to Submit an Application on TORA for Institutional Approval Contents User Guide Objectives... 1 Logging in to TORA... 1 Menu Pages View... 3 Completing the Form... 3 Tab 1: Project

More information

Volunteer Management Information System Army Volunteer Corps Volunteer User Guide

Volunteer Management Information System Army Volunteer Corps Volunteer User Guide Volunteer Management Information System Army Volunteer Corps Volunteer User Guide January 2010 Notice This manual and all of the information contained herein are confidential and proprietary to U.S. Army

More information

Inland Empire Region phone fax. CAIR v 3.30 Data Entry Guide Rev 4/09

Inland Empire Region phone fax.   CAIR v 3.30 Data Entry Guide Rev 4/09 Inland Empire Region CAIR v 3.30 Data Entry Guide Rev 4/09 Riverside County Department of Public Health A partnership between San Bernardino County Department of Public Health Help Desk 1-866-434-8774

More information

Overview of Statewide Evaluation and Data Collection Activities and Timelines: February 15, 2018 December 15, 2018

Overview of Statewide Evaluation and Data Collection Activities and Timelines: February 15, 2018 December 15, 2018 Office of Superintendent of Public Instruction 21 st Century Community Learning (CCLC) Program Evaluation and Data Collection Update for Spring 2018 April 20, 2018 Introduction: We are in a busy time of

More information

AbbVie Grant Management System (GMS) Requestor Training, Grant Request Training: General Program Support

AbbVie Grant Management System (GMS) Requestor Training, Grant Request Training: General Program Support AbbVie Grant Management System (GMS) Requestor Training, Grant Request Training: General Program Support After Reviewing this Module, You Will be Able to: Log Onto the GMS Setting up Your Security Password

More information

WEDNESDAY. 7:30am-9:30pm. February 28. Library Tour 10:30 am 11:00 am. Library Tour. Library Tour. 2:30 pm 3:00 pm. March 7

WEDNESDAY. 7:30am-9:30pm. February 28. Library Tour 10:30 am 11:00 am. Library Tour. Library Tour. 2:30 pm 3:00 pm. March 7 9:00am 4:00pm February 25 February 26 February 27 February 28 March 1 March 2 March 3 11:30 am 12:00 pm 10:30 am 11:00 am 2:30 pm 3:00 pm LIBRARY CLOSED 4:30 pm 5:00 pm 2:30 pm 3:00 pm 4:30 pm 5:00 pm

More information

Peoplesoft Effort Certification. Participant s Manual

Peoplesoft Effort Certification. Participant s Manual Peoplesoft Effort Certification Participant s Manual Version 1.3.7 Revised April, 2007 TABLE OF CONTENTS COURSE OVERVIEW... 3 INTRODUCTION... 4 LEARNING OBJECTIVES... 4 MODULE 1: WHY COMPLETE EFFORT REPORTS...

More information

Community Issues Grants 2018 Request for Proposals

Community Issues Grants 2018 Request for Proposals Community Issues Grants 2018 Request for Proposals Proposal Deadline: Wednesday, August 8, 2018 550 Montgomery Street, Suite 700 San Francisco, CA 94111 (t) 415.398.2333 (f) 415.398.4733 www.horizonsfoundation.org

More information

Promotional Scholarship Data Entry Training Manual

Promotional Scholarship Data Entry Training Manual Promotional Scholarship Data Entry Training Manual Promotional Scholarship Data Entry - Entering scholarship information and criteria into PeopleSoft. This data set supports the Undergraduate Scholarship

More information

Hostel for SC/ST Students- HFS

Hostel for SC/ST Students- HFS All India Council for Technical Education (Under Ministry of HRD, GOI) AICTE Quality Improvement Schemes - AQIS User Manual for Scheme Hostel for SC/ST Students- HFS Table of Contents Icons for Buttons...

More information

MPF Philanthropy Community User Guide

MPF Philanthropy Community User Guide MPF Philanthropy Community User Guide Table of contents MPF Community Login Pages... 2 How to Register to MPF Community... 2 How to Login to MPF Community... 2 How to Reset Password on MPG Community...

More information

Grant Reporting for Faculty Grant Expense Detail

Grant Reporting for Faculty Grant Expense Detail Grant Reporting for Faculty Grant Expense Detail This report provides line item detail expenses for a user-specified Sponsored Program. The report allows faculty and department administrators to more easily

More information

Promotional Scholarship Training Guide (Undergraduate Scholarship Search)

Promotional Scholarship Training Guide (Undergraduate Scholarship Search) Promotional Scholarship Training Guide (Undergraduate Scholarship Search) Included in this document are the detailed steps required for colleges and departments to promote scholarship opportunities to

More information

Depart Tips for Nursing

Depart Tips for Nursing Based on Nursing/Provider feedback as well as erecord Rounder observation, the following tips were created. 1. Depart -When a patient is ready to be discharged Nursing must first open Depart and click

More information

Hostel for SC/ST Students- HFS

Hostel for SC/ST Students- HFS All India Council for Technical Education (Under Ministry of HRD, GOI) AICTE Quality Improvement Schemes - AQIS User Manual for Scheme Hostel for SC/ST Students- HFS Table of Contents Icons for Buttons...

More information

ecrt System 4.5 Training

ecrt System 4.5 Training ecrt System 4.5 Training The Work List The Work List is displayed immediately after you log into the system. This screen lists the tasks that require attention. The Statements Awaiting Certification list

More information

DIGITAL MEASURES Faculty FAQ Last updated April 2017

DIGITAL MEASURES Faculty FAQ Last updated April 2017 DIGITAL MEASURES Faculty FAQ Last updated April 2017 Where do I log in? https://www.digitalmeasures.com/login/uic/faculty---arts Use your campus NetID and password. Before beginning to enter any data,

More information

Select Scheduling => Rounds Schedule => Patient Admissions and Rounds

Select Scheduling => Rounds Schedule => Patient Admissions and Rounds Patient Admission and Rounds Introduction The Rounds Module allows providers to track patients who are being seen in off-site locations, keeps a record of all admissions and charges posted during those

More information

Nursing Documentation 101

Nursing Documentation 101 Nursing Documentation 101 Module 5: Applying Knowledge Part I Handout 2014 College of Licensed Practical Nurses of Alberta. All Rights Reserved. Nursing Documentation 101 Module 5: Applying Knowledge Part

More information

2018 Polk Education Foundation Frequently Asked Scholarship Questions

2018 Polk Education Foundation Frequently Asked Scholarship Questions 2018 Polk Education Foundation Frequently Asked Scholarship Questions 1. What information do I need to start my Polk Education Foundation Scholarship Application? To begin the application process, you

More information

Patient Advisor Training Manual 2012

Patient Advisor Training Manual 2012 Accessing E-prescribing: Patient Advisor Training Manual 2012 Patient Advisor Training Manual 1) When launching into the e-prescribing system, you will be presented with the following Patient Advisor introduction

More information

Care Manager Guide SPIRIT CMTS. Care Management Tracking System. University of Washington aims.uw.edu

Care Manager Guide SPIRIT CMTS. Care Management Tracking System. University of Washington aims.uw.edu Care Manager Guide SPIRIT CMTS Care Management Tracking System University of Washington aims.uw.edu rev. 12/4/2017 Table of Contents TOP TIPS & TRICKS... 1 INTRODUCTION... 2 CARE MANAGER ACCOUNT ROLE...

More information

Clinical Forms Training Guide

Clinical Forms Training Guide Clinical Forms Training Guide 900-1177-0715 1 Summary On August 3, 2015, Florida Blue implemented an electronic Certificate of Medical Necessity called Clinical Form. For certain procedures, a Certificate

More information

The Summer Give Charity Guidebook

The Summer Give Charity Guidebook This is intended to be a comprehensive guide for charities regarding the Summer Give 2016. We aim to give a full explanation of how it works as well as some helpful tips and hints. This guide is intended

More information

Research Accounting Banner System Procedures. Table of Contents... 2

Research Accounting Banner System Procedures. Table of Contents... 2 Human Resources/Finance Information Systems Research Accounting Manual Table of Contents Table of Contents... 2 Section A: Introduction... 3 Overview... 3 Process Introduction... 4 Terminology... 5 Section

More information

Care Management User Guide for Dashboards and Alerts. December 21, 2016

Care Management User Guide for Dashboards and Alerts. December 21, 2016 Care Management User Guide for Dashboards and Alerts December 21, 2016 Table of contents User Guide Care Management Dashboard and Alerts What are Care Management Alerts and Care Management Dashboards?...

More information

NHG ROAM. ROAM Introductory Session. Research Online Administration & Management.

NHG ROAM. ROAM Introductory Session. Research Online Administration & Management. NHG ROAM Research Online Administration & Management ROAM Introductory Session www.research.nhg.com.sg Copyright 2016 National Healthcare Group. All Rights Reserved. Slide Deck version July 2016 Training

More information

WBARS FREQUENTLY ASKED QUESTIONS (Created and Updated by the Washington State Housing Finance Commission)

WBARS FREQUENTLY ASKED QUESTIONS (Created and Updated by the Washington State Housing Finance Commission) WBARS FREQUENTLY ASKED QUESTIONS (Created and Updated by the Washington State Housing Finance Commission) GENERAL ISSUES Q: Are there any written instructions for using WBARS? A. Yes, you can find written

More information

Psychiatry Online. Accessing the Database

Psychiatry Online. Accessing the Database Accessing the Database Psychiatry Online Go to the Library Homepage css.edu/library Select Databases, A to Z from the Popular Links column on the left or click on the Articles tab at the top. The College

More information

Provider User Guide. Intensive Case Management Enhancements via NaviNet

Provider User Guide. Intensive Case Management Enhancements via NaviNet Provider User Guide Intensive Case Management Enhancements via NaviNet December 2017 Provider Guide: Intensive Case Management Program Table of Contents About the Intensive Case Management (ICM) Program...

More information

GM CORPORATE GIVING ONLINE SUBMISSION GUIDE

GM CORPORATE GIVING ONLINE SUBMISSION GUIDE GM CORPORATE GIVING ONLINE SUBMISSION GUIDE For Completing the GM Grant Application General Motors is committed to fostering smart, safe and sustainable communities around the world. This presentation

More information

Vanderbilt Outpatient Order Management

Vanderbilt Outpatient Order Management Vanderbilt Outpatient Order Management 0.20.0 VOOM Phlebotomy Work List The VOOM Phlebotomy Work List is an application designed to help you manage and complete phlebotomy orders placed in the VOOM network.

More information

Hi Tech Software Solutions Are You Still Handwriting Care Plans?

Hi Tech Software Solutions Are You Still Handwriting Care Plans? Are You Still Handwriting Care Plans? Care Plans/Service Plans... 2 Overview... 2 Edit Care Plan Edit Service Plan... 4 Auto RAP/CAA Driven (for Nursing Care)... 5 Auto RAP/CAA Driven: Edit Resident Care

More information

Instructions to apply for fellowships

Instructions to apply for fellowships Instructions to apply for fellowships 2017-2018 Important Note: It is the responsibility of the applicant to be aware of the fellowships deadlines New applicants who are in the process of being admitted

More information

N.C.P.M emar-12 Page 1 of 10 BRIGHAM AND WOMEN S HOSPITAL DEPARTMENT OF NURSING ELECTRONIC MEDICATION ADMINISTRATION RECORD (EMAR) DOWNTIME POLICY

N.C.P.M emar-12 Page 1 of 10 BRIGHAM AND WOMEN S HOSPITAL DEPARTMENT OF NURSING ELECTRONIC MEDICATION ADMINISTRATION RECORD (EMAR) DOWNTIME POLICY Page 1 of 10 BRIGHAM AND WOMEN S HOSPITAL DEPARTMENT OF NURSING ELECTRONIC MEDICATION ADMINISTRATION RECORD (EMAR) DOWNTIME POLICY APPROVED FOR: RN LPN PCA GENERAL ICU OTHER PURPOSE: To insure a process

More information

Module Professional Profiles

Module Professional Profiles Professional Profiles 1 Module 3 1 2 Objectives In this module you will learn: Professional Profile basics How to create a Professional Profile How to add biosketches How to assign permissions to a Professional

More information

Enhanced Billet Analysis Tool (BAT V2) Steven W. Belcher Peter H. Stoloff

Enhanced Billet Analysis Tool (BAT V2) Steven W. Belcher Peter H. Stoloff Enhanced Billet Analysis Tool (BAT V2) Steven W. Belcher Peter H. Stoloff CAB D8789.A2/Final October 28 Approved for distribution: October 28 Defense Workforce Analyses Team Resource Analysis Division

More information

Fall 2017 Application Tutorial. Mark Diamond Research Fund Jennifer Schechter, Director

Fall 2017 Application Tutorial. Mark Diamond Research Fund Jennifer Schechter, Director Fall 2017 Application Tutorial Mark Diamond Research Fund Jennifer Schechter, Director Contents: 1. Overview of the MDRF 1. Who can apply? 2. MDRF Grant Application Process 3. MDRF Grant Application 1.

More information

University of Miami Clinical Enterprise Technologies

University of Miami Clinical Enterprise Technologies Provider Manual 1 Our Mission: To design and deliver ongoing support for a network of Business and Clinical Information Management Systems which enhance the academic and research vision while implementing

More information

SCHOOL OF NURSING STUDENT SYSTEM ACCESS & REQUIRED TRAINING

SCHOOL OF NURSING STUDENT SYSTEM ACCESS & REQUIRED TRAINING SCHOOL OF NURSING STUDENT SYSTEM ACCESS & REQUIRED TRAINING THIS STEP MUST BE COMPLETED FIRST: How to Access Seattle Children s Computer Systems Click on one of the links below to go to the instructions/requirements

More information

TRECA Tri-Rivers Educational Computer Association 2222 Marion-Mt. Gilead Road Marion, OH Parent Assist Module Parents

TRECA Tri-Rivers Educational Computer Association 2222 Marion-Mt. Gilead Road Marion, OH Parent Assist Module Parents Tri-Rivers Educational Computer Association 2222 Marion-Mt. Gilead Road Marion, OH 43302 740-389-4798 Parent Assist Module Parents October 2006 DOCUMENT REVISION INFORMATION... 3 TRAINING GUIDE OBJECTIVE...

More information

Stanford Institutes of Medicine Summer Research Program (SIMR)

Stanford Institutes of Medicine Summer Research Program (SIMR) Stanford Institutes of Medicine Summer Research Program (SIMR) PROGRAM DATES: JUNE 11- AUGUST 2, 2018 (8 weeks) APPLICATION DUE DATE: February 24, 2018 (11:59pm Pacific Standard Time) PART A: GENERAL PROGRAM

More information

Using PowerChart: Organizer View

Using PowerChart: Organizer View Slide Agenda Caption 3 1. Finding and logging into PowerChart 2. The Millennium Message Box 3. Toolbar Basics 4. The Organizer Toolbar 5. The Actions Toolbar 4 6. The Links toolbar 7. Patient Search Options

More information

DEFENSE LOGISTICS AGENCY THE NATION S COMBAT LOGISTICS SUPPORT AGENCY

DEFENSE LOGISTICS AGENCY THE NATION S COMBAT LOGISTICS SUPPORT AGENCY DEFENSE LOGISTICS AGENCY THE NATION S COMBAT LOGISTICS SUPPORT AGENCY How to Enroll in HowAMPS to Enroll in AMPS WARFIGHTER FIRST AMPS Website https://amps.dla.mil/oim If you have any questions while completing

More information

How to draft an application

How to draft an application 1. How to draft an application An application consists of an online application and its appendices (usually a research plan, a curriculum vitae, etc.). For more information, please see the call text. To

More information

PART A: GENERAL PROGRAM INFORMATION

PART A: GENERAL PROGRAM INFORMATION Stanford Institutes of Medicine Summer Research Program (SIMR) PROGRAM DATES: JUNE 13- AUGUST 4, 2016 (8 weeks) APPLICATION DUE DATE: February 20, 2016 (11:59pm Pacific Standard Time) PART A: GENERAL PROGRAM

More information

Searching the Nursing Research Literature. Created and Presented by: Ken Wright, MSLS Health Sciences Librarian

Searching the Nursing Research Literature. Created and Presented by: Ken Wright, MSLS Health Sciences Librarian Searching the Nursing Research Literature Created and Presented by: Ken Wright, MSLS Health Sciences Librarian ktwright@mchs.com 614-234-5222 1 Introduction This self-directed learning resource includes

More information

Chapter Subject Page _. Chapter 1 School Zone Overview 3 Overview. Chapter 2 Finding Your Schools 5 Schools Search by RSID Search by School Name

Chapter Subject Page _. Chapter 1 School Zone Overview 3 Overview. Chapter 2 Finding Your Schools 5 Schools Search by RSID Search by School Name Table of Contents This user guide will demonstrate how to create and maintain your school folders. The School Zone (SZ) is an automated version of the High School and Postsecondary Folders. Chapter Subject

More information

Automated Licensing Information

Automated Licensing Information Automated Licensing Information and Report Tracking System What is ALIRTS? Annual utilization data reporting Mandatory part of Licensure Statute Converted to On-line Product in 2003 Assists the State in

More information

GLOBALMEET USER GUIDE

GLOBALMEET USER GUIDE GLOBALMEET USER GUIDE Release 4.0 October 2017 (REV2) Includes: GlobalMeet web meetings GlobalMeet desktop tools (Mac and Windows) GlobalMeet for Outlook (Mac and Windows) TABLE OF CONTENTS GlobalMeet

More information

Management of Controlled Substances Ambulatory Care with Electronic Key Control Cabinet

Management of Controlled Substances Ambulatory Care with Electronic Key Control Cabinet Management of Controlled Substances Ambulatory Care with Electronic Key Control Cabinet UI Internal Audit Education Responses/Fall 2009 Revised 10/14/09 1 Management of Controlled Substances There have

More information

HMIS USER GUIDE: MN DEPARTMENT OF HUMAN SERVICES (DHS) HOUSING SUPPORT PROJECTS

HMIS USER GUIDE: MN DEPARTMENT OF HUMAN SERVICES (DHS) HOUSING SUPPORT PROJECTS HMIS USER GUIDE: MN DEPARTMENT OF HUMAN SERVICES (DHS) HOUSING SUPPORT PROJECTS Permanent Housing with Services (PH S) Permanent Supportive Housing (PSH) Permanent Housing- Housing Only (PH HO) Transitional

More information

INDIAN ASSOCIATION FOR THE CULTIVATION OF SCIENCE 2A & 2B Raja S.C.Mullick Road Jadavpur, Kolkata

INDIAN ASSOCIATION FOR THE CULTIVATION OF SCIENCE 2A & 2B Raja S.C.Mullick Road Jadavpur, Kolkata INDIAN ASSOCIATION FOR THE CULTIVATION OF SCIENCE 2A & 2B Raja S.C.Mullick Road Jadavpur, Kolkata 700032 Tender Notice No.: IACS/PC/BBD/WELLCOME-DBT/14/38 dated: 4.09.2014 Sub: Specification for CO2 Incubator

More information

ipm Information Sheet

ipm Information Sheet Research Data Entry into IPM Purposes of entering research participation data: ipm Information Sheet 1. To set up patient alerts to notify IPM users if patients are enrolled in a clinical trial/research

More information