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

Size: px
Start display at page:

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

Transcription

1 Hi [FirstName], Simply Access Tips Issue April 26 th, 2007 Welcome to the twelfth edition of Simply Access Tips for Housekeeping as usual is at the end of the Newsletter so, if you need to know how to unsubscribe, white-list, etc., then scroll to the bottom. Weekly Update Hello [FirstName], OK, my three weeks of part-time work is over and I did not keep up my end of the bargain, that is, weekly Newsletters. My apology for being tardy. I am starting back at work full-time, from next week, for a period of four months. We will just have to wait to see how I manage. I went away for a week or so and have just got back, thus why you did not receive a Newsletter last week. My husband and I went to Alice Springs a town in the Northern Territory, almost smack bang in the middle of Australia. It is in the middle of a desert, but it is greener there than it is here in Bendigo. My husband had a conference, but we went up for a couple of extra days and did a couple of trips. One out to Palm Valley (about 125 km from Alice Springs), this valley has the only specimens of this type of palm do not ask me the name. My husband is into all that sort of stuff and loved it. Took photos, scratched around in the dirt. We had to go by 4WD to get there and drove through a river bed (which was dry). The next day we went out to Rainbow Valley it gets its name due to the rock face having many colors. This was quite impressive and a mere 90 km drive from Alice Springs. It was a good break, but now back to reality. Talk to you all next week. Julie

2 Questions Unfortunately, I am unable to answer individual questions, personally, via . Purely due to the fact that all I would do is answer questions. You do, though, have three other options for me to answer your questions: 1) I can include them in an edition of Simply Access Tips (if you do not mind your question being shared). There may be a wait before they are included, depending on how many I have. 2) You can go to All Experts and post your question there; I answer one question per day from All Experts (this helps to keep control of the questions): If I am not available, there are many other experts. 3) Or, you can subscribe to my Question Subscription Service, $23.95 AUD per month, for unlimited questions: Learn VBA You may have noticed I have used VBA code in some of my answers. If you would like to learn this valuable skill to enable you to expand the flexibility of your Microsoft Access database, then click below to get your first lesson free, or cut and paste into your URL Address bar. You will need to scroll to the bottom of the page and enter your information into the form. Tips NOTE: If you are copying code from the tips and find it is not copying correctly i.e. the html is also being copied, then copy them into NotePad first (not Microsoft Word, as Word keeps the formatting) then copy from NotePad into Microsoft Access. Tip 1: Random Numbers (again, but different) Question I am building a database for a hospital. My employer has told me he wants in the program a small procedure that will create which doctors will stay overnight for job.

3 Each night will stay 2 doctors and 5 nurses in the hospital. I have the personnel in a table that has their personal data and the dates they don't want to stay in. So, what I want is to pick the 2 doctors and the 5 nurses randomly from my table, check if they are able to stay in the certain date and add them in the new list (table). Answer You need to randomly select the staff from a query that displays the relevant information, i.e. the available staff. You will need to build two queries, one that includes the doctors who are available for that date, and one that includes the nurses who are available for that date. (I m not sure of the table set-up, so difficult to instruct on how to build this query.) Make sure you include the primary key for the table in both the queries. Then, from these queries, we will need to randomly select two doctors and five nurses. You are going to need to write quite a bit of code to achieve this. I m not sure what your level of understanding is, so I will step you through it. My apologies if I am spoon-feeding you. Firstly, click on the Modules section of the database, then click on 'New'. This will open the VBE editing window. There should be one line of code that says, 'Option Compare Database'. Below this line of code type the following, 'Option Explicit'. Then, on the toolbar, click on Insert > Procedure. Name the procedure frandomnurses Type = Function Scope = Public Click on OK. The following two lines of code should be displayed: Public Function frandom() End Function In between these two lines of code, type the following: On Error GoTo ErrorHandling 'Declare all the variables Dim db As Object Dim rst As Object Dim inumberrecords As Integer Dim irecordid As Integer Dim i As Integer

4 Reference the database and recordset you wish to use, changing 'qrystayover' to 'the name of the query that contains the nurses. Set db = CurrentDb Set rst = db.openrecordset("qrystayover") 'Moves to the first, then to the last record, in order, to be able to count the number 'of records. rst.movefirst rst.movelast inumberrecords = rst.recordcount 'Randomly selects a number from this record set. irecordid = Int((iNumberRecords) * Rnd + 1) 'Moves to the first record, then steps through the records until the above randomly 'selected record is reached. rst.movefirst For i = 1 To irecordid rst.movenext Next i 'Assigns the value of the Primary Key for the recordset, in this case StaffID. Change to 'the primary key for your record set. This is likely to be the cheque number field. frandom = rst!staffid Exit Function ErrorHandling: MsgBox Err.Number & ": " & Err.Description Close the coding window by clicking on the outer-most right-hand X. Create another function but call this one frandomdoctors. The code will be the same as above, but change the qrystayover to the name of the query that contains the doctors. When you are finished, go to the forms section. If you don t already have a form in mind, open a new form in design view. Add a command button to this form, NOT using the wizard, i.e. turn the wizard off or, click on cancel when the first of the wizard windows appears.

5 Right-click on this command button and select 'Properties' from the drop-down list. Click on the 'Event' tab. Place your cursor next to 'On Click', then click on the '...' button that should now appear next to 'On Click'. Select 'Code Builder' and click on OK. This will open the code for the command button with the following two lines of code: Private Sub Command0_Click() End Sub In between these two lines of code, type the following: 'This code will run the random code and assign the randomly selected available nurses and doctors Primary Key to a table. 'Change the table and field names as required. On Error goto ErrorHandling Dim i As Integer Dim istaff as Integer dim db as Object dim rst as Object Set db = CurrentDb Set rst = db.openrecordset ("tbltostorenames") For i = 1 To 5 istaff = frandomnurse rst.addnew rst!primarykeyfieldname = istaff rst.update Next i For i = 1 To 2 istaff = frandomdoctor rst.addnew rst!primarykeyfieldname = istaff rst.update Next i rst.close db.close Exit Sub ErrorHandling: MsgBox Err.Number & ": " & Err.Description

6 Close the code window and check the command button to see if it works. Use this data to build a query, that has both the table with just the primary key and the table that has the rest of the staff information, to produce the information you require. Tip 2: Inventory Report Question I created a form that sums up the product counts of my main table (i.e. dinner plates = 140, saucers = 47, etc.). I have created a table with the total inventory of all the products (i.e. dinner plates total, saucers = 150 total, etc.). I need to create a report to produce the current inventory on hand (the difference between the total inventory of each product minus the total amount of inventory currently checked out). Answer First of all build a query, adding the table that contains the information in your first paragraph. To this query, add the identification field, that identifies each product and the field that contains the number of products. With the query in design view, click on the Totals button - it looks like a funny E. This will add a new column to your query design grid called 'Total'. Leave the product identifier as 'GroupBy', but change the field that contains the number of products to 'Sum', this will tally the total number for each product. Build a second query, (New > Design View) add the query you have just built and the table with the total inventory - join the two tables by the product identifier - by clicking on this field in one table and dragging over to this field in the second table. Add the product identifier to the query design grid, the total number of each product and the sum of each product. Then in the next available column in the first row type the following: Available:[TotalProducts] - [SumOfProducts] This will display how many items you have left. Change the names in the [] to your field names.

7 Finally: Build a report based on this query, by following the report Wizard. Tip 3: Using Error Handling an example Question I have a text control called "MSO" that has a custom auto number assigned to it from a VBA After Update event each time the user opens the form and updates the first control on the form. The MSO number is a four digit number that builds in increments of 1 and concatenates the suffix "-07" each time a new record is entered. I need help with assigning the first number to the MSO control when the form is being used for the first time and there are no records. The code I am using gives me an error message when the record count is 0. It states "incorrect use of Null." Is there a way I can assign a default starting number to this field for the first record? Here is the code: **************************** RequestedBy _ AfterUpdate Dim db As DAO.Database Dim rs As DAO.Recordset Dim strsql As String Dim NextNum As Integer Set db = CurrentDb strsql = "SELECT Max(left([MSO],4)) AS MaxNum From 2007msotbl;" Set rs = db.openrecordset(strsql) NextNum = rs!maxnum + 1 Me.MSO.Value = NextNum & "-07" ********************************** I tried the following to correct the error but it didn't work: If rs.recordcount = 0 Then NextNum = "1000" Else

8 NextNum = rs!maxnum + 1 End If Answer Many thanks for the question. Try to use Error Handling. For example, change your code to the following: (I added the new code in orange) RequestedBy _ AfterUpdate Dim db As DAO.Database Dim rs As DAO.Recordset Dim strsql As String Dim NextNum As Integer On Error Goto Errorhandler Set db = CurrentDb strsql = "SELECT Max(left([MSO],4)) AS MaxNum From 2007msotbl;" Set rs = db.openrecordset(strsql) NextNum = rs!maxnum + 1 ResumeHere: Me.MSO.Value = NextNum & "-07" Exit Sub ErrorHandler: If err.number = 94 then NextNum = "1000" Goto ResumeHere Else MsgBox = Err.Number & ": " & Err.Description End If Housekeeping Once again, just a quick reminder: Please ensure the following address is whitelisted with your ISP: jmisson@iprimus.com.au This will ensure the weekly arrival of this Newsletter.

9 Unsubscribe To unsubscribe to this Newsletter, just hit the REPLY button and type UNSUBSCRIBE in the subject section of the . I will remove you from my ing list. You will not receive any more Newsletters unless you re-apply via the website.

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

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

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

Simply Access Tips. Issue June 14 th Welcome to the sixteenth edition of Simply Access Tips for 2007.

Simply Access Tips. Issue June 14 th Welcome to the sixteenth edition of Simply Access Tips for 2007. Hi [FirstName], Simply Access Tips Issue 16 2007 June 14 th 2007 Welcome to the sixteenth edition of Simply Access Tips for 2007. Housekeeping as usual is at the end of the Newsletter so, if you need to

More information

Hands-On-8 Advancing with VBA

Hands-On-8 Advancing with VBA Hands-On-8 Advancing with VBA Creating Event Procedures In this exercise you will create a message box that will display a welcome message to the user each time your database is opened. Before starting

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

Manual Vba Access 2010 Close Form Without Saving Record

Manual Vba Access 2010 Close Form Without Saving Record Manual Vba Access 2010 Close Form Without Saving Record I have an Access 2010 database which is using a form frmtimekeeper to keep Then when the database is closed the close sub writes to that same record

More information

Manual Vba Access 2010 Recordset Find

Manual Vba Access 2010 Recordset Find Manual Vba Access 2010 Recordset Find Microsoft Access VBA Programming - ADO Recordsets for The Beginners Part 2 Demo. The Recordset property returns the recordset object that provides the data being browsed

More information

Organizing your Outlook Inbox

Organizing your Outlook Inbox Organizing your Outlook Inbox Tip 1: Filing system Tip 2: Create and name folders Tip 3: Folder structures Tip 4: Automatically organizing incoming emails into folders Tip 5: Using Colors Tip 6: Using

More information

Manual Vba Access 2010 Recordset Findfirst

Manual Vba Access 2010 Recordset Findfirst Manual Vba Access 2010 Recordset Findfirst The Recordset property returns the recordset object that provides the data being browsed in a form, report, list box control, or combo box control. If a form.

More information

Save and Load Searches in Access VBA

Save and Load Searches in Access VBA Save and Load Searches in Access VBA How to allow your users to load and save form states in Access through VBA to provide cross-session saving and retrieval of search or other information. This article

More information

List To Data. by TØny Hine find me on G+ My website with loads more MS Access videos here:- Add a Check List to your DB

List To Data. by TØny Hine find me on G+ My website with loads more MS Access videos here:- Add a Check List to your DB List To Data by TØny Hine find me on G+ My website with loads more MS Access videos here:- Add a Check List to your DB (Video 1 (8:02min) Is a run through of THIS Google Presentation Published on 11 Apr

More information

OUTLOOK VIA THE INTERNET

OUTLOOK VIA THE INTERNET OUTLOOK VIA THE INTERNET Table of Contents Page LESSON 1: GETTING STARTED...1 Logging On...1 Parts of the Outlook Window...3 Terms...4 LESSON 2: E-MAIL...6 Mail Folders...6 Composing a New Message...7

More information

Sample Follow Up Schedule

Sample Follow Up  Schedule Sample Follow Up Email Schedule Sample Follow Up Email Schedule, Examples, and Tips Day 1 Welcome Email (Deliver Promised Report) Subject line: The Report You Requested.. Subject line: Download Your Report

More information

Manual Vba Access 2010 Close Form Without Saving

Manual Vba Access 2010 Close Form Without Saving Manual Vba Access 2010 Close Form Without Saving Close form without saving record Modules & VBA. Join Date: Aug 2010 bound forms are a graphic display of the actual field. updating data is automatic. But

More information

Some (semi-)advanced tips for LibreOffice

Some (semi-)advanced tips for LibreOffice Some (semi-)advanced tips for LibreOffice by Andy Pepperdine Introduction We cover several tips on special things in Writer and Calc and anything else that turns up. Although I use LibreOffice, these should

More information

Blue Sky Factory. Driving Marketing Performance. Shake & Bake Your Campaigns Into Joanna Lawson-Matthew & DJ Waldow

Blue Sky Factory. Driving  Marketing Performance. Shake & Bake Your  Campaigns Into Joanna Lawson-Matthew & DJ Waldow Blue Sky Factory Driving Email Marketing Performance Shake & Bake Your Email Campaigns Into 2010 Joanna Lawson-Matthew & DJ Waldow November 5, 2009 1:00 to 1:45 PM ET Twitter: #bsfwebinar Baltimore, Maryland

More information

Outlook Web Access Exchange Server

Outlook Web Access Exchange Server Outlook Web Access Exchange Server Version 2.0 Information Technology Services 2008 Table of Contents I. INTRODUCTION... 1 II. GETTING STARTED... 1 A. Logging In and Existing Outlook Web Access... 1 B.

More information

10/31/2016 Spark US 2016 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any

10/31/2016 Spark  US 2016 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any Email Guide 10/31/2016 Spark Email US 2016 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including

More information

Mailman at Langara College

Mailman at Langara College Mailman at Langara College Information for Subscribers and Administrators All Langara mailing lists are designated PRIVATE: only the people who belong to such a list can send email to it. The list owner

More information

Creating a Crosstab Query in Design View

Creating a Crosstab Query in Design View Procedures LESSON 31: CREATING CROSSTAB QUERIES Using the Crosstab Query Wizard box, click Crosstab Query Wizard. 5. In the next Crosstab Query the table or query on which you want to base the query. 7.

More information

Lesson 13 Transcript: User-Defined Functions

Lesson 13 Transcript: User-Defined Functions Lesson 13 Transcript: User-Defined Functions Slide 1: Cover Welcome to Lesson 13 of DB2 ON CAMPUS LECTURE SERIES. Today, we are going to talk about User-defined Functions. My name is Raul Chong, and I'm

More information

HARBORTOUCH RESERVATIONS & WAITLIST MANUAL

HARBORTOUCH RESERVATIONS & WAITLIST MANUAL RESERVATIONS & WAITLIST MANUAL Table of Contents Reservations Setup Wizard... 1 Introduction to the Setup Wizard... 1 Accessing the Reservations Setup Wizard... 2 Accessing Reservations... 2 Reservations

More information

Contents INDEX...83

Contents INDEX...83 Email Guide 012511 Blackbaud NetCommunity 2011 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including

More information

What s a module? Some modules. it s so simple to make your page unique

What s a module? Some modules. it s so simple to make your page unique How to guide What s a module? To create a functioning network without knowing about code, you need to be fluent in drag and drop. Webjam is made up of scores of modules. Modules are the tools that Webjam

More information

Smart Access. CROSSTAB queries are helpful tools for displaying data in a tabular. Automated Excel Pivot Reports from Access. Mark Davis. vb123.

Smart Access. CROSSTAB queries are helpful tools for displaying data in a tabular. Automated Excel Pivot Reports from Access. Mark Davis. vb123. vb123.com Smart Access Solutions for Microsoft Access Developers Automated Excel Pivot Reports from Access Mark Davis 2000 2002 Excel pivot reports are dynamic, easy to use, and have several advantages

More information

The Quick And Easy Affiliate Setup List

The Quick And Easy Affiliate Setup List Lesson #3 The Quick And Easy Affiliate Setup List - SUPPLEMENT - By Dennis Becker and Rachel Rofe AffiliateDominationSecrets.com NOTICE: You Do NOT Have the Right to Reprint or Resell this Report! You

More information

Word for Job Seekers. Things to consider while making your resume

Word for Job Seekers. Things to consider while making your resume Word is the most common document creation and editing computer program. Most public libraries have either Word 2007, 2010, or 2013. This handout covers Word 2013. Microsoft Word 2013 can be purchased along

More information

EQUELLA Workflow Moderation Guide

EQUELLA Workflow Moderation Guide Helping put innovation into education EQUELLA Workflow Moderation Guide Version 6.5 MELBOURNE - CANBERRA - HOBART 1800 EDALEX - www. edalexsolutions.com ABN 56 611 448 394 Document History Date Change

More information

Excel Level 1

Excel Level 1 Excel 2016 - Level 1 Tell Me Assistant The Tell Me Assistant, which is new to all Office 2016 applications, allows users to search words, or phrases, about what they want to do in Excel. The Tell Me Assistant

More information

Learning Objectives. Description. Your AU Expert(s) Trent Earley Behlen Mfg. Co. Shane Wemhoff Behlen Mfg. Co.

Learning Objectives. Description. Your AU Expert(s) Trent Earley Behlen Mfg. Co. Shane Wemhoff Behlen Mfg. Co. PL17257 JavaScript and PLM: Empowering the User Trent Earley Behlen Mfg. Co. Shane Wemhoff Behlen Mfg. Co. Learning Objectives Using items and setting data in a Workspace Setting Data in Related Workspaces

More information

Win-Back Campaign- Re-Engagement Series

Win-Back Campaign- Re-Engagement Series Win-Back Campaign- Re-Engagement Series At this point the re-engagement campaign has ended, so if the prospect still hasn t responded it s time to turn up the heat. NOTE: In the emails below, everywhere

More information

To complete this database, you will need the following file:

To complete this database, you will need the following file: = CHAPTER 5 Access More Skills 13 Specify Relationship Join Types Database objects forms, queries, and reports display fields from related tables by matching the values between the fields common to both

More information

Contents. What's New. Upcoming new version. Newsletter #43 (Aug 6, 2017) A couple quick reminders:

Contents. What's New. Upcoming new version. Newsletter #43 (Aug 6, 2017) A couple quick reminders: Campground Master Newsletter #43 (Aug 6, 2017) 1 Newsletter #43 (Aug 6, 2017) Contents A couple quick reminders: Make Backups! It's so sad when we hear from someone whose computer has crashed and they

More information

What s New in Cognos. Cognos Analytics Participant s Guide

What s New in Cognos. Cognos Analytics Participant s Guide What s New in Cognos Cognos Analytics Participant s Guide Welcome to What s New in Cognos! Illinois State University has undergone a version upgrade of IBM Cognos to Cognos Analytics. All functionality

More information

Blitz! Finding your inbox unmanageable? Follow the tips in this document to take back control.

Blitz! Finding your inbox unmanageable? Follow the tips in this document to take back control. Finding your inbox unmanageable? Follow the tips in this document to take back control. Turn on reading pane to speed up checking When having a clear out, the reading pane lets you check the content of

More information

TO: Lewis University Faculty and Staff. FROM: Mona LaMontagne Office of Marketing and Communications. DATE: October 31, 2006

TO: Lewis University Faculty and Staff. FROM: Mona LaMontagne Office of Marketing and Communications. DATE: October 31, 2006 TO: Lewis University Faculty and Staff FROM: Mona LaMontagne Office of Marketing and Communications DATE: October 31, 2006 RE: Campus Communication via University News In an effort to promote better communication

More information

Exsys RuleBook Selector Tutorial. Copyright 2004 EXSYS Inc. All right reserved. Printed in the United States of America.

Exsys RuleBook Selector Tutorial. Copyright 2004 EXSYS Inc. All right reserved. Printed in the United States of America. Exsys RuleBook Selector Tutorial Copyright 2004 EXSYS Inc. All right reserved. Printed in the United States of America. This documentation, as well as the software described in it, is furnished under license

More information

Ms Excel Vba Continue Loop Through Columns Range

Ms Excel Vba Continue Loop Through Columns Range Ms Excel Vba Continue Loop Through Columns Range Learn how to make your VBA code dynamic by coding in a way that allows your 5 Different Ways to Find The Last Row or Last Column Using VBA In Microsoft

More information

The Quick And Easy Affiliate Setup List

The Quick And Easy Affiliate Setup List "Affiliate Marketing With Roy Carter!" Lesson #3 The Quick And Easy Affiliate Setup List - SUPPLEMENT - By Roy Carter NOTICE: You Do NOT Have the Right to Reprint or Resell this Report! You Also MAY NOT

More information

Hello World! Computer Programming for Kids and Other Beginners. Chapter 1. by Warren Sande and Carter Sande. Copyright 2009 Manning Publications

Hello World! Computer Programming for Kids and Other Beginners. Chapter 1. by Warren Sande and Carter Sande. Copyright 2009 Manning Publications Hello World! Computer Programming for Kids and Other Beginners by Warren Sande and Carter Sande Chapter 1 Copyright 2009 Manning Publications brief contents Preface xiii Acknowledgments xix About this

More information

Term Definition Introduced in: This option, located within the View tab, provides a variety of options to choose when sorting and grouping Arrangement

Term Definition Introduced in: This option, located within the View tab, provides a variety of options to choose when sorting and grouping Arrangement 60 Minutes of Outlook Secrets Term Definition Introduced in: This option, located within the View tab, provides a variety of options to choose when sorting and grouping Arrangement messages. Module 2 Assign

More information

NHS e-referral Service

NHS e-referral Service 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,

More information

Reservations and Waitlist Manual

Reservations and Waitlist Manual Reservations and Waitlist Manual Reservations and Waitlist Manual 1 Reservations Setup Wizard 1.1 Introduction to the Setup Wizard - Please read before beginning the Setup Wizard 5 2 Accessing the Reservations

More information

Introduction to Excel

Introduction to Excel Introduction to Excel Written by Jon Agnone Center for Social Science Computation & Research 145 Savery Hall University of Washington Seattle WA 98195 U.S.A. (206)543-8110 November 2004 http://julius.csscr.washington.edu/pdf/excel.pdf

More information

Navigating Viewpoint V6 Exploring the Viewpoint Main Menu

Navigating Viewpoint V6 Exploring the Viewpoint Main Menu Navigating Viewpoint V6 Exploring the Viewpoint Main Menu Table of Contents About this Course 3 Viewpoint Folder Structure 4 File Menu 5 View Menu 6 Options Menu 7 User Options 7 Help Menu 9 Support 9

More information

Illustrated Roadmap. for Windows

Illustrated Roadmap. for Windows Illustrated Roadmap for Windows This Illustrated Roadmap was designed to help the Computer Coordinator customize GradeQuick for their school and for teachers to make further customizations that will affect

More information

Table of Contents. Part I WageLoch Control 3. Part II WageLoch Roster 20. Contents. Foreword 0. 4 Deleting... a previous roster

Table of Contents. Part I WageLoch Control 3. Part II WageLoch Roster 20. Contents. Foreword 0. 4 Deleting... a previous roster Contents 1 Table of Contents Foreword 0 Part I WageLoch Control 3 1 Staff members... 4 Creating a staff... member 4 Terminating an... employee 5 Re-activating... a terminated employee 6 2 Pay levels...

More information

CONTENT CALENDAR USER GUIDE SOCIAL MEDIA TABLE OF CONTENTS. Introduction pg. 3

CONTENT CALENDAR USER GUIDE SOCIAL MEDIA TABLE OF CONTENTS. Introduction pg. 3 TABLE OF CONTENTS SOCIAL MEDIA Introduction pg. 3 CONTENT 1 Chapter 1: What Is Historical Optimization? pg. 4 2 CALENDAR Chapter 2: Why Historical Optimization Is More Important Now Than Ever Before pg.

More information

Excel Tips for Compensation Practitioners Month 1

Excel Tips for Compensation Practitioners Month 1 Excel Tips for Compensation Practitioners Month 1 Introduction This is the first of what will be a weekly column with Excel tips for Compensation Practitioners. These tips will cover functions in Excel

More information

Microsoft Office 2010: Introductory Q&As Access Chapter 3

Microsoft Office 2010: Introductory Q&As Access Chapter 3 Microsoft Office 2010: Introductory Q&As Access Chapter 3 Is the form automatically saved the way the report was created when I used the Report Wizard? (AC 142) No. You will need to take specific actions

More information

Employee My Information and ESS. South West Healthcare. Moyne Health Services. Colac Area Health. Terang and Mortlake Health Service

Employee My Information and ESS. South West Healthcare. Moyne Health Services. Colac Area Health. Terang and Mortlake Health Service KRONOS Employee My Information and ESS South West Healthcare Moyne Health Services Colac Area Health Terang and Mortlake Health Service Timboon and District Healthcare Service Version 4 10/02/2017 Page

More information

Ning Frequently Asked Questions

Ning Frequently Asked Questions Ning Frequently Asked Questions Ning is a Web tool that allows anyone to create a customizable social network, allowing users to share pictures and videos, maintain blogs, communicate in chat and discussion

More information

Navigating Viewpoint V6 Function Keys

Navigating Viewpoint V6 Function Keys Navigating Viewpoint V6 Function Keys Table of Contents About this Course 3 F1 Online Help 4 F2 Rename Folder & Edit Cell 4 F3 Field Properties 4 F4 Lookup 6 F5 Setup 8 F6 Calculator 9 F7 Calendar 10 F8

More information

Evolution Query Builder Manual

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

More information

DOWNLOAD PDF CAN I ADD A PAGE TO MY WORD UMENT

DOWNLOAD PDF CAN I ADD A PAGE TO MY WORD UMENT Chapter 1 : How to Add a Word Document to a Word Document blog.quintoapp.com Adding a Word document file into another helps save time. There are a number of ways you can do this. You can copy the document

More information

Solar Eclipse Scheduler. Release 9.0

Solar Eclipse Scheduler. Release 9.0 Solar Eclipse Scheduler Release 9.0 Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents, including the viewpoints, dates

More information

Using the Drag-and-Drop Report Builder

Using the Drag-and-Drop Report Builder Using the Drag-and-Drop Report Builder Salesforce, Spring 16 @salesforcedocs Last updated: January 7, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Advanced Training Guide

Advanced Training Guide Advanced Training Guide West Corporation 100 Enterprise Way, Suite A-300 Scotts Valley, CA 95066 800-920-3897 www.schoolmessenger.com Contents Before you Begin... 4 Advanced Lists... 4 List Builder...

More information

Scheduler User Guide. Version 6

Scheduler User Guide. Version 6 Scheduler User Guide Version 6 Scheduler Program and User Guide 2003 Emergency Medicine Informatics, LLC. All rights reserved. 2 Introduction...7 The Scheduling Process...7 Shift Description...8 On Call

More information

Advanced Training COMMUNICATE. West Corporation. 100 Enterprise Way, Suite A-300 Scotts Valley, CA

Advanced Training COMMUNICATE. West Corporation. 100 Enterprise Way, Suite A-300 Scotts Valley, CA COMMUNICATE Advanced Training West Corporation 100 Enterprise Way, Suite A-300 Scotts Valley, CA 95066 800-920-3897 www.schoolmessenger.com 2017 West Corp. All rights reserved. [Rev 2.0, 05172017]. May

More information

Add Bullets and Numbers

Add Bullets and Numbers . Lesson 5: Adding Bullets and Numbers, If you have lists of data, you may want to bullet or number them. When using Microsoft Word, bulleting and numbering are easy. The first part of this lesson teaches

More information

RITIS Training Module 4 Script

RITIS Training Module 4 Script RITIS Training Module 4 Script Welcome to the Regional Integrated Information System or RITIS Module 04 CBT. To begin, select the start button or press Shift+N on your keyboard. This training module will

More information

Report Attendance. If you have a new member or find that one is missing from ClubRunner, you can add that member easily.

Report Attendance. If you have a new member or find that one is missing from ClubRunner, you can add that member easily. The Basics For Club Executives If you are a club executive, you can update your club and membership information and report monthly attendance. For help logging in and updating your own information please

More information

Post Experiment Interview Questions

Post Experiment Interview Questions Post Experiment Interview Questions Questions about the Maximum Problem 1. What is this problem statement asking? 2. What is meant by positive integers? 3. What does it mean by the user entering valid

More information

Wisdom Master Pro (v2.0) User Guide for Students

Wisdom Master Pro (v2.0) User Guide for Students (v2.0) User Guide for Students e-campus Homepage 4 Log in to e-campus 6 Personal Area 6 I. My Courses... 6 II. My Portal... 12 III. My Profile... 16 IV. My Assignments... 18 V. My Tests... 19 VI. My Learning...

More information

LYRIS LIST ESSENTIAL MANUAL

LYRIS LIST ESSENTIAL MANUAL LYRIS LIST ESSENTIAL MANUAL 1 Post via Email... 3 Log into Lyris List... 4 Access to login window... 4 Overview the Lyris ListManager administrator interface... 5 Logging Out... 6 Change Lists... 6 Change

More information

VBA Excel 2013/2016. VBA Visual Basic for Applications. Learner Guide

VBA Excel 2013/2016. VBA Visual Basic for Applications. Learner Guide VBA Visual Basic for Applications Learner Guide 1 Table of Contents SECTION 1 WORKING WITH MACROS...5 WORKING WITH MACROS...6 About Excel macros...6 Opening Excel (using Windows 7 or 10)...6 Recognizing

More information

DbSchema Forms and Reports Tutorial

DbSchema Forms and Reports Tutorial DbSchema Forms and Reports Tutorial Contents Introduction... 1 What you will learn in this tutorial... 2 Lesson 1: Create First Form Using Wizard... 3 Lesson 2: Design the Second Form... 9 Add Components

More information

Contents Office 365 Groups in Outlook 2016 on the web... 3 What are groups?... 3 Tips for getting the most out of Office 365 Groups...

Contents Office 365 Groups in Outlook 2016 on the web... 3 What are groups?... 3 Tips for getting the most out of Office 365 Groups... Contents Office 365 Groups in Outlook 2016 on the web... 3 What are groups?... 3 Tips for getting the most out of Office 365 Groups... 3 Create a Group in Web Outlook... 4 Group limits... 6 Group privacy...

More information

Decatur City Schools

Decatur City Schools Decatur City Schools Table of Contents Introduction...5 Objectives...5 Why GW web?...5 Log in options...5 The menu...7 Blue title bar...7 Navigation...7 Folder list...8 Buttons in the message pane...8

More information

ACS Virtual Event Attendee Guide

ACS Virtual Event Attendee Guide ACS Virtual Event Attendee Guide Computer Checks It is essential that you run the following Computer Checks WELL IN ADVANCE of the live event day to ensure that your computer is set up properly to perform

More information

Introduction to 9.0. Introduction to 9.0. Getting Started Guide. Powering collaborative online communities.

Introduction to 9.0. Introduction to 9.0. Getting Started Guide. Powering collaborative online communities. Introduction to 9.0 Introduction to 9.0 Getting Started Guide Powering collaborative online communities. TABLE OF CONTENTS About FirstClass...3 Connecting to your FirstClass server...3 FirstClass window

More information

Google Docs: Spreadsheet basics

Google Docs: Spreadsheet basics Google Docs: Spreadsheet basics Once you know the basics on how to access, create, and edit Google Docs, read here to learn the basics that apply specifically to Google Docs spreadsheets. Create a spreadsheet

More information

[ SEO LINK ROBOT QUICK USAGE GUIDE]

[ SEO LINK ROBOT QUICK USAGE GUIDE] This document is based on a set of emails I sent out to trial users to give tips and ideas on running seo link robot. Initial Setups Hope you have now downloaded and installed Seo Link Robot and are ready

More information

End User Guide - Commportal

End User Guide - Commportal End User Guide - Commportal Table of contents Table of contents 3 1 Introducing CommPortal 6 1.1 Accessing 6 1.2 Logging In 6 1.3 Using CommPortal 7 1.4 Getting Help 9 1.5 Refreshing a Page 9 1.6 Logging

More information

Using Parameter Queries

Using Parameter Queries [Revised and Updated 21 August 2018] A useful feature of the query is that it can be saved and used again and again, whenever we want to ask the same question. The result we see (the recordset) always

More information

Contents. Page 3: Uploading Contacts. Page 5: Sending a Message. Page 7: Analysing your Message. Page 9: Unsubscribe a Contact. Page 11: Add a Forward

Contents. Page 3: Uploading Contacts. Page 5: Sending a Message. Page 7: Analysing your Message. Page 9: Unsubscribe a Contact. Page 11: Add a Forward How To Guide From sending a message to tracking your URL link, you ll be a texting pro in no time with this handy guide that will take you through the SMS platform step-by-step. Contents Page 3: Uploading

More information

Manual Vba Access 2010 Recordset Query

Manual Vba Access 2010 Recordset Query Manual Vba Access 2010 Recordset Query I used the below vba code in Excel 2007 to query Access 2007 accdb database successfully. Credit (Taken from "The Excel Analyst's Guide to Access" by Michael Recordset

More information

SOCE Wordpress User Guide

SOCE Wordpress User Guide SOCE Wordpress User Guide 1. Introduction Your website runs on a Content Management System (CMS) called Wordpress. This document outlines how to modify page content, news and photos on your website using

More information

DbSchema Forms and Reports Tutorial

DbSchema Forms and Reports Tutorial DbSchema Forms and Reports Tutorial Introduction One of the DbSchema modules is the Forms and Reports designer. The designer allows building of master-details reports as well as small applications for

More information

QSalesData User Guide

QSalesData User Guide QSalesData User Guide Updated: 11/10/11 Installing the QSalesData Software... 2 Licensing the QSalesData Product... 3 Build QSalesData fields in ACT Step 2 of Install Checklist... 4 Adding the QB Data

More information

Tabs, Tables & Columns

Tabs, Tables & Columns Tabs, Tables & Columns What we will cover Creating tables Formatting tables Sorting information in tables Using columns Using tabs Tables You can insert a table several: Insert Table button This will open

More information

Fire Station

Fire Station Fire Station Quick Start Guide Step 1: Uninstall demo version of Fire Station (if installed) If you ve installed the demo version of Fire Station, you will need to uninstall it before installing the full

More information

Introduction to Cognos

Introduction to Cognos Introduction to Cognos User Handbook 7800 E Orchard Road, Suite 280 Greenwood Village, CO 80111 Table of Contents... 3 Logging In To the Portal... 3 Understanding IBM Cognos Connection... 4 The IBM Cognos

More information

Password Protect an Access Database

Password Protect an Access Database Access a Password Protected Microsoft Access Database from within Visual Basic 6 Have you ever wanted to password protect an Access Database that is a Data Store (a repository of Data) used in one of your

More information

Voice Messaging User Guide from Level 3. Updated April Level 3 Communications, LLC. All rights reserved. 1

Voice Messaging User Guide from Level 3. Updated April Level 3 Communications, LLC. All rights reserved. 1 Voice Messaging User Guide from Level 3 Updated April 2017 Level 3 Communications, LLC. All rights reserved. 1 Table of Contents 1 Introduction... 4 1.1 Voice Mailbox... 4 1.2 Additional Voice Mailbox

More information

The HOME Tab: Cut Copy Vertical Alignments

The HOME Tab: Cut Copy Vertical Alignments The HOME Tab: Cut Copy Vertical Alignments Text Direction Wrap Text Paste Format Painter Borders Cell Color Text Color Horizontal Alignments Merge and Center Highlighting a cell, a column, a row, or the

More information

GUARD1 PLUS Documentation. Version TimeKeeping Systems, Inc. GUARD1 PLUS and THE PIPE are registered trademarks

GUARD1 PLUS Documentation. Version TimeKeeping Systems, Inc. GUARD1 PLUS and THE PIPE are registered trademarks GUARD1 PLUS Documentation Version 3.02 2000-2005 TimeKeeping Systems, Inc. GUARD1 PLUS and THE PIPE are registered trademarks i of TimeKeeping Systems, Inc. Table of Contents Welcome to Guard1 Plus...

More information

4/27/2018 Blackbaud Internet Solutions 4.5 US 2015 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted

4/27/2018 Blackbaud Internet Solutions 4.5  US 2015 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted Email Guide 4/27/2018 Blackbaud Internet Solutions 4.5 Email US 2015 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic,

More information

Edition 3.2. Tripolis Solutions Dialogue Manual version 3.2 2

Edition 3.2. Tripolis Solutions Dialogue Manual version 3.2 2 Edition 3.2 Tripolis Solutions Dialogue Manual version 3.2 2 Table of Content DIALOGUE SETUP... 7 Introduction... 8 Process flow... 9 USER SETTINGS... 10 Language, Name and Email address settings... 10

More information

User Guide. Chapter 6. Teacher Pages

User Guide. Chapter 6. Teacher Pages User Guide Chapter 6 s Table of Contents Introduction... 5 Tips for s... 6 Pitfalls... 7 Key Information... 8 I. How to add a... 8 II. How to Edit... 10 SharpSchool s WYSIWYG Editor... 11 Publish a...

More information

Instructor: Craig Duckett. Lecture 03: Tuesday, April 3, 2018 SQL Sorting, Aggregates and Joining Tables

Instructor: Craig Duckett. Lecture 03: Tuesday, April 3, 2018 SQL Sorting, Aggregates and Joining Tables Instructor: Craig Duckett Lecture 03: Tuesday, April 3, 2018 SQL Sorting, Aggregates and Joining Tables 1 Assignment 1 is due LECTURE 5, Tuesday, April 10 th, 2018 in StudentTracker by MIDNIGHT MID-TERM

More information

ClockIt-Online User Guide

ClockIt-Online User Guide ClockIt-Online User guide V5.4 Page 1 Content Purpose...4 Terminology...4 Logging in...5 Dashboard...6 Navigation...6 My account...8 Company duty roster...9 Open shifts...11 Prerequisite...11 Applying

More information

Introduction to Access 97/2000

Introduction to Access 97/2000 Introduction to Access 97/2000 PowerPoint Presentation Notes Slide 1 Introduction to Databases (Title Slide) Slide 2 Workshop Ground Rules Slide 3 Objectives Here are our objectives for the day. By the

More information

User Manual Windows & macos

User Manual Windows & macos User Manual Windows & macos Version: 6.3 January 2018 https://focusme.com Getting Focus Hi, Thank you for using FocusMe. Our goal is to help you to get more productive and be in charge of your computer

More information

Google Sheets: Spreadsheet basics

Google Sheets: Spreadsheet basics Google Sheets: Spreadsheet basics You can find all of your spreadsheets on the Google Sheets home screen or in Google Drive. Create a spreadsheet On the Sheets home screen, click Create new spreadsheet

More information

COMMUNICATE. Advanced Training. West Corporation. 100 Enterprise Way, Suite A-300. Scotts Valley, CA

COMMUNICATE. Advanced Training. West Corporation. 100 Enterprise Way, Suite A-300. Scotts Valley, CA COMMUNICATE Advanced Training West Corporation 100 Enterprise Way, Suite A-300 Scotts Valley, CA 95066 800-920-3897 www.schoolmessenger.com Contents Before you Begin... 4 Advanced Lists... 4 List Builder...

More information

Excel Macro Runtime Error Code 1004 Saveas Of Object _workbook Failed

Excel Macro Runtime Error Code 1004 Saveas Of Object _workbook Failed Excel Macro Runtime Error Code 1004 Saveas Of Object _workbook Failed The code that follows has been courtesy of this forum and the extensive help i received from everyone. But after an Runtime Error '1004'

More information

OUTLOOK WEB ACCESS UOW USER GUIDE INDEX

OUTLOOK WEB ACCESS UOW USER GUIDE INDEX OUTLOOK WEB ACCESS UOW USER GUIDE INDEX ACCESSING MAIL... 2 SETTING UP... 2 OPTIONS... 3 VIEWING... 4 ARRANGE MESSAGES... 4 CREATING/SENDING A NEW MESSAGE... 5 REPLYING TO MESSAGES... 5 FORWARDING MESSAGES...

More information