Quosal Form Designer Training Documentation

Size: px
Start display at page:

Download "Quosal Form Designer Training Documentation"

Transcription

1 Chapter 4 Advanced Form Design Concepts There is a huge amount of customization that can be done with the Report Designer, and basic quote forms only scratch the surface. Learning how to use the advanced functionality of the Report Designer in tandem with Quosal can produce amazing results. This chapter is an overview of the main concepts you ll need to know: More about Data Bindings Most tags in Quosal have names that are descriptive enough to be self explanatory, such as [QuoteToCustomer.City] or [QuoteItemsList.PrintedPrice]. There are also several custom tags available at each level of the quote (except for financing). Custom tags are very commonly used for more advanced projects where data needs to be stored that does not fit within a pre defined tag. Custom tags are also important for scripting, where a script might calculate a value based on certain aspects of the quote, then populate that value into a custom field that can then be pulled onto the quote form. Any given tag represents one out of five different kinds of data: Strings ( I m a string! ) Decimals ( ) Boolean values (True/False) Pictures Dates The screenshot below shows a selection of custom fields available on the item level: On the quote level, each tag represents one piece of information, such as [QuoteName]. This is because there is only one quote. Conversely, a quote typically has several tabs, and on each tab, there are several items. For this reason, QuoteTabsList and QuoteItemsList level tags, such as [QuoteTabsList.TabName], represent several pieces of information, kind of like an array or list. For a quote that has 5 tabs (Cover Letter, Executive Summary, Project Outline, Pricing, Terms), [QuoteTabsList.TabName] equals the name of each of those tabs, and depending on the situation it can display one, or all, or anything in between. 1 P age

2 Filter Strings Filter strings do exactly what you would expect. They give you an easy way to set conditions that filter out information you don t need on a specific section of your quote. The filter string for any detail report band is located in the Tasks menu. You can either edit the string within the Tasks menu, or click on the [ ] button to the right of Filter String to open up the Filter String Editor, which is a visual representation of the conditions. In the screenshot above, the filter string has been set to look for tabs where the [IsEmpty] Boolean condition is False, which asks the question of each tab: Is this empty? and looks for the answer no in order to display the tab. The second condition is that the [TabName] tag should be equal to Cover Letter. This means that only a tab with the exact name Cover Letter will print. Because these conditions are connected by And in red at the top left corner, it means that both must be true in order to print a tab. Filter strings are powerful tools for creating complex functionality. You can create groups of statements connected by Or or And, as well as nesting these groups within each other. QuoteTabsList filter strings commonly include logic for [IsPrinted], [IsOptional], [IsEmpty], and [IsTotalsIncluded]. 2 P age

3 Formatting Rules Formatting rules are accessed through the property grid in the report designer and act as a property on the element that can change other properties (formatting) of the element based on the conditional statement in the formatting rule. The quote form as a whole has a list of formatting rules (rules available in report), which can be accessed through the Formatting Rule Sheet Editor (Edit Rule Sheet ). This is where rules are edited and new ones are created. Those rules can then be added to elements (Rules applied to a control). Each formatting rule can be added to multiple different elements, and elements can have multiple formatting rules applied to them. 3 P age

4 Formatting Rules Cont. To create a new formatting rule, click on the green + symbol in the top left corner of the Formatting Rule Sheet Editor. There are several steps to creating a formatting rule, and the interface makes the most sense when you work from the bottom up (Design, then Data, then Behavior). First, you need to give your new formatting rule a name. Spaces are not supported and each name must be unique. Next, Data Source must be set to Quote Data. Data Member refers to the level of the quote you need to access. If you are accessing the quote main level, this can be left blank. Finally, set the condition and formatting for your rule. If you click into the condition field, you ll see the [ ] button appear on the right. If you click there, it will open the Condition Editor window, which helps you build your conditional statement. If you already know exactly what you need to write, you can just type directly into the condition field without opening the editor. Once your condition is set, choose the formatting that you want to have applied to your target element(s) when the rule s condition is met. At the bottom of the window, you can see a preview of your chosen formatting with the rule s name used as example text. 4 P age

5 Formatting Rules Cont. Below is the Condition Editor. The textbox at the top is where you can manually type in your condition. Right below, there is a set of math operator buttons to choose from. Double click any one of these to add it to your condition. Below these, the left box is a menu, which displays the contents of the selected option in the middle box. The right box displays descriptions of the selected item where applicable. Fields displays the full list of available fields for the Data Member that was set in the Formatting Rule Sheet Editor. Double clicking on a field in the list adds it to your condition. 5 P age

6 Calculated Fields Occasionally, you will need a piece of data that is not already in the field list. In many cases, it is possible to use the fields you do have in order to calculate the missing piece of information using a calculated field. To create a new calculated field, right click in the field list and click Add Calculated Field. You can also click on Edit Calculated Fields to open the Calculated Field Collection Editor, which allows you to edit all the calculated fields on the form. Once you have created a calculated field, the property grid will change to show you the properties of your new calculated field. Start at the bottom of the panel with the Design section by giving your new field a name. Next, set the data member. If you need to use quote level information, leave this blank. If you need tab level, change it to QuoteTabsList, and if you need item level, change it to QuoteItemsList and so on. Finally, you ll need to set your Expression and Field Type. Choose the field type first. In most cases, you ll be working with numbers, specifically monetary values. Double is what you ll want to use in these cases. If you click on the Expression Field and click the [ ] symbol, the Expression Editor opens. This editor is basically identical to the Condition Editor for creating formatting rules. In the example to the left, a DownPayment calculated field has been created, which takes the [QuoteTotal] field and multiplies it by 0.3, arriving at a number that is 30% of the original quote total. 6 P age

7 Format Strings Formatting data (strings, decimals, etc) is done with the Format String Editor, which can be found in the Tasks menu of a selected element. To get to the Tasks menu, click on the [>] symbol in the top right corner of the selected element. The Format String can be edited directly from this menu, or you can click on the [ ] button on the right to expand the Format String Editor. Within the editor, you can choose from several different categories of formatting. For the DownPayment calculated field that was created previously, we ll choose to format it as currency. The currency category has some Standard Types to choose from. There is also an additional tab for Custom currency formatting that you may choose to select. c is a common formatting standard for currency, since it will change how the field is formatted based on which currency is selected on the quote. At the top of the editor, you ll see a preview of the formatting you ve chosen. In addition to the formatting within the editor, you can also add additional formatting to the beginning or end of your data by typing it in the Fomat String field outside of the curly braces. Here we have added a label for our down payment. 7 P age

8 Running Sums Running sums allow you to total up the value of a field in the footer of a Detail Report section in the Report Designer. This is used mostly for cases where the total amount needed is not a pre defined field in Quosal like [QuoteTotal] or [RecurringTotal]. A running sum will only total up whatever has been cycled through in the detail portion of the Detail Report, so if a Detail Report filters out certain tabs on a quote, only the tabs that make it through that filter will contribute to the running sum total. In the screenshot below, a running sum of the tab level optional amount field is being calculated. You can access running sums, as well as a number of other summary functions in the Tasks menu of an element. When you are using a running sum, any formatting that you have added to the format string in the Tasks menu is overridden by whatever format is set in the Summary Editor s format string field. 8 P age

9 Terms and Recurring Modifications Terms and Recurring is mostly used to set up term options for financing or recurring payments, but it can also be used as a way to manipulate the quote total, a specific tab s total, or to display values that may not be easily calculated otherwise. There are two common things we do with terms and recurring other than their intended functionality: Down Payment / Remaining Balance values, and total investment, which is generally the quote one time total and the total of all recurring payments rolled into one number. To show a Down Payment / Remaining Balance table with terms and recurring, you ll create two term options one for the down payment and one for the remaining balance. The term options will be almost identical, except for their names and the Principal Discount Percent value. There is a Down Payment field on term options, but it is for a static dollar amount rather than a percentage, which is why we won t use it in this case. So for our 30% Down Payment, we ll discount the total amount by 70% to arrive at our 30% remainder. For the Remaining Balance term option, simply do the opposite. Both term options should have the same group name set. In the screenshot below, we can see that some modifications to the basic form are needed for this display. We must remove the No. of Payments columns since they are not relevant in this case, and also remove the word Financing from the end of the term option group name. 9 P age

10 Terms and Recurring Modifications Cont. In order to show a Total Investment amount on the form, we need to use a special functionality of terms and recurring called Spread Fee. Spread fee takes the principal amount from the Payment Amount Details section and adds it to the Recurring Amounts section by dividing the principal amount by the recurring duration, then adding it to the Recurring Total, thereby spreading the one time total across all of the recurring payments. In this situation we re not really interested in the fact that the one time amount is spread across the individual payments. Because the one time amount is spread across the payments, the result is that the total one time amount is now added to the Total of Recurring Payments, highlighted below. This number is the total one time + (recurring payments x recurring duration), and if you want to show your customer exactly how much they will be paying over the course of a certain period of time, including their initial charges, that s what you would need to show. 10 P age

11 Terms and Recurring Modifications Cont. Let s take a look at how this displays on the basic quote form. In the screenshot above, we can see that several changes need to be made on the basic quote form in order for this to display correctly. Recurring Payments needs to be removed from the end of the group name, the No. of Payments columns need to be removed since they aren t relevant, and we also need to change which tag is printing in the amount column. It s currently displaying the Recurring Total for each period (in this case, month). We need it to show the Total of Recurring Payments amount instead, which we highlighted on the previous page. In the Report Designer, Total of Recurring Payments is the [RecurringTotalAggregated] field in QuoteFinancingList. The screenshot below shows the table with the necessary fixes made: End of Chapter 4 11 P age

Microsoft Access 3: Understanding and Creating Queries

Microsoft Access 3: Understanding and Creating Queries Microsoft Access 3: Understanding and Creating Queries In Access Level 2, we learned how to perform basic data retrievals by using Search & Replace functions and Sort & Filter functions. For more complex

More information

Scientific Graphing in Excel 2010

Scientific Graphing in Excel 2010 Scientific Graphing in Excel 2010 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.

More information

Microsoft Excel 2013 Step-by-Step Exercises: PivotTables and PivotCharts: Exercise 1

Microsoft Excel 2013 Step-by-Step Exercises: PivotTables and PivotCharts: Exercise 1 Microsoft Excel 2013 Step-by-Step Exercises: PivotTables and PivotCharts: Exercise 1 In this exercise you will learn how to: Create a new PivotTable Add fields to a PivotTable Format and rename PivotTable

More information

Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc.

Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2011 Advanced Crystal Reports TeachUcomp, Inc. it s all about you Copyright: Copyright 2011 by TeachUcomp, Inc. All rights reserved.

More information

How to set up a database in Microsoft Access

How to set up a database in Microsoft Access Contents Contents... 1 How to set up a database in Microsoft Access... 1 Creating a new database... 3 Enter field names and select data types... 4 Format date fields: how do you want fields with date data

More information

Workshop Tool in Moodle

Workshop Tool in Moodle Workshop Tool in Moodle Moodle Workshops are a great tool for students to view, grade and assess their own and other course members work as a group. There are many options that can make this educational

More information

Microsoft Excel 2013 Tutorial

Microsoft Excel 2013 Tutorial Microsoft Excel 2013 Tutorial TABLE OF CONTENTS 1. Getting Started Pg. 3 2. Creating A New Document Pg. 3 3. Saving Your Document Pg. 4 4. Toolbars Pg. 4 5. Formatting Pg. 6 Working With Cells Pg. 6 Changing

More information

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1 Migrating to Excel 2010 - Excel - Microsoft Office 1 of 1 In This Guide Microsoft Excel 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key

More information

Excel 2007 A Beginners Guide

Excel 2007 A Beginners Guide Excel 2007 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

More information

Getting Started with Excel 2008. Table of Contents

Getting Started with Excel 2008. Table of Contents Table of Contents Elements of An Excel Document... 2 Resizing and Hiding Columns and Rows... 3 Using Panes to Create Spreadsheet Headers... 3 Using the AutoFill Command... 4 Using AutoFill for Sequences...

More information

MICROSOFT ACCESS STEP BY STEP GUIDE

MICROSOFT ACCESS STEP BY STEP GUIDE IGCSE ICT SECTION 11 DATA MANIPULATION MICROSOFT ACCESS STEP BY STEP GUIDE Mark Nicholls ICT Lounge P a g e 1 Contents Task 35 details Page 3 Opening a new Database. Page 4 Importing.csv file into the

More information

Sending Email Blasts in NationBuilder

Sending Email Blasts in NationBuilder Sending Email Blasts in NationBuilder Sensible BC Campaign So you ve got an email that you want to send out to the other volunteers and supporters in your area, how do you get that message out team your

More information

EXCEL 2007 VLOOKUP FOR BUDGET EXAMPLE

EXCEL 2007 VLOOKUP FOR BUDGET EXAMPLE EXCEL 2007 VLOOKUP FOR BUDGET EXAMPLE 1 The primary reports used in the budgeting process, particularly for Financial Review, are the Quarterly Financial Review Reports. These expense and revenue reports

More information

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick

More information

Excel 2007 - Using Pivot Tables

Excel 2007 - Using Pivot Tables Overview A PivotTable report is an interactive table that allows you to quickly group and summarise information from a data source. You can rearrange (or pivot) the table to display different perspectives

More information

To launch the Microsoft Excel program, locate the Microsoft Excel icon, and double click.

To launch the Microsoft Excel program, locate the Microsoft Excel icon, and double click. EDIT202 Spreadsheet Lab Assignment Guidelines Getting Started 1. For this lab you will modify a sample spreadsheet file named Starter- Spreadsheet.xls which is available for download from the Spreadsheet

More information

How to Make the Most of Excel Spreadsheets

How to Make the Most of Excel Spreadsheets How to Make the Most of Excel Spreadsheets Analyzing data is often easier when it s in an Excel spreadsheet rather than a PDF for example, you can filter to view just a particular grade, sort to view which

More information

Introduction to MS EXCEL 2007 Data entry & formatting Using formulas & functions Presenting data with charts Database features in Excel

Introduction to MS EXCEL 2007 Data entry & formatting Using formulas & functions Presenting data with charts Database features in Excel Introduction to MS EXCEL 2007 Data entry & formatting Using formulas & functions Presenting data with charts Database features in Excel Introduction to MS Excel 2007 2 Table of Contents Getting started

More information

Using Excel to Execute Trigonometric Functions

Using Excel to Execute Trigonometric Functions In this activity, you will learn how Microsoft Excel can compute the basic trigonometric functions (sine, cosine, and tangent) using both radians and degrees. 1. Open Microsoft Excel if it s not already

More information

Kentico CMS 7.0 User s Guide. User s Guide. Kentico CMS 7.0. 1 www.kentico.com

Kentico CMS 7.0 User s Guide. User s Guide. Kentico CMS 7.0. 1 www.kentico.com User s Guide Kentico CMS 7.0 1 www.kentico.com Table of Contents Introduction... 4 Kentico CMS overview... 4 Signing in... 4 User interface overview... 6 Managing my profile... 8 Changing my e-mail and

More information

MICROSOFT ACCESS 2003 TUTORIAL

MICROSOFT ACCESS 2003 TUTORIAL MICROSOFT ACCESS 2003 TUTORIAL M I C R O S O F T A C C E S S 2 0 0 3 Microsoft Access is powerful software designed for PC. It allows you to create and manage databases. A database is an organized body

More information

Excel 2013 - Using Pivot Tables

Excel 2013 - Using Pivot Tables Overview A PivotTable report is an interactive table that allows you to quickly group and summarise information from a data source. You can rearrange (or pivot) the table to display different perspectives

More information

After you complete the survey, compare what you saw on the survey to the actual questions listed below:

After you complete the survey, compare what you saw on the survey to the actual questions listed below: Creating a Basic Survey Using Qualtrics Clayton State University has purchased a campus license to Qualtrics. Both faculty and students can use Qualtrics to create surveys that contain many different types

More information

Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP

Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Consolidate Data in Multiple Worksheets Example data is saved under Consolidation.xlsx workbook under ProductA through ProductD

More information

How To Use Ticket Validation Software On A Pc Or Mac Or Macbook Or Ipad (For Acedo) On A Computer Or Ipa (For An Ipa) On An Ipad Or Macintosh (For Macintosh) On Pc

How To Use Ticket Validation Software On A Pc Or Mac Or Macbook Or Ipad (For Acedo) On A Computer Or Ipa (For An Ipa) On An Ipad Or Macintosh (For Macintosh) On Pc Ticket Validation Application System User s Guide Created by: 12-21-2011 Table of Contents Ticket Validation Application System Desktop Icon... 3 Prerequisites... 4 Ticket Validation Reporting... 5 Merchant

More information

Creating a Database in Access

Creating a Database in Access Creating a Database in Access Microsoft Access is a database application. A database is collection of records and files organized for a particular purpose. For example, you could use a database to store

More information

What is a database? The parts of an Access database

What is a database? The parts of an Access database What is a database? Any database is a tool to organize and store pieces of information. A Rolodex is a database. So is a phone book. The main goals of a database designer are to: 1. Make sure the data

More information

Business Portal for Microsoft Dynamics GP. Key Performance Indicators Release 10.0

Business Portal for Microsoft Dynamics GP. Key Performance Indicators Release 10.0 Business Portal for Microsoft Dynamics GP Key Performance Indicators Release 10.0 Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the

More information

How To - Add extra content to your site

How To - Add extra content to your site How To - Add extra content to your site Difficulty: Beginner Once you've got the hang of adding standard content to a Clikpic site - such as photos and articles - you'll soon want to add some of your own

More information

Organizational Development Qualtrics Online Surveys for Program Evaluation

Organizational Development Qualtrics Online Surveys for Program Evaluation The purpose of this training unit is to provide training in an online survey tool known as Qualtrics. Qualtrics is a powerful online survey tool used by many different kinds of professionals to gather

More information

To Begin Customize Office

To Begin Customize Office To Begin Customize Office Each of us needs to set up a work environment that is comfortable and meets our individual needs. As you work with Office 2007, you may choose to modify the options that are available.

More information

Excel 2003 A Beginners Guide

Excel 2003 A Beginners Guide Excel 2003 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

More information

Using Excel for Business Analysis: A Guide to Financial Modelling Fundamentals

Using Excel for Business Analysis: A Guide to Financial Modelling Fundamentals Excel 2003 Instructions Using Excel for Business Analysis: A Guide to Financial Modelling Fundamentals contains extensive instructions for using Excel 2010 and Excel for Mac 2011. There are a few instances

More information

Advanced Excel Charts : Tables : Pivots : Macros

Advanced Excel Charts : Tables : Pivots : Macros Advanced Excel Charts : Tables : Pivots : Macros Charts In Excel, charts are a great way to visualize your data. However, it is always good to remember some charts are not meant to display particular types

More information

Understanding Banners

Understanding Banners Understanding Banners The script supports both simple javascript type banners (called google adsense) and image banners (called kaon ads) on the site. The Kaon Ads type banner is a normal image banner

More information

9 CREATING REPORTS WITH REPORT WIZARD AND REPORT DESIGNER

9 CREATING REPORTS WITH REPORT WIZARD AND REPORT DESIGNER 9 CREATING REPORTS WITH REPORT WIZARD AND REPORT DESIGNER 9.1 INTRODUCTION Till now you have learned about creating Table, Query and Form using the respective Wizard and Designer mode. Every application

More information

Microsoft Excel 2007 Level 2

Microsoft Excel 2007 Level 2 Information Technology Services Kennesaw State University Microsoft Excel 2007 Level 2 Copyright 2008 KSU Dept. of Information Technology Services This document may be downloaded, printed or copied for

More information

Session 7 Fractions and Decimals

Session 7 Fractions and Decimals Key Terms in This Session Session 7 Fractions and Decimals Previously Introduced prime number rational numbers New in This Session period repeating decimal terminating decimal Introduction In this session,

More information

2015 County Auditors Institute. May 2015. Excel Workshop Tips. Working Smarter, Not Harder. by David Scott, SpeakGeek@att.net

2015 County Auditors Institute. May 2015. Excel Workshop Tips. Working Smarter, Not Harder. by David Scott, SpeakGeek@att.net 2015 County Auditors Institute May 2015 Excel Workshop Tips Working Smarter, Not Harder by David Scott, SpeakGeek@att.net Note: All examples in this workshop and this tip sheet were done using Excel 2010

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access Relational Queries Creating a query can be a little different when there is more than one table involved. First of all, if you want to create a query that makes use of more than

More information

WHAT S NEW IN MS EXCEL 2013

WHAT S NEW IN MS EXCEL 2013 Contents Excel... 1 Filling empty cells using Flash Fill... 1 Filtering records using a Timeline... 2 Previewing with Quick Analysis... 4 Using Chart Advisor recommendations... 5 Finding errors and issues

More information

Last Updated:June 13, 2013

Last Updated:June 13, 2013 Introduction Welcome to Elements CRM! This Quick Start Guide is designed to get you up and running quickly. Learn how to download the application as well as the basics in navigating through it. This Quick

More information

Digital Marketing EasyEditor Guide Dynamic

Digital Marketing EasyEditor Guide Dynamic Surveys ipad Segmentation Reporting Email Sign up Email marketing that works for you Landing Pages Results Digital Marketing EasyEditor Guide Dynamic Questionnaires QR Codes SMS 43 North View, Westbury

More information

Pivot Tables & Pivot Charts

Pivot Tables & Pivot Charts Pivot Tables & Pivot Charts Pivot tables... 2 Creating pivot table using the wizard...2 The pivot table toolbar...5 Analysing data in a pivot table...5 Pivot Charts... 6 Creating a pivot chart using the

More information

Chapter 19: XML. Working with XML. About XML

Chapter 19: XML. Working with XML. About XML 504 Chapter 19: XML Adobe InDesign CS3 is one of many applications that can produce and use XML. After you tag content in an InDesign file, you save and export the file as XML so that it can be repurposed

More information

Commutative Property Grade One

Commutative Property Grade One Ohio Standards Connection Patterns, Functions and Algebra Benchmark E Solve open sentences and explain strategies. Indicator 4 Solve open sentences by representing an expression in more than one way using

More information

Website Development Komodo Editor and HTML Intro

Website Development Komodo Editor and HTML Intro Website Development Komodo Editor and HTML Intro Introduction In this Assignment we will cover: o Use of the editor that will be used for the Website Development and Javascript Programming sections of

More information

Alliance Payroll Services, Inc. Millennium Report Writer

Alliance Payroll Services, Inc. Millennium Report Writer Alliance Payroll Services, Inc. Millennium Report Writer Introduction to Millennium Table of Contents Table of Contents Symbols Used in this Manual Chapter 1 - Overview of Report Writer Tool Accessing

More information

Estimating and Vendor Quotes An Estimating and Vendor Quote Workflow Guide

Estimating and Vendor Quotes An Estimating and Vendor Quote Workflow Guide Estimating and Vendor Quotes An Estimating and Vendor Quote Workflow Guide Production Estimating What can it do for you? Estimate Usage The Estimating application is used to prepare quotes for production

More information

Produced by Flinders University Centre for Educational ICT. PivotTables Excel 2010

Produced by Flinders University Centre for Educational ICT. PivotTables Excel 2010 Produced by Flinders University Centre for Educational ICT PivotTables Excel 2010 CONTENTS Layout... 1 The Ribbon Bar... 2 Minimising the Ribbon Bar... 2 The File Tab... 3 What the Commands and Buttons

More information

Microsoft Expression Web

Microsoft Expression Web Microsoft Expression Web Microsoft Expression Web is the new program from Microsoft to replace Frontpage as a website editing program. While the layout has changed, it still functions much the same as

More information

Creating an Excel Database for a Mail Merge on a PC. Excel Spreadsheet Mail Merge. 0 of 8 Mail merge (PC)

Creating an Excel Database for a Mail Merge on a PC. Excel Spreadsheet Mail Merge. 0 of 8 Mail merge (PC) Creating an Excel Database for a Mail Merge on a PC Excel Spreadsheet Mail Merge 0 of 8 Creating an Excel Database for a Mail Merge on a PC 1. To create a database for a mail merge you will first need

More information

Intellect Platform - Tables and Templates Basic Document Management System - A101

Intellect Platform - Tables and Templates Basic Document Management System - A101 Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System

More information

Base Conversion written by Cathy Saxton

Base Conversion written by Cathy Saxton Base Conversion written by Cathy Saxton 1. Base 10 In base 10, the digits, from right to left, specify the 1 s, 10 s, 100 s, 1000 s, etc. These are powers of 10 (10 x ): 10 0 = 1, 10 1 = 10, 10 2 = 100,

More information

Simplified Valuation Exercise & Ratio Analysis

Simplified Valuation Exercise & Ratio Analysis Fin352 Introduction to Research Insight, in a Instructor: Simplified Valuation Exercise & Ratio Analysis I. Research Insight You might be wise to read section V of these instructions first. Then, proceed

More information

bbc Creating a Purchase Order Form Adobe LiveCycle Designer ES2 November 2009 Version 9

bbc Creating a Purchase Order Form Adobe LiveCycle Designer ES2 November 2009 Version 9 bbc Adobe LiveCycle Designer ES2 November 2009 Version 9 2009 Adobe Systems Incorporated. All rights reserved. Adobe LiveCycle Designer ES2 (9.0) for Microsoft Windows November 2009 This tutorial is licensed

More information

First Bytes Programming Lab 2

First Bytes Programming Lab 2 First Bytes Programming Lab 2 This lab is available online at www.cs.utexas.edu/users/scottm/firstbytes. Introduction: In this lab you will investigate the properties of colors and how they are displayed

More information

2. The Open dialog box appears and you select Text Files (*.prn,*.txt,*.csv) from the drop-down list in the lower right-hand corner.

2. The Open dialog box appears and you select Text Files (*.prn,*.txt,*.csv) from the drop-down list in the lower right-hand corner. How to open CSV file in Excel If you created a CSV file in another program, you can still open it as an Excel workbook in the usual way by using the Open command. Note. Opening the CSV file in Excel does

More information

Albright College Self Service

Albright College Self Service Getting Started Albright College Self Service -To access Self Service go to the Albright College Home page at www.albright.edu and select Self Service from the Quick Links drop down menu. You can also

More information

Library Management System

Library Management System Library Management System UNDER THE GUIDANCE OF Mr. E.mitra Submitted to :-Head of training & Placement dept Submitted By: -Seema jajoria ACKNOWLEDGEMENT We are extremely grateful and remain indebted to

More information

Introduction to Excel, Word and Powerpoint

Introduction to Excel, Word and Powerpoint Introduction to Excel, Word and Powerpoint Developing Valuable Technology Skills! Shawn Koppenhoefer Training in Research in Reproductive Health/Sexual Health 2005 Excel spreadsheets What you need to know:

More information

Microsoft Access 2010 Overview of Basics

Microsoft Access 2010 Overview of Basics Opening Screen Access 2010 launches with a window allowing you to: create a new database from a template; create a new template from scratch; or open an existing database. Open existing Templates Create

More information

- Suresh Khanal. http://mcqsets.com. http://www.psexam.com Microsoft Excel Short Questions and Answers 1

- Suresh Khanal. http://mcqsets.com. http://www.psexam.com Microsoft Excel Short Questions and Answers 1 - Suresh Khanal http://mcqsets.com http://www.psexam.com Microsoft Excel Short Questions and Answers 1 Microsoft Access Short Questions and Answers with Illustrations Part I Suresh Khanal Kalanki, Kathmandu

More information

Beginner s Matlab Tutorial

Beginner s Matlab Tutorial Christopher Lum lum@u.washington.edu Introduction Beginner s Matlab Tutorial This document is designed to act as a tutorial for an individual who has had no prior experience with Matlab. For any questions

More information

What is the difference between simple and compound interest and does it really matter?

What is the difference between simple and compound interest and does it really matter? Module gtf1 Simple Versus Compound Interest What is the difference between simple and compound interest and does it really matter? There are various methods for computing interest. Do you know what the

More information

CMS Training Manual. A brief overview of your website s content management system (CMS) with screenshots. CMS Manual

CMS Training Manual. A brief overview of your website s content management system (CMS) with screenshots. CMS Manual Training A brief overview of your website s content management system () with screenshots. 1 Contents Logging In:...3 Dashboard:...4 Page List / Search Filter:...5 Common Icons:...6 Adding a New Page:...7

More information

Mail Merge Creating Mailing Labels 3/23/2011

Mail Merge Creating Mailing Labels 3/23/2011 Creating Mailing Labels in Microsoft Word Address data in a Microsoft Excel file can be turned into mailing labels in Microsoft Word through a mail merge process. First, obtain or create an Excel spreadsheet

More information

Creating and Managing Online Surveys LEVEL 2

Creating and Managing Online Surveys LEVEL 2 Creating and Managing Online Surveys LEVEL 2 Accessing your online survey account 1. If you are logged into UNF s network, go to https://survey. You will automatically be logged in. 2. If you are not logged

More information

Workflow Conductor Widgets

Workflow Conductor Widgets Workflow Conductor Widgets Workflow Conductor widgets are the modular building blocks used to create workflows in Workflow Conductor Studio. Some widgets define the flow, or path, of a workflow, and others

More information

Creating Advanced Reports with the SAP Query Tool

Creating Advanced Reports with the SAP Query Tool CHAPTER Creating Advanced Reports with the SAP Query Tool In this chapter An Overview of the SAP Query Tool s Advanced Screens 86 Using the Advanced Screens of the SAP Query Tool 86 86 Chapter Creating

More information

Joins Joins dictate how two tables or queries relate to each other. Click on the join line with the right mouse button to access the Join Properties.

Joins Joins dictate how two tables or queries relate to each other. Click on the join line with the right mouse button to access the Join Properties. Lesson Notes Author: Pamela Schmidt Joins Joins dictate how two tables or queries relate to each other. Click on the join line with the right mouse button to access the Join Properties. Inner Joins An

More information

7.0 BW Budget Formulation Report Tips and Tricks

7.0 BW Budget Formulation Report Tips and Tricks 7.0 BW Budget Formulation Report Tips and Tricks Sections: A. Variables Entry Options for Entering Selections B. Variables Entry Screen Personalization and Screen Variants C. Bookmarks D. Print in PDF

More information

Instructions for Formatting APA Style Papers in Microsoft Word 2010

Instructions for Formatting APA Style Papers in Microsoft Word 2010 Instructions for Formatting APA Style Papers in Microsoft Word 2010 To begin a Microsoft Word 2010 project, click on the Start bar in the lower left corner of the screen. Select All Programs and then find

More information

SES Project v 9.0 SES/CAESAR QUERY TOOL. Running and Editing Queries. PS Query

SES Project v 9.0 SES/CAESAR QUERY TOOL. Running and Editing Queries. PS Query SES Project v 9.0 SES/CAESAR QUERY TOOL Running and Editing Queries PS Query Table Of Contents I - Introduction to Query:... 3 PeopleSoft Query Overview:... 3 Query Terminology:... 3 Navigation to Query

More information

Google Sites: Creating, editing, and sharing a site

Google Sites: Creating, editing, and sharing a site Google Sites: Creating, editing, and sharing a site Google Sites is an application that makes building a website for your organization as easy as editing a document. With Google Sites, teams can quickly

More information

MicroStrategy Desktop

MicroStrategy Desktop MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop is designed to enable business professionals like you to explore data, simply and without needing direct support from IT. 1 Import data from

More information

Intermediate PowerPoint

Intermediate PowerPoint Intermediate PowerPoint Charts and Templates By: Jim Waddell Last modified: January 2002 Topics to be covered: Creating Charts 2 Creating the chart. 2 Line Charts and Scatter Plots 4 Making a Line Chart.

More information

Budgeting in QuickBooks

Budgeting in QuickBooks Budgeting in QuickBooks Using a budget to plan the expenditure of wing funds helps the wing identify needs along with the ability to analyze the resources necessary to meet those needs. As with any plan,

More information

My ø Business User guide

My ø Business User guide My ø Business User guide Contents Page 1 Contents Welcome to your My ø Business user guide. It s easy to use. Move your mouse over the page to get to the section you want. Click on the links at the top

More information

DATA VISUALIZATION WITH TABLEAU PUBLIC. (Data for this tutorial at www.peteraldhous.com/data)

DATA VISUALIZATION WITH TABLEAU PUBLIC. (Data for this tutorial at www.peteraldhous.com/data) DATA VISUALIZATION WITH TABLEAU PUBLIC (Data for this tutorial at www.peteraldhous.com/data) Tableau Public allows you to create a wide variety of interactive graphs, maps and tables and organize them

More information

Excel 2003 PivotTables Summarizing, Analyzing, and Presenting Your Data

Excel 2003 PivotTables Summarizing, Analyzing, and Presenting Your Data The Company Rocks Excel 2003 PivotTables Summarizing, Analyzing, and Presenting Step-by-step instructions to accompany video lessons Danny Rocks 5/19/2011 Creating PivotTables in Excel 2003 PivotTables

More information

Lecture 2 Mathcad Basics

Lecture 2 Mathcad Basics Operators Lecture 2 Mathcad Basics + Addition, - Subtraction, * Multiplication, / Division, ^ Power ( ) Specify evaluation order Order of Operations ( ) ^ highest level, first priority * / next priority

More information

So you want to create an Email a Friend action

So you want to create an Email a Friend action So you want to create an Email a Friend action This help file will take you through all the steps on how to create a simple and effective email a friend action. It doesn t cover the advanced features;

More information

How To Use Templates. a MailChimp guide

How To Use Templates. a MailChimp guide How To Use Templates a MailChimp guide 1 Hello. If you re designing emails in MailChimp, you need to know how to work with a template it s the backbone of every campaign. This guide will teach you how

More information

EDIT202 PowerPoint Lab Assignment Guidelines

EDIT202 PowerPoint Lab Assignment Guidelines EDIT202 PowerPoint Lab Assignment Guidelines 1. Create a folder named LABSEC-CCID-PowerPoint. 2. Download the PowerPoint-Sample.avi video file from the course WebCT/Moodle site and save it into your newly

More information

Kentico CMS 5.5 User s Guide

Kentico CMS 5.5 User s Guide Kentico CMS 5.5 User s Guide 2 Kentico CMS User s Guide 5.5 Table of Contents Part I Introduction 4 1 Kentico CMS overview... 4 2 Signing in... 5 3 User interface overview... 7 Part II Managing my profile

More information

Working with sections in Word

Working with sections in Word Working with sections in Word Have you have ever wanted to create a Microsoft Word document with some pages numbered in Roman numerals and the rest in Arabic, or include a landscape page to accommodate

More information

What is Null and Why is it Important for Crystal Reports

What is Null and Why is it Important for Crystal Reports What is Null and Why is it Important for Crystal Reports The concept of Null is frequently misunderstood by people who are new to working with databases. Simply put, Null means unassigned or no value.

More information

Advanced Outlook Tutorials

Advanced Outlook Tutorials Advanced Outlook Tutorials Filtering: Create a filter to send email directly to a specific folder from a certain sender: 1. Right click on the sender s email. 2. Choose Rules. 3. Click on Create Rule.

More information

Kentico CMS User s Guide 5.0

Kentico CMS User s Guide 5.0 Kentico CMS User s Guide 5.0 2 Kentico CMS User s Guide 5.0 Table of Contents Part I Introduction 4 1 Kentico CMS overview... 4 2 Signing in... 5 3 User interface overview... 7 Part II Managing my profile

More information

Unit 1 Number Sense. In this unit, students will study repeating decimals, percents, fractions, decimals, and proportions.

Unit 1 Number Sense. In this unit, students will study repeating decimals, percents, fractions, decimals, and proportions. Unit 1 Number Sense In this unit, students will study repeating decimals, percents, fractions, decimals, and proportions. BLM Three Types of Percent Problems (p L-34) is a summary BLM for the material

More information

Crystal Reports JD Edwards EnterpriseOne and World

Crystal Reports JD Edwards EnterpriseOne and World Crystal Reports JD Edwards EnterpriseOne and World Calculating Percentages Using Crystal Reports Table of contents INTRODUCTION... 2 GENERAL OVERVIEW... 2 CALCULATING A PERCENTAGE WITHOUT USING A SUMMARY

More information

University of Colorado at Boulder Alumni Association

University of Colorado at Boulder Alumni Association University of Colorado at Boulder Alumni Association Harris Connect E-Mail Marketing Training Document I. Log in and get ready A. Go to https://admin.alumniconnections.com/olc/admin/cob/admintool/ and

More information

Bank OnLine Commercial Administrator User s Guide

Bank OnLine Commercial Administrator User s Guide Bank OnLine Commercial Administrator User s Guide Rev12-15 P.O. Box 6469 Corpus Christi, Texas 78466-6469 Cash Management E-mail: CashManagement@AmericanBank.com Support Team: (361) 653-5296 Sales Team:

More information

Layout Tutorial. Chapter 10: Getting Started

Layout Tutorial. Chapter 10: Getting Started Chapter 10: Layout Tutorial In this tutorial we will create a layout template, send a few views to a layout page, then save this document in PDF format. In this tutorial you will learn about: Creating

More information

Using SPSS, Chapter 2: Descriptive Statistics

Using SPSS, Chapter 2: Descriptive Statistics 1 Using SPSS, Chapter 2: Descriptive Statistics Chapters 2.1 & 2.2 Descriptive Statistics 2 Mean, Standard Deviation, Variance, Range, Minimum, Maximum 2 Mean, Median, Mode, Standard Deviation, Variance,

More information

Absolute Software Topup Tax (Year 2 onwards)

Absolute Software Topup Tax (Year 2 onwards) Absolute Software Topup Tax (Year 2 onwards) Getting Started After having renewed the package online or with the Sales team you would have had a receipted invoice and a set of registration codes emailed

More information

Tessellating with Regular Polygons

Tessellating with Regular Polygons Tessellating with Regular Polygons You ve probably seen a floor tiled with square tiles. Squares make good tiles because they can cover a surface without any gaps or overlapping. This kind of tiling is

More information

Formulas, Functions and Charts

Formulas, Functions and Charts Formulas, Functions and Charts :: 167 8 Formulas, Functions and Charts 8.1 INTRODUCTION In this leson you can enter formula and functions and perform mathematical calcualtions. You will also be able to

More information

Using Excel as a Management Reporting Tool with your Minotaur Data. Exercise 1 Customer Item Profitability Reporting Tool for Management

Using Excel as a Management Reporting Tool with your Minotaur Data. Exercise 1 Customer Item Profitability Reporting Tool for Management Using Excel as a Management Reporting Tool with your Minotaur Data with Judith Kirkness These instruction sheets will help you learn: 1. How to export reports from Minotaur to Excel (these instructions

More information