Alternatives To Custom Dialog Box

Size: px
Start display at page:

Download "Alternatives To Custom Dialog Box"

Transcription

1 Alternatives To Custom Dialog Box

2 Contents VBA Input Box Syntax & Function The Excel InputBox method Syntax The VBA MsgBox Function The Excel GetOpenFilename Method The Excel GetSaveAsFilename Method Reference

3 VBA Input Box An input box is a simple dialog box that allows the user to make a single entry. For example, you can use an input box to let the user enter text or a number or even select a range. You can generate an InputBox in two ways: by using a VBA function and by using a method of the Application object.

4 Syntax & Function InputBox(prompt[,title][,default][,xpos][,ypos][, helpfile, context]) prompt: Required. The text displayed in the InputBox. title: Optional. The caption of the InputBox window. default: Optional. The default value to be displayed in the dialog box. xpos, ypos: Optional. The screen coordinates of the upper-left corner of the window. helpfile, context: Optional. The help file and help topic. The InputBox function prompts the user for a single piece of information. The function always returns a string, so your code may need to convert the results to a value.

5 The Excel InputBox method Advantages of Excel InputBox over VBA s InputBox: You can specify the data type returned. The user can specify a worksheet range by dragging in the worksheet. Input validation is performed automatically.

6 Syntax InputBox(Prompt[,Title][,Default][,Left][,To p][,helpfile, HelpContextID][,Type]) Prompt: Required. The text displayed in the input box. Title: Optional. The caption in the input box window. Default: Optional. The default value to be returned by the function if the user enters nothing. Left, Top: Optional. The screen coordinates of the upper-left corner of the window. HelpFile, HelpContextID: Optional. The Help file and Help topic. Type: Optional. A code for the data type returned

7 The VBA MsgBox Function VBA s MsgBox function is an easy way to display a message to the user or to get a simple response (such as OK or Cancel). Syntax:MsgBox(prompt[,buttons][,title][,helpfil e, context]) prompt: Required. The text displayed in the message box. buttons: Optional. A numeric expression that determines which buttons and icon are displayed in the message box. title: Optional. The caption in the message box window. helpfile, context: Optional. The helpfile and Help topic.

8 The Excel GetOpenFilename Method If your application needs to ask the user for a filename, you can use the InputBox function. But this approach is tedious and error-prone because the user must type the filename (with no browsing ability). A better approach is to use the GetOpenFilename method of the Application object, which ensures that your application gets a valid filename (as well as its complete path). Syntax: ApplicationGetOpenFilename(FileFilter, FilterIndex, Title, ButtonText, MultiSelect) FileFilter: Optional. A string specifying file-filtering criteria. FilterIndex: Optional. The index number of the default file-filtering criteria. Title: Optional. The title of the dialog box. If omitted, the title is Open. ButtonText: For Macintosh only. MultiSelect: Optional. If True, you can select multiple filenames. The default value is False.

9 The Excel GetSaveAsFilename Method The GetSaveAsFilename method is very similar to the GetOpenFilename method. It displays a Save As dialog box and lets the user select (or specify) a file. It returns a filename and path but doesn t take any action. Like the GetOpenFilename method, all of the GetSaveAsFilename method s arguments are optional. Syntax:Application.GetSaveAsFilename(InitialFilena me, FileFilter, FilterIndex, Title, ButtonText) The arguments are: InitialFilename: Optional. Specifies the suggested filename. FileFilter: Optional. A string specifying file-filtering criteria. FilterIndex: Optional. The index number of the default filefiltering criteria. Title: Optional. The title of the dialog box. ButtonText: For Macintosh only.

10 Reference Excel 2010 Power Programming with VBA by John Walkenbach.

11 THANK YOU

IFA/QFN VBA Tutorial Notes prepared by Keith Wong

IFA/QFN VBA Tutorial Notes prepared by Keith Wong IFA/QFN VBA Tutorial Notes prepared by Keith Wong Chapter 5: Excel Object Model 5-1: Object Browser The Excel Object Model contains thousands of pre-defined classes and constants. You can view them through

More information

Excel & Visual Basic for Applications (VBA)

Excel & Visual Basic for Applications (VBA) Class meeting #18 Monday, Oct. 26 th GEEN 1300 Introduction to Engineering Computing Excel & Visual Basic for Applications (VBA) user interfaces o on-sheet buttons o InputBox and MsgBox functions o userforms

More information

Agenda. First Example 24/09/2009 INTRODUCTION TO VBA PROGRAMMING. First Example. The world s simplest calculator...

Agenda. First Example 24/09/2009 INTRODUCTION TO VBA PROGRAMMING. First Example. The world s simplest calculator... INTRODUCTION TO VBA PROGRAMMING LESSON2 dario.bonino@polito.it Agenda First Example Simple Calculator First Example The world s simplest calculator... 1 Simple Calculator We want to design and implement

More information

MICROSOFT EXCEL 2000 LEVEL 5 VBA PROGRAMMING INTRODUCTION

MICROSOFT EXCEL 2000 LEVEL 5 VBA PROGRAMMING INTRODUCTION MICROSOFT EXCEL 2000 LEVEL 5 VBA PROGRAMMING INTRODUCTION Lesson 1 - Recording Macros Excel 2000: Level 5 (VBA Programming) Student Edition LESSON 1 - RECORDING MACROS... 4 Working with Visual Basic Applications...

More information

Contents. Some Basics Simple VBA Procedure (Macro) To Execute The Procedure Recording A Macro About Macro Recorder VBA Objects Reference

Contents. Some Basics Simple VBA Procedure (Macro) To Execute The Procedure Recording A Macro About Macro Recorder VBA Objects Reference Introduction To VBA Contents Some Basics Simple VBA Procedure (Macro) To Execute The Procedure Recording A Macro About Macro Recorder VBA Objects Reference Some Basics Code: You perform actions in VBA

More information

Work more efficiently by learning how to automate recurring tasks and create user applications

Work more efficiently by learning how to automate recurring tasks and create user applications V B A ( M A C R O S ) Work more efficiently by learning how to automate recurring tasks and create user applications Prepared by: XL Your Mind Gneisenaustraße 27 40477, Düsseldorf Germany W H A T T O E

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

MS Excel VBA Class Goals

MS Excel VBA Class Goals MS Excel VBA 2013 Class Overview: Microsoft excel VBA training course is for those responsible for very large and variable amounts of data, or teams, who want to learn how to program features and functions

More information

Excel Formulas & Functions I CS101

Excel Formulas & Functions I CS101 Excel Formulas & Functions I CS101 Topics Covered Use statistical functions Use cell references Use AutoFill Write formulas Use the RANK.EQ function Calculation in Excel Click the cell where you want to

More information

Training Guide. Microsoft Excel 2010 Advanced 1 Using Conditional and Custom Formats. Applying Conditional Formatting

Training Guide. Microsoft Excel 2010 Advanced 1 Using Conditional and Custom Formats. Applying Conditional Formatting Microsoft Excel 2010 Advanced 1 Using Conditional and Custom Formats Applying Conditional Formatting Excel lets you quickly apply Conditional Formatting to help you explore and analyze data visually, detect

More information

Excel Macro Record and VBA Editor. Presented by Wayne Wilmeth

Excel Macro Record and VBA Editor. Presented by Wayne Wilmeth Excel Macro Record and VBA Editor Presented by Wayne Wilmeth 1 What Is a Macro? Automates Repetitive Tasks Written in Visual Basic for Applications (VBA) Code Macro Recorder VBA Editor (Alt + F11) 2 Executing

More information

Understanding the MsgBox command in Visual Basic

Understanding the MsgBox command in Visual Basic Understanding the MsgBox command in Visual Basic This VB2008 tutorial explains how to use the MsgBox function in Visual Basic. This also works for VBS MsgBox. The MsgBox function displays a message in

More information

Introduction... 1 Part I: Getting Started with Excel VBA Programming Part II: How VBA Works with Excel... 31

Introduction... 1 Part I: Getting Started with Excel VBA Programming Part II: How VBA Works with Excel... 31 Contents at a Glance Introduction... 1 Part I: Getting Started with Excel VBA Programming... 9 Chapter 1: What Is VBA?...11 Chapter 2: Jumping Right In...21 Part II: How VBA Works with Excel... 31 Chapter

More information

3 IN THIS CHAPTER. Understanding Program Variables

3 IN THIS CHAPTER. Understanding Program Variables Understanding Program Variables Your VBA procedures often need to store temporary values for use in statements and calculations that come later in the code. For example, you might want to store values

More information

Click File on the menu bar to view the individual menu items and their associated icons on the File menu.

Click File on the menu bar to view the individual menu items and their associated icons on the File menu. User Interface Design 387 STEP 3 Click File on the menu bar to view the individual menu items and their associated icons on the File menu. The standard File menu items (New, Open, Save, Save As, Print,

More information

Configuring Microsoft Outlook to Connect to Hosted Exchange Service

Configuring Microsoft Outlook to Connect to Hosted Exchange Service Configuring Microsoft Outlook to Connect to Hosted Exchange Service Configuring Microsoft Outlook for Hosted Exchange Service Version: 1.0 Updated on: April 27, 2011 Page 1 of 7 TABLE OF CONTENTS Configuring

More information

Topic 4D: Import and Export Contacts

Topic 4D: Import and Export Contacts Topic 4D: Import and Export Contacts If a corporation merges with another corporation it may become necessary to add the contacts to the new merged companies contact folder. This can be done by Importing

More information

Delivering training since 1996

Delivering training since 1996 VBA (Visual Basic for Applications) is an Object Oriented Language. This programming language can be used to automate tasks by developing procedures and functions. It is useful for programmers and for

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

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

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

Using Templates. 5.4 Using Templates

Using Templates. 5.4 Using Templates 5.4 Using Templates Templates are used to create master files for control panel programming data to speed up programming of a new account. A template gives you a very quick and easy way to add a customer

More information

Oracle SQL. murach s. and PL/SQL TRAINING & REFERENCE. (Chapter 2)

Oracle SQL. murach s. and PL/SQL TRAINING & REFERENCE. (Chapter 2) TRAINING & REFERENCE murach s Oracle SQL and PL/SQL (Chapter 2) works with all versions through 11g Thanks for reviewing this chapter from Murach s Oracle SQL and PL/SQL. To see the expanded table of contents

More information

BRIEFCASES & TASKS ZIMBRA. Briefcase can be used to share and manage documents. Documents can be shared, edited, and created using Briefcases.

BRIEFCASES & TASKS ZIMBRA. Briefcase can be used to share and manage documents. Documents can be shared, edited, and created using Briefcases. BRIEFCASES & TASKS ZIMBRA BRIEFCASES Briefcase can be used to share and manage documents. Documents can be shared, edited, and created using Briefcases. Options Briefcase New Briefcase To create briefcases,

More information

Creating If/Then/Else Routines

Creating If/Then/Else Routines 10 ch10.indd 147 Creating If/Then/Else Routines You can use If/Then/Else routines to give logic to your macros. The process of the macro proceeds in different directions depending on the results of an

More information

3. (1.0 point) To quickly switch to the Visual Basic Editor, press on your keyboard. a. Esc + F1 b. Ctrl + F7 c. Alt + F11 d.

3. (1.0 point) To quickly switch to the Visual Basic Editor, press on your keyboard. a. Esc + F1 b. Ctrl + F7 c. Alt + F11 d. Excel Tutorial 12 1. (1.0 point) Excel macros are written in the programming language. a. Perl b. JavaScript c. HTML d. VBA 2. (1.0 point) To edit a VBA macro, you need to use the Visual Basic. a. Manager

More information

DOWNLOAD PDF EXCEL MACRO TO PRINT WORKSHEET TO

DOWNLOAD PDF EXCEL MACRO TO PRINT WORKSHEET TO Chapter 1 : All about printing sheets, workbook, charts etc. from Excel VBA - blog.quintoapp.com Hello Friends, Hope you are doing well!! Thought of sharing a small VBA code to help you writing a code

More information

Viewing Attachments in GroupWise on a Macintosh FAQ

Viewing Attachments in GroupWise on a Macintosh FAQ Viewing Attachments in GroupWise on a Macintosh FAQ *Note-Your Macintosh should be running Mac OS 9.2.2 before following instructions below. For free Mac OS updates 9.1, 9.2.1 & 9.2.2, point your web browser

More information

This is the preferred method when combining documents that are finished and not expected to change.

This is the preferred method when combining documents that are finished and not expected to change. Combine Documents This quick reference addresses the need to combine several documents as one (i.e. CPPR). The following are ways to create a single document from several smaller Word or Excel documents.

More information

Sort, Filter, Pivot Table

Sort, Filter, Pivot Table Sort, Filter, Pivot Table Sort A common database task is to rearrange the information based on a header/field or headers/fields. This is called Sorting or Filtering. Sorting rearranges all of the information

More information

1. Introduction Features Operating Environment Machine Data...6

1. Introduction Features Operating Environment Machine Data...6 1 Table of Contents 1. Introduction...3 1.1 Features... 4 1.2 Operating Environment... 5 2. Machine Data...6 2.1 Fetching New Machines... 8 2.2 Adding New Machines... 10 2.3 Updating Scan Data... 12 2.4

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

Quick Reference Guide: SAP CONNECT

Quick Reference Guide: SAP CONNECT Quick Reference Guide: SAP CONNECT CONTENTS (CLICK EACH ENTRY TO ACCESS DETAILS) 1 MUTE & UNMUTE... 4 2 RECORD MEETINGS... 5 3 PHONE VOLUME CONTROLS... 7 5 DISCONNECT OR HANG UP PARTICIPANTS... 8 6 INVITE

More information

Excel VLOOKUP. An EMIS Coordinator s Friend

Excel VLOOKUP. An EMIS Coordinator s Friend Excel VLOOKUP An EMIS Coordinator s Friend Vlookup, a function in excel, stands for Vertical Lookup. This function allows you to search a specific table of data, look for a match within the table of data

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

Tutorial 3 - Performing a Change-Point Analysis in Excel

Tutorial 3 - Performing a Change-Point Analysis in Excel Tutorial 3 - Performing a Change-Point Analysis in Excel Introduction This tutorial teaches you how to perform a change-point analysis while using Microsoft Excel. The Change-Point Analyzer Add-In allows

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Chapter 1 Databases and Database Objects: An Introduction Objectives Design a database to satisfy a collection of requirements Describe the features of the Access window Create a

More information

SMART Recorder. Record. Pause. Stop

SMART Recorder. Record. Pause. Stop SMART Recorder The recorder is used to record actions that are done on the interactive screen. If a microphone is attached to the computer, narration can be recorded. After the recording has been created,

More information

MgtOp 470 Business Modeling with Spreadsheets Sample Midterm Exam. 1. Spreadsheets are known as the of business analysis.

MgtOp 470 Business Modeling with Spreadsheets Sample Midterm Exam. 1. Spreadsheets are known as the of business analysis. Section 1 Multiple Choice MgtOp 470 Business Modeling with Spreadsheets Sample Midterm Exam 1. Spreadsheets are known as the of business analysis. A. German motor car B. Mexican jumping bean C. Swiss army

More information

MICROSOFT EXCEL VISUAL BASIC FOR APPLICATIONS INTERMEDIATE

MICROSOFT EXCEL VISUAL BASIC FOR APPLICATIONS INTERMEDIATE MICROSOFT EXCEL VISUAL BASIC FOR APPLICATIONS INTERMEDIATE NOTE Unless otherwise stated, screenshots of dialog boxes and screens in this book were taken using Excel 2003 running on Window XP Professional.

More information

Phone NTP Reference Configuration

Phone NTP Reference Configuration CHAPTER 5 If you want to do so, you can configure phone Network Time Protocol (NTP) references in Cisco Unified Communications Manager Administration to ensure that a SIP Phone gets its date and time from

More information

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer The American University in Cairo Excel 2000 prepared by Maha Amer Spring 2001 Table of Contents: Opening the Excel Program Creating, Opening and Saving Excel Worksheets Sheet Structure Formatting Text

More information

Excel for Engineers Part 2

Excel for Engineers Part 2 Excel for Engineers Part 2 1-2-User defined functions 3-Controls from form Toolbar 4-User form and controls 5-VBA (Visual Basic for Applications) Excel for Engineers-part2 1 Excel for Engineers-part2 2

More information

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

To complete this database, you will need the following file: CHAPTER 4 Access More Skills 13 Create Macros A macro is a set of saved actions that enable you to automate tasks. For example, a macro can open several database objects with a single click, or display

More information

Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook

Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook Slide 1 Customizing Outlook Course objectives Create a custom toolbar and customize the menu bar; customize the Quick Access toolbar,

More information

Excel QuickGuide 1 The AVERAGE Function

Excel QuickGuide 1 The AVERAGE Function 8 USING EXCEL FUNCTIONS: COMPUTING AVERAGES Excel QuickGuide 1 The AVERAGE Function What the AVERAGE Function Does The AVERAGE function takes a set of values and computes the arithmetic mean, which is

More information

Excel Reports: Formulas or PivotTables

Excel Reports: Formulas or PivotTables Excel Reports: Formulas or PivotTables TABLE OF CONTENTS 1. Cover Page 2. The Great... 3. Formula-based Reports with SUMIFS 4. Pivot Tables 5. Comparison The great...is a success of little things that

More information

Microsoft Excel 2007

Microsoft Excel 2007 Kennesaw State University Information Technology Services Microsoft Excel 2007 Special Topics PivotTable IF Function V-lookup Function Copyright 2010 KSU Dept. of Information Technology Services This document

More information

PowerScheduler Course Tally Worksheet instructions.

PowerScheduler Course Tally Worksheet instructions. PowerScheduler Course Tally Worksheet instructions. This document will describe the process of copying course request information from PowerSchool into an Excel Course Tally Worksheet. Once the information

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 1 Databases and Database Objects: An Introduction Objectives Describe the features of the Access window Create a database Create tables in Datasheet and Design views Add records

More information

UNIT ONE: The Worksheet. Workbook Window Excel Worksheet Fill handle Automatic fill Column widths Opening a file Saving a file

UNIT ONE: The Worksheet. Workbook Window Excel Worksheet Fill handle Automatic fill Column widths Opening a file Saving a file UNIT ONE: The Worksheet T o p i c s : Workbook Window Excel Worksheet Fill handle Automatic fill Column widths Opening a file Saving a file I. Start Excel: 1. Click the Start button in the lower-left corner

More information

MODULE VI: MORE FUNCTIONS

MODULE VI: MORE FUNCTIONS MODULE VI: MORE FUNCTIONS Copyright 2012, National Seminars Training More Functions Using the VLOOKUP and HLOOKUP Functions Lookup functions look up values in a table and return a result based on those

More information

Dealing with Event Viewer

Dealing with Event Viewer Dealing with Event Viewer Event Viewer is a troubleshooting tool in Microsoft Windows 2000.This how-to article will describe how to use Event Viewer. Event Viewer displays detailed information about system

More information

USING the IEDATA add-in FROM THE SPREADSHEET MENU

USING the IEDATA add-in FROM THE SPREADSHEET MENU The IEDATA add-in The IEDATA add-in is designed to allow access to the data stored in the Informa Economics database from within a Microsoft Excel spreadsheet. With this add-in, you have access to thousands

More information

IFA/QFN VBA Tutorial Notes prepared by Keith Wong

IFA/QFN VBA Tutorial Notes prepared by Keith Wong Chapter 2: Basic Visual Basic programming 2-1: What is Visual Basic IFA/QFN VBA Tutorial Notes prepared by Keith Wong BASIC is an acronym for Beginner's All-purpose Symbolic Instruction Code. It is a type

More information

Copyright. Trademarks Attachmate Corporation. All rights reserved. USA Patents Pending. WRQ ReflectionVisual Basic User Guide

Copyright. Trademarks Attachmate Corporation. All rights reserved. USA Patents Pending. WRQ ReflectionVisual Basic User Guide PROGRAMMING WITH REFLECTION: VISUAL BASIC USER GUIDE WINDOWS XP WINDOWS 2000 WINDOWS SERVER 2003 WINDOWS 2000 SERVER WINDOWS TERMINAL SERVER CITRIX METAFRAME CITRIX METRAFRAME XP ENGLISH Copyright 1994-2006

More information

Read Me First (Excel 2007)

Read Me First (Excel 2007) Read Me First (Excel 2007) Concrete Mix Evaluator Before installing the CME program please go through these steps to configure your Excel 2007. Open a NEW BLANK Workbook and click on the "Developer " (A)

More information

Accessing Help You can access Help by using the drop-down Options menu, or by pressing F1 from within any field on any screen to launch a helpfile.

Accessing Help You can access Help by using the drop-down Options menu, or by pressing F1 from within any field on any screen to launch a helpfile. IFAS Navigation IFAS navigation has three basic components: the menu bar at the top of the screen, the menu tree and command window, and the side bar along the left side of the screen. Menu options will

More information

Creating a Dynamo with VBA Scripts

Creating a Dynamo with VBA Scripts Creating a Dynamo with VBA Scripts Creating a Dynamo with VBA 1 Table of Contents 1. CREATING A DYNAMO WITH VBA... 3 1.1 NAMING CONVENTIONS FOR DYNAMO OBJECTS...3 1.2 CREATING A DYNAMO...4 1.3 DESIGNING

More information

Quick Reference Guide SharePoint Quick Reference Guide

Quick Reference Guide SharePoint Quick Reference Guide Quick Reference Guide 1 P age Table of Contents What is SharePoint?... 3 1. Home Page Layout... 4 2. Uploading Documents to a Library... 6 3. To Open a Document... 7 4. To Delete a Document... 7 5. Adding

More information

Exchange Address Book Order

Exchange Address Book Order Exchange Address Book Order From your Outlook Ribbon, locate the Address Book Click on Tools, Options 3 options are available, as shown below, select Custom to arrange the order of your address books.

More information

Server Manager User and Permissions Setup

Server Manager User and Permissions Setup Login and Security Once you successfully create your company databases, the next step is to define the groups and users that can access the TRAVERSE data and the functionality they will have within the

More information

Excel Working with Formulas and Functions. Using Relative References. Engineering Staff College of India

Excel Working with Formulas and Functions. Using Relative References. Engineering Staff College of India Excel Working with Formulas and Functions Using Relative References Using Absolute References Using Mixed References Entering Relative, Absolute, and Mixed References To enter a relative reference, type

More information

Enterprise Architect. User Guide Series. Model Wizard

Enterprise Architect. User Guide Series. Model Wizard Enterprise Architect User Guide Series Model Wizard How to create a model quickly? In Sparx Systems Enterprise Architect, the Model Wizard provides Patterns from a wide range of technologies, to help you

More information

Corporate essentials

Corporate essentials Microsoft Office Excel 2016, Corporate essentials A comprehensive package for corporates and government organisations Knowledge Capital London transforming perfomance through learning MS OFFICE EXCEL 2016

More information

BASIC MACROINSTRUCTIONS (MACROS)

BASIC MACROINSTRUCTIONS (MACROS) MS office offers a functionality of building complex actions and quasi-programs by means of a special scripting language called VBA (Visual Basic for Applications). In this lab, you will learn how to use

More information

Introduction to Microsoft Access 2016

Introduction to Microsoft Access 2016 Introduction to Microsoft Access 2016 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

Intermediate Excel 2016

Intermediate Excel 2016 Intermediate Excel 2016 Relative & Absolute Referencing Relative Referencing When you copy a formula to another cell, Excel automatically adjusts the cell reference to refer to different cells relative

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

Recommended GUI Design Standards

Recommended GUI Design Standards Recommended GUI Design Standards Page 1 Layout and Organization of Your User Interface Organize the user interface so that the information follows either vertically or horizontally, with the most important

More information

Excel The primary replacement for menus and toolbars in Office Excel 2007 is the Ribbon. Designed for easy browsing, the

Excel The primary replacement for menus and toolbars in Office Excel 2007 is the Ribbon. Designed for easy browsing, the Excel 2007 Office Fluent user interface The primary replacement for menus and toolbars in Office Excel 2007 is the Ribbon. Designed for easy browsing, the Ribbon consists of tabs that are organized around

More information

Getting Started with IBM Cognos 10 Reports

Getting Started with IBM Cognos 10 Reports UNIVERSITY OF SUSSEX Getting Started with IBM Cognos 10 Reports ITS CIS 9/2/2015 Introduction to some of the features in the Cognos Connection reporting portal. Guides users through initial configuration

More information

Unit 23 Creating Conditional Content

Unit 23 Creating Conditional Content Unit 23 Creating Conditional Content Unit Overview In this unit, you will learn how to: Create conditional build tags in the Project Manager Apply conditional build tags to text and graphics in a topic

More information

Upgrading your QuickBooks Company File Once per file only

Upgrading your QuickBooks Company File Once per file only Username: «User» License: «License_Number» Product: «Product_Number» This document walks you through upgrading your QuickBooks company file. If your file has already been upgraded, you may skip below 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

AlignSizeSpaceRow GMS For CorelDRAW Installation, Setup and Usage Document

AlignSizeSpaceRow GMS For CorelDRAW Installation, Setup and Usage Document Installation, Setup and Usage Document by Thomas Kuhn vb_whiz01@hotmail.com 1 Table of Contents What Is a GMS?... 3 Applicability... 3 Purpose of Functions... 3 Installation of the GMS Module... 5 AlignSizeSpaceRow

More information

Computer Basics. Logging onto Windows

Computer Basics. Logging onto Windows Computer Basics DRN uses Windows PCs for all of its day-to-day operations. You will need to master the details of this section in order to perform your daily tasks. Fortunately, these basics are very simple

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

Generating a Custom Bill of Materials

Generating a Custom Bill of Materials Generating a Custom Bill of Materials Old Content - visit altium.com/documentation Modified by on 6-Nov-2013 This tutorial describes how to use the Report Manager to set up a Bill of Materials (BOM) report.

More information

Microsoft OneDrive. How to login to OneDrive:

Microsoft OneDrive. How to login to OneDrive: Microsoft OneDrive The beauty of OneDrive is that is accessible from anywhere you have an Internet connection. You can access it from a Mac or Windows computer. You can even access it on your SmartPhone

More information

Hiding or Discarding Insignificant Rows in a Report Template

Hiding or Discarding Insignificant Rows in a Report Template Hiding or Discarding Insignificant Rows in a Report Template Objective: This lesson will familiarize you with the following: what the ZeroingII add-in function is how to prepare your report to use the

More information

Phone NTP Reference Configuration

Phone NTP Reference Configuration CHAPTER 8 If you want to do so, you can configure phone Network Time Protocol (NTP) references in Cisco Unified CallManager Administration to ensure that a Cisco SIP IP Phone gets its date and time from

More information

MICROSOFT ONEDRIVE FOR WINDOWS

MICROSOFT ONEDRIVE FOR WINDOWS MICROSOFT ONEDRIVE FOR WINDOWS OneDrive for Business is an integral part of Office 365 or SharePoint Server, and provides place in the cloud where you can store, share, and sync your work files. You can

More information

Microsoft Excel Lookup Functions - Reference Guide

Microsoft Excel Lookup Functions - Reference Guide LOOKUP Functions - Description Excel Lookup functions are used to look up and extract data from a list or table and insert the data into another list or table. Use the appropriate lookup function depending

More information

Working with Basic Functions. Basic Functions. Excel 2010 Working with Basic Functions. The Parts of a Function. Page 1

Working with Basic Functions. Basic Functions. Excel 2010 Working with Basic Functions. The Parts of a Function. Page 1 Excel 2010 Working with Basic Functions Working with Basic Functions Page 1 Figuring out formulas for calculations you want to make in Excel can be tedious and complicated. Fortunately, Excel has an entire

More information

Use PrimoPDF To Print Jobs That Include Attached External Documents (PowerDB Version or later)

Use PrimoPDF To Print Jobs That Include Attached External Documents (PowerDB Version or later) Use PrimoPDF To Print Jobs That Include Attached External Documents (PowerDB Version 10.5.1 or later) Overview PrimoPDF software is a free download used for creating PDF documents from any other type of

More information

Excel 2016: Formulas & Functions

Excel 2016: Formulas & Functions Excel 2016: Formulas & Functions Rylander Consulting www.rylanderconsulting.com sandy@rylanderconsulting.com 425.445.0064 ii Excel 2016: Formulas & Functions Excel 2016: Formulas & Functions i Table of

More information

Starting Kidspiration. To start Kidspiration on a Macintosh: Open the Kidspiration 3 folder and double-click the Kidspiration icon.

Starting Kidspiration. To start Kidspiration on a Macintosh: Open the Kidspiration 3 folder and double-click the Kidspiration icon. Tutorial Seven: Creating an open-ended problem in the Free Workspace The Free Workspace allows for the creation of an open-ended problem where students can choose any tool with which to complete their

More information

The QuickCalc BASIC User Interface

The QuickCalc BASIC User Interface The QuickCalc BASIC User Interface Running programs in the Windows Graphic User Interface (GUI) mode. The GUI mode is far superior to running in the CONSOLE mode. The most-used functions are on buttons,

More information

Completing Baseline s Site Survey Request Form

Completing Baseline s Site Survey Request Form Completing Baseline s Site Survey Request Form The first step in successfully implementing a radio network for your irrigation controllers is to identify the proposed locations for each radio. These radios

More information

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Basic Topics: Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Review ribbon terminology such as tabs, groups and commands Navigate a worksheet, workbook, and multiple workbooks Prepare

More information

Formulas and Functions

Formulas and Functions Conventions used in this document: Keyboard keys that must be pressed will be shown as Enter or Ctrl. Controls to be activated with the mouse will be shown as Start button > Settings > System > About.

More information

Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet!

Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet! Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet! Hi folks! Before beginning the article, I just wanted to thank Brian Allan for starting an interesting discussion on what Strong at Excel means

More information

IDENTIFYING UNIQUE VALUES IN AN ARRAY OR RANGE (VBA)

IDENTIFYING UNIQUE VALUES IN AN ARRAY OR RANGE (VBA) Date: 20/11/2012 Procedure: Identifying Unique Values In An Array Or Range (VBA) Source: LINK Permalink: LINK Created by: HeelpBook Staff Document Version: 1.0 IDENTIFYING UNIQUE VALUES IN AN ARRAY OR

More information

Microsoft How to Series

Microsoft How to Series Microsoft How to Series Getting Started with EXCEL 2007 A B C D E F Tabs Introduction to the Excel 2007 Interface The Excel 2007 Interface is comprised of several elements, with four main parts: Office

More information

Excel Tip: How to sum a column based on multiple conditions or criteria in other columns

Excel Tip: How to sum a column based on multiple conditions or criteria in other columns Excel Tip: How to sum a column based on multiple conditions or criteria in other columns Submitted by Jess on Mon, 02/24/2014-00:50 Have you ever wanted to sum a column of values but want to do it only

More information

CHEMICAL SAFETY EMS SOFTWARE. Accumulation Inventory

CHEMICAL SAFETY EMS SOFTWARE. Accumulation Inventory CHEMICAL SAFETY EMS SOFTWARE Accumulation Inventory The Accumulation Inventory Database is used to track waste materials stored in specially designated Accumulation Areas. The total quantity of waste currently

More information

Creating Visual Basic Macros that Use Microsoft Excel Solver

Creating Visual Basic Macros that Use Microsoft Excel Solver Creating Visual Basic Macros that Use Microsoft Excel Solver 1. What Is Microsoft Excel Solver? 2. Using the Solver Functions in a Visual Basic Macro 3. Designing a Macro that Creates and Solves a Simple

More information

MAILMERGE WORD MESSAGES

MAILMERGE WORD MESSAGES MAILMERGE WORD 2007 It is recommended that Excel spreadsheets are used as source files and created with separate columns for each field, e.g. FirstName, LastName, Title, Address1, Address2, City, State,

More information

An InputBox( ) function will display an input Box window where the user can enter a value or a text. The format is

An InputBox( ) function will display an input Box window where the user can enter a value or a text. The format is InputBox( ) Function An InputBox( ) function will display an input Box window where the user can enter a value or a text. The format is A = InputBox ( Question or Phrase, Window Title, ) Example1: Integer:

More information