Part III - Deeper into TDL

Size: px
Start display at page:

Download "Part III - Deeper into TDL"

Transcription

1 Part III - Deeper into TDL In this Part III article author explained about core objects, basic elements and customizing the Reports using TDL. Techknow Grid Language Platform Level Sunil Gupta TDL WIndows Intermediate In Part II, we touched upon the flexibility of database architecture and a basic TDL program displaying Welcome to the World of TDL. In this Part, we will understand the core objects in TDL, basic elements of TDL Program and steps to go about designing or customizing the Reports. With this Part, we will be able to understand the simplicity of this programmer friendly language TDL. Core objects in Tally Tally is a programming language which follows Object oriented approach for both Database Management as well as User Interface Design. In short, everything in Tally is an Object that is subdivided into 2 broad categories, viz., Data Objects and Interface Objects. Data Objects are Objects which holds data pertaining to various objects like Company, Group, Ledger, Stock Group, Stock Item, Units, Voucher and many more. The core structure of all these objects is predefined and can be further extended by the TDL Programmer. As the name suggests, Interface Objects are Objects that are responsible for designing the user interface. While we invoke Tally.ERP 9 Application, following Interface Objects can be observed: Menu Company Info is the initial Interface Screen if no Company is loaded. On clicking on Menu Item Select Company, a Report querying for Directory path and Company Name to be selected is displayed. List of existing Company Names being displayed in the Field Company Name is a Table. On selecting a Company, the Buttons like Select Company, Shut Company, Date, Period, etc. are available at the right hand corner. Every Interface Object is associated with the corresponding Data Object using Object association mechanisms. 64

2 Basically in TDL, specific definitions are provided to design the user Interface. A Menu is created by adding items to it, while a Report is created using its components Form, Part, Line and Field. TDL operates through the concept of an action which is to be performed and Definition on which the action is performed. Report/Form structure elements Anything that is edited, displayed, printed, ed, exported in TDL is a Report. It can be either printing an invoice, displaying a Report or accepting inputs from the user. A Report is a basic TDL element consisting of various components like Form, Part, Line and Field. A Report can have multiple Form, Part, Line and Field definitions but at least one visible definition of each type must be available. The hierarchy of these definitions is as follows: Line uses a Field A Line can further use the list of required Fields. A Field is where the contents are displayed or entered A Field is the final element in the Report hierarchy which contains the input or output value to be displayed or stored respectively. Customising a Report Example 1: Let s take an example of customizing a new Report displaying the list of Ledgers with their Telephone Numbers and Date of Birth that has already been added to the ledger master in the Part I discussed earlier. Report uses a Form Report, which is the fundamental definition of TDL, is used to design each and every input/output screen displayed/printed/ ed in Tally. A Report in TDL can use one or more Form. Form uses a Part A Form, being the layout of the desired Report can be further divided into one or more parts vertically. ;; Altering the default Menu Gateway of Tally to add a new Item [#Menu: Gateway of Tally] Add : Item : Ledgers with DOB : Display : Ledger List with DOB [Report: Ledger List with DOB] Form : Ledger List with DOB Part uses a Part or a Line A Part can be further subdivided into various Parts either horizontally or vertically or it can finally zoom down to the required Lines. [Form: Ledger List with DOB] Use : DSP Template Parts : Form SubTitle, Ledger List with DOB ;; Using Default Part Form SubTitle for Inserting a Title Line 65

3 ;; Locally modifying the Title to suit our current Report Information Local : Field : Form SubTitle : Info : List of Ledgers with their Birth Dates [Part: Ledger List with DOB] Lines : LL with DOB Title, LL with DOB ;; The Line LL with DOB is instructed to repeat over all Ledgers Repeat : LL with DOB : Ledger ;; Associating the Object Ledger with Line LL with DOB such that every line will be associated with ;; subsequent ledger in the Collection Ledger Scroll : Vertical Common Border : Yes [Line: LL with DOB Title] Use : LL with DOB Border : Thin Top Bottom Local: Field : Default : Type : String Local: Field : Default : Align: Centre ;; Locally setting values to individual Fields within this Line Local: Field: LL Name: Set As: Name Local: Field: LL Tel : Set As: Contact No. Local: Field: LL Set As: ID Local: Field: LL State : Set As: State with Pin Local: Field: LL DOB : Set As: Birth Date ;; Name Field is a Template defined in Default TDL for Fields of Type String with predefined Width Set As : $Name ;; Default Method Name used to set Name [Field: LL Tel] Set As : $LedgerPhone ;; Default Method Ledger Phone used to set Phone [Field: LL ] Set As : $ ;; Default Method used to set Ledger [Field: LL State] Set As : $StateName $PinCode [Field: LL DOB] ;; Uni Date Field is a Template defined in Default TDL for Fields of Type Date with predefined Width Set As : $BirthDate [Line: LL with DOB] Fields : LL Name, LL Tel, LL , LL State Right Fields: LL DOB ;; All the Lines where Value for the UDF Birth Date is empty, Empty the lines Empty : $$IsEmpty:$BirthDate ;; Value of any User Defined Fields/Methods can be retrieved using $ Prefix. [Field: LL Name] The above TDL does the following:- Adds a new Item Ledgers with DOB in the Menu Gateway of Tally. On drilling into this Item, the Report Ledger List with DOB is displayed as shown below: In the above code, Object Ledger is associated at Line and while repeating every line, subsequent Ledger Object within the Collection Ledger is associated till the last Object. (See Fig. 1) Fig 1: Customised a new Report 66

4 Fig. 2 : Customised an existing Report Group Summary With just about a few lines of TDL Code, we have achieved a Report displaying all the required information from the Ledger Master. WYSIWYG i.e., What you see is what you get which means the same report which is displayed can also be printed, ed, exported to Excel file, etc. Customising an existing Report Let s examine the scenario of a Report already available in Tally by default and user would require some minor changes to it. Example 2: Let s take up an example of a default Group Summary where list of Parties are displayed with their respective Amounts (Opening Balances, Transactions and Closing Balances). Consider, displaying the Date of Birth field next to the Party Name. In order to customize an existing Report, following simple steps are recommended: Identify an existing Form, Part, Line or a Field in the Default TDL where any change is desired. Alter the same to add new Parts, Lines, Fields, etc. ;; Existing Field DSP AccName altered to add new Field for Date of Birth [#Field: DSP AccName] ;; Field defined in Default TDL used in displaying Group Summary Add Fields : Cust Grp Summ DOB Fig. 2 [Field: Cust Grp Summ DOB] Set As : $BirthDate:Ledger:$Name Color : DOB Color ;; Color DOB Color used here defined below [Color: DOB Color] with RGB Specification RGB : 50, 100, 70 ;; New Color Definition The above code when implemented results in following output: (see Fig. 2) Similarly, we can also alter various reports that are used only in Print Mode like for e.g., an Invoice. Example 3: Let s take another example of an Invoice Printing where if the current Date (Machine Date) is the customer s date of birth, then a greeting message is printed in the Invoice. ;; Defining System Formulae [System: Formula] ;; Formula IsBirthDay compares the Date and Month of Machine Date with that of Party Master IsBirthDay : $$DayOfDate:$$MachineDate = $$DayOfDate:@@PartyBDInLedger AND + $$MonthOfDate:$$MachineDate = $$MonthOfDate:@@PartyBDInLedger PartyBDInLedger : $BirthDate:Ledger:$PartyLedgerName ;; An existing Part EXPSMP Party is altered to print Party s Date of Birth [#Part: EXPSMP Party] Add : Lines : Inv DOB BirthDate [Line: Inv DOB BirthDate] Fields : Simple Field, Inv DOB BirthDate Local : Field: Simple Field : Info : Birth Date: 67

5 [Field: Inv DOB BirthDate] ;; Symbol is used to extract the value from a system formula Set As ;; An existing Form printing Simple Invoice is altered to add a new part printing Birthday greetings [#Form: Simple Printed Invoice] Add : Parts : After : EXPSMP Party : Inv DOB Greetings [Part: Inv DOB Greetings] Lines : Inv DOB Greetings [Line: Inv DOB Greetings] Fields : Inv DOB Greetings Space Top: 1 ;; This Line is made invisible if System Formula IsBirthDay returns False (Today is not his birthday) Invisible : [Field: Inv DOB Greetings] FullWidth: Yes Set As: WISH YOU MANY MORE HAPPY RETURNS OF THE DAY Style Align : Inv DOB Big : Centre ;; Style Definition to specify font attributes like Height, Bold, Italics, etc. [Style: Inv DOB Big] Font Height : 13 Bold : Times New Roman : Yes Italics : No From the above code, the Simple Printed Invoice contains An additional line to an existing part EXPSMP Party i.e., viz., Date of Birth. An additional Part in Form Simple Printed Invoice after Part EXPSMP Party to display greetings if current date is the birth day. The following Simple Printed Invoice displays the customized and additional Lines/Parts. Changes indicated in Red are the newly added ones. Conclusion The accompanying CD contains the latest free evaluation versions of Tally.ERP 9 (Series A, Release 1.8) and Tally.Developer 9 (Release 1.1). Do please test drive these. Happy programming! DIQ About Author Author is working as Associate Vice President at Tally. You can be contacted on his id sunil.gupta@tallysolutions.com Delay LTE and upgrade 3G to save cost: Aircom nstead of investing in new LTE technology, mobile telecom Ioperators can save two thirds of their costs in the near future by upgrading older 3G networks, telecoms consultancy Aircom said. Aircom said a $750 million (520 million pounds) investment was needed in the first 12 months for a British operator to start LTE roll-out, while upgrading a current network to new, so-called HSPA Plus technology can cost just $250 million as it is only new software. Also Read: Yota plans $100mn for LTE network roll out "It will take less time and less capex to solve the problem in the short term for any operator," Fabricio Martinez, head of the services business at Aircom, told Reuters. TeliaSonera opened the first LTE network late last year in Sweden and Norway, but many other mobile operators have only slowly started to invest in the new technology, which promises to ease data overload in many networks. With prices of new equipment falling fast, the same LTE gear is expected to be significantly cheaper in 12 or 24 months. "We are seeing operators delay their LTE plans now, and we expect this trend to continue," Martinez said. The delays are set to help current leaders of the mobile telecom equipment industry -- Ericsson, Nokia Siemens and Huawei -- and hurt gear vendors such as Alcatel-Lucent and Motorola, which have bet heavily on a boom in LTE networks. "The more operators delay, the more likely the incumbent vendors are to secure longer-term business through HSPA+ and then on to LTE," Martinez said. Aircom reviewed investment needs for large operators in the U.S., large Western European markets, the Middle East and in Asia. 68

Guidelines for Developing Add-ons For TallyShop Tally Solutions Pvt. Ltd.

Guidelines for Developing Add-ons For TallyShop Tally Solutions Pvt. Ltd. Guidelines for Developing Add-ons For TallyShop By Tally Solutions Pvt. Ltd. 5 9 2014 Doc Ver. 2.0 Contents User Interface & Design... 3 Functionality... 4 TCP Compilation... 7 User Manual... 8 Add-on

More information

Contemporary Invoice Format - A

Contemporary Invoice Format - A Contemporary Invoice Format - A (Version 1.1) IMPRESSIVE STAR SOFTWARES (P) LTD. {Tally Integration, Extension, Distribution,Training & Service Partner} {Tally Shoper Retail Solution Partner} Corporate

More information

Tally Master Voucher Status Bar

Tally Master Voucher Status Bar Tally Master Voucher Status Bar TALLY MASTER (Unit of Master Consultancy Services) FB1, Nathigam Complex, No.97, Arcot Road, Kodambakkam, Chennai 600004. Tel: +91-44-43238002/03 Mobile: +91-9551051200,

More information

41 X : ] [ : 100 : ] III IV V. [ Turn over

41 X : ] [ : 100 : ] III IV V. [ Turn over C 2016 41 X : 01. 07. 2016 ] [ : 100 : 10-30 11-30 ] 1. 2. 3. 4. 5. I II III IV V [ Turn over Code No. 41 X 2 C Computer Examinations, July-2016 Office Automation ( Theory ) Time : 1 hour ] [ Max. Marks

More information

file://c:\users\welcome\appdata\local\temp\~hh4a29.htm

file://c:\users\welcome\appdata\local\temp\~hh4a29.htm Page 1 of 6 F1 To select a company At all masters menu F1 To select the Accounts Button At the Accounting Voucher creation and alteration F1 (ALT+F1) F1 (CTRL + F1) F2 To select the Inventory To view the

More information

User Wise Activity Tracking & Logging

User Wise Activity Tracking & Logging User Wise Activity Tracking & Logging (Version 2.0) IMPRESSIVE STAR SOFTWARES (P) LTD. {Tally Integration, Extension, Distribution, Training & Service Partner} {Tally Shoper Retail Solution Partner} F-3,

More information

How to Run Reports in Version 12

How to Run Reports in Version 12 How to Run Reports in Version 12 Reports are grouped by functional area Owner, Property, Tenant, Vendor, GL (Financial), Budget, etc. Each grouping has a report selection screen that includes a variety

More information

Microsoft Excel Important Notice

Microsoft Excel Important Notice Microsoft Excel 2013 Important Notice All candidates who follow an ICDL/ECDL course must have an official ICDL/ECDL Registration Number (which is proof of your Profile Number with ICDL/ECDL and will track

More information

Housing Society Module

Housing Society Module Housing Society Module Interest from Bill Date to Next Bill Date/Bill Date to Receipt Date / Due Date to Receipt Date/Due Date to Next Bill Date :- If bill not paid before Due date Non Interest Collect

More information

Goldfish 4. Quick Start Tutorial

Goldfish 4. Quick Start Tutorial Goldfish 4 Quick Start Tutorial A Big Thank You to Tobias Schilpp 2018 Fishbeam Software Text, Graphics: Yves Pellot Proofread, Photos: Tobias Schilpp Publish Code: #180926 www.fishbeam.com Get to know

More information

ABOUT THIS COURSE... 3 ABOUT THIS MANUAL... 4 LESSON 1: MANAGING LISTS... 5

ABOUT THIS COURSE... 3 ABOUT THIS MANUAL... 4 LESSON 1: MANAGING LISTS... 5 Table of Contents ABOUT THIS COURSE... 3 ABOUT THIS MANUAL... 4 LESSON 1: MANAGING LISTS... 5 TOPIC 1A: SORT A LIST... 6 Sort a list in A-Z or Z-A Order... 6 TOPIC 1B: RENUMBER A LIST... 7 Renumber a List

More information

Part I - WORKING WITH ABSOLUTE REFERENCES

Part I - WORKING WITH ABSOLUTE REFERENCES INTRODUCTION TO COMPUTER CONCEPTS CSIT 100 LAB: MORE WORK with MS EXCEL Part I - WORKING WITH ABSOLUTE REFERENCES This is an implementation of a spreadsheet program. It contains 1,048,576 rows, and 16,384

More information

REACH SCREEN SYSTEMS. System Support Manual. User manual for operating the REACH Announcement Tool, Scheduling Tool, and Touch Screen Systems.

REACH SCREEN SYSTEMS. System Support Manual. User manual for operating the REACH Announcement Tool, Scheduling Tool, and Touch Screen Systems. REACH SCREEN SYSTEMS System Support Manual User manual for operating the REACH Announcement Tool, Scheduling Tool, and Touch Screen Systems. Table of Contents REACH Announcement Tool... 4 Overview... 4

More information

Welcome to Introduction to Microsoft Excel 2010

Welcome to Introduction to Microsoft Excel 2010 Welcome to Introduction to Microsoft Excel 2010 2 Introduction to Excel 2010 What is Microsoft Office Excel 2010? Microsoft Office Excel is a powerful and easy-to-use spreadsheet application. If you are

More information

Introduction Accessing MICS Compiler Learning MICS Compiler CHAPTER 1: Searching for Data Surveys Indicators...

Introduction Accessing MICS Compiler Learning MICS Compiler CHAPTER 1: Searching for Data Surveys Indicators... Acknowledgement MICS Compiler is a web application that has been developed by UNICEF to provide access to Multiple Indicator Cluster Survey data. The system is built on DevInfo technology. 3 Contents Introduction...

More information

Access: Printing Data with Reports

Access: Printing Data with Reports Access: Printing Data with Reports Reports are a means for displaying and summarizing data from tables or queries. While forms are primarily for on-screen viewing, reports are for presenting your data

More information

Budget Exercise for Intermediate Excel

Budget Exercise for Intermediate Excel Budget Exercise for Intermediate Excel Follow the directions below to create a 12 month budget exercise. Read through each individual direction before performing it, like you are following recipe instructions.

More information

How to...create a Video VBOX Gauge in Inkscape. So you want to create your own gauge? How about a transparent background for those text elements?

How to...create a Video VBOX Gauge in Inkscape. So you want to create your own gauge? How about a transparent background for those text elements? BASIC GAUGE CREATION The Video VBox setup software is capable of using many different image formats for gauge backgrounds, static images, or logos, including Bitmaps, JPEGs, or PNG s. When the software

More information

Sage 100 Evolution Version 8.00 What s New?

Sage 100 Evolution Version 8.00 What s New? Sage 100 Evolution Version 8.00 What s New? At Sage 100 Evolution we continuously invest in research and development to ensure that you are kept up to date with the latest and most cutting-edge business

More information

In Depth: Writer. The word processor is arguably the most popular element within any office suite. That. Formatting Text CHAPTER 23

In Depth: Writer. The word processor is arguably the most popular element within any office suite. That. Formatting Text CHAPTER 23 CHAPTER 23 In Depth: Writer The word processor is arguably the most popular element within any office suite. That said, you ll be happy to know that OpenOffice.org s Writer component doesn t skimp on features.

More information

SharePoint List Booster Features

SharePoint List Booster Features SharePoint List Booster Features Contents Overview... 5 Supported Environment... 5 User Interface... 5 Disabling List Booster, Hiding List Booster Menu and Disabling Cross Page Queries for specific List

More information

EXERCISE 1. OBJECTIVES File management. INSTRUCTIONS. Creating Spreadsheets and Graphs (Excel 2003) New CLAIT

EXERCISE 1. OBJECTIVES File management. INSTRUCTIONS. Creating Spreadsheets and Graphs (Excel 2003) New CLAIT EXERCISE 1 File management. FREE IT COURSES If you go to our e-learning portal at stwitlc.com you will find a number of free online IT courses. These include 13 modules written by the Open University,

More information

Excel 2013 for Beginners

Excel 2013 for Beginners Excel 2013 for Beginners Class Objective: This class will familiarize you with the basics of using Microsoft Excel. Class Outline: Introduction to Microsoft Excel 2013... 1 Microsoft Excel...2-3 Getting

More information

Create and edit word processing. Pages.

Create and edit word processing. Pages. Create and edit word processing documents with Pages. In this chapter, we begin to get work done on the ipad by using Pages to create and format documents. Creating a New Document Styling and Formatting

More information

Excel 2013 Getting Started

Excel 2013 Getting Started Excel 2013 Getting Started Introduction Excel 2013 is a spreadsheet program that allows you to store, organize, and analyze information. While you may think that Excel is only used by certain people to

More information

Working with Charts Stratum.Viewer 6

Working with Charts Stratum.Viewer 6 Working with Charts Stratum.Viewer 6 Getting Started Tasks Additional Information Access to Charts Introduction to Charts Overview of Chart Types Quick Start - Adding a Chart to a View Create a Chart with

More information

Wireless Network Infrastructure Market (2G, 3G, LTE, WiMAX, WiFi):

Wireless Network Infrastructure Market (2G, 3G, LTE, WiMAX, WiFi): Wireless Network Infrastructure Market (2G, 3G, LTE, WiMAX, WiFi): 2012 2017 November 2012 Overview: The wireless network infrastructure market will grow by nearly 8% between 2012 and 2013, representing

More information

Additional catalogs display. Customize text size and colors.

Additional catalogs display. Customize text size and colors. Collapsible Skin The collapsible skin option displays the catalogs and categories in a collapsible format enabling enhanced navigation on Qnet. Categories can be expanded to view all of the sub categories

More information

Post dated Cheques (PDC) Dash Board

Post dated Cheques (PDC) Dash Board Post dated Cheques (PDC) Dash Board Allen Technologies 43/1500, Kochappilly,Vattathipadam East Road, Palarivattom Post, Ernakulam, Kerala, 682025 India Website www.allentechnologies.in Phone - +91 484

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

Table of Contents. Word. Using the mouse wheel 39 Moving the insertion point using the keyboard 40 Resume reading 41

Table of Contents. Word. Using the mouse wheel 39 Moving the insertion point using the keyboard 40 Resume reading 41 Table of Contents iii Table of Contents Word Starting Word What is word processing? 2 Starting Word 2 Exploring the Start screen 4 Creating a blank document 4 Exploring the Word document window 5 Exploring

More information

Creating a new project To start a new project, select New from the File menu. The Select Insert dialog box will appear.

Creating a new project To start a new project, select New from the File menu. The Select Insert dialog box will appear. Users Guide Creating a new project To start a new project, select New from the File menu. The Select Insert dialog box will appear. Select an insert size When creating a new project, the first thing you

More information

Scope Monthly. Guide to updating and maintaining the Scope Monthly Website. Last Updated: Table of Contents

Scope Monthly. Guide to updating and maintaining the Scope Monthly Website. Last Updated: Table of Contents 1 Scope Monthly Guide to updating and maintaining the Scope Monthly Website. Last Updated: 2016.06.13 Table of Contents Creating a new monthly issue. Editing a monthly issue. Editing issue date Editing

More information

Microsoft Word 2010 Intermediate

Microsoft Word 2010 Intermediate Microsoft Word 2010 Intermediate Agenda 1. Welcome, Introduction, Sign-in 2. Presentation 3. a. Advanced Formatting i. Review: Use Select All to change alignment, font style, spacing ii. Headers and Footers

More information

Application Integration with Tally.ERP 9

Application Integration with Tally.ERP 9 Application Integration with Tally.ERP 9 High Level Strategies Ver 1. May 2010 This document is for informational purposes only. TALLY MAKES NO WARRANTIES, EXPRESS OR IMPLIED, IN THIS DOCUMENT. Complying

More information

With ClaroIdeas you can quickly and easily create idea maps using a combination of words, symbols and pictures.

With ClaroIdeas you can quickly and easily create idea maps using a combination of words, symbols and pictures. Welcome to ClaroIdeas ClaroIdeas is a fresh tool to support the creation and editing of concept maps or idea maps using visual and audio components. It has been specifically developed to support people

More information

Creating Forms. Starting the Page. another way of applying a template to a page.

Creating Forms. Starting the Page. another way of applying a template to a page. Creating Forms Chapter 9 Forms allow information to be obtained from users of a web site. The ability for someone to purchase items over the internet or receive information from internet users has become

More information

Quick Reference Card Business Objects Toolbar Design Mode

Quick Reference Card Business Objects Toolbar Design Mode Icon Description Open in a new window Pin/Unpin this tab Close this tab File Toolbar New create a new document Open Open a document Select a Folder Select a Document Select Open Save Click the button to

More information

Microsoft Office Excel 2013 Courses 24 Hours

Microsoft Office Excel 2013 Courses 24 Hours Microsoft Office Excel 2013 Courses 24 Hours COURSE OUTLINES FOUNDATION LEVEL COURSE OUTLINE Getting Started With Excel 2013 Starting Excel 2013 Selecting the Blank Worksheet Template The Excel 2013 Cell

More information

ADOBE DREAMWEAVER CS4 BASICS

ADOBE DREAMWEAVER CS4 BASICS ADOBE DREAMWEAVER CS4 BASICS Dreamweaver CS4 2 This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

Quick Start Guide - Contents. Opening Word Locating Big Lottery Fund Templates The Word 2013 Screen... 3

Quick Start Guide - Contents. Opening Word Locating Big Lottery Fund Templates The Word 2013 Screen... 3 Quick Start Guide - Contents Opening Word... 1 Locating Big Lottery Fund Templates... 2 The Word 2013 Screen... 3 Things You Might Be Looking For... 4 What s New On The Ribbon... 5 The Quick Access Toolbar...

More information

Skills Exam Objective Objective Number

Skills Exam Objective Objective Number Overview 1 LESSON SKILL MATRIX Skills Exam Objective Objective Number Starting Excel Create a workbook. 1.1.1 Working in the Excel Window Customize the Quick Access Toolbar. 1.4.3 Changing Workbook and

More information

Accessibility Options for Visual Impairment. Date: November 2017

Accessibility Options for Visual Impairment. Date: November 2017 Title: Partner: Accessibility Options for Visual Impairment Age UK Date: November 2017 Intellectual Output: IO3 (and IO4) CONTENTS Chapter 1 Making Text Larger...2 1.1 PC Windows 7, Windows 8 and Windows

More information

Moving to New Financial Year

Moving to New Financial Year The information contained in this document is current as of the date of publication and subject to change. Because Tally must respond to changing market conditions, it should not be interpreted to be a

More information

Microsoft Access 2010

Microsoft Access 2010 2013\2014 Microsoft Access 2010 Tamer Farkouh M i c r o s o f t A c c e s s 2 0 1 0 P a g e 1 Definitions Microsoft Access 2010 What is a database? A database is defined as an organized collection of data

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 This class is designed to cover the following basics: What you can do with Excel Excel Ribbon Moving and selecting cells Formatting cells Adding Worksheets, Rows and

More information

Contents. Spreadsheet Software ITQ Level 1

Contents. Spreadsheet Software ITQ Level 1 Contents SKILL SET 1 FUNDAMENTALS... 11 1 - SPREADSHEET PRINCIPLES... 12 2 - STARTING EXCEL... 13 3 - THE LAYOUT OF THE EXCEL SCREEN... 14 4 - THE RIBBON... 16 5 - THE WORKSHEET WINDOW... 18 6 - CLOSING

More information

Kenora Public Library. Computer Training. Introduction to Excel

Kenora Public Library. Computer Training. Introduction to Excel Kenora Public Library Computer Training Introduction to Excel Page 2 Introduction: Spreadsheet programs allow users to develop a number of documents that can be used to store data, perform calculations,

More information

Switch 1 Instructions Utility Telecom Easy Attendant Instructions

Switch 1 Instructions Utility Telecom Easy Attendant Instructions Switch 1 Instructions Utility Telecom Easy Attendant Instructions This guide is intended to help you understand the Easy Attendant Instructions used in Switch 1. Not sure if you re in Switch 1 or Switch

More information

Learning Microsoft Excel Module 1 Contents. Chapter 1: Introduction to Microsoft Excel

Learning Microsoft Excel Module 1 Contents. Chapter 1: Introduction to Microsoft Excel Module 1 Contents Chapter 1: Introduction to Microsoft Excel The Microsoft Excel Screen...1-1 Moving the Cursor...1-3 Using the Mouse...1-3 Using the Arrow Keys...1-3 Using the Scroll Bars...1-4 Moving

More information

SIMPLE TEXT LAYOUT FOR COREL DRAW. When you start Corel Draw, you will see the following welcome screen.

SIMPLE TEXT LAYOUT FOR COREL DRAW. When you start Corel Draw, you will see the following welcome screen. SIMPLE TEXT LAYOUT FOR COREL DRAW When you start Corel Draw, you will see the following welcome screen. A. Start a new job by left clicking New Graphic. B. Place your mouse cursor over the page width box.

More information

Sage Intelligence Financial Reporting for Sage ERP X3 Release Notes. Gina Dowling

Sage Intelligence Financial Reporting for Sage ERP X3 Release Notes. Gina Dowling Sage Intelligence Financial Reporting for Sage ERP X3 Release Notes Gina Dowling 01.01.2014 Table of Contents 1.0 Release Notes 3 Introduction 3 2.0 New Features 4 New Report Designer 4 2.1.1 Task Pane

More information

Section 8 Formatting

Section 8 Formatting Section 8 Formatting By the end of this Section you should be able to: Format Numbers, Dates & Percentages Change Cell Alignment and Rotate Text Add Borders and Colour Change Row Height and Column Width

More information

Excel 2016 Basics for Windows

Excel 2016 Basics for Windows Excel 2016 Basics for Windows Excel 2016 Basics for Windows Training Objective To learn the tools and features to get started using Excel 2016 more efficiently and effectively. What you can expect to learn

More information

HANSAWORLD UNIVERSITY. Standard Bar Version 6.3 HansaWorld Ltd.

HANSAWORLD UNIVERSITY. Standard Bar Version 6.3 HansaWorld Ltd. HANSAWORLD UNIVERSITY Standard Bar 12 2011 Version 6.3 HansaWorld Ltd. Table of Contents INTRODUCTION & INSTALLATION...3 System Requirements...3 Installation...3 CONFIGURING A NEW DATABASE...4 Starting

More information

Page Layout Using Tables

Page Layout Using Tables This section describes various options for page layout using tables. Page Layout Using Tables Introduction HTML was originally designed to layout basic office documents such as memos and business reports,

More information

L-Docs for Tally.ERP 9

L-Docs for Tally.ERP 9 L-Docs for Tally.ERP 9 Table of Contents Introduction... 3 Benefits:... 3 How it works??... 3 Installation... 3 Configure Add-on... 4 L-Docs Configuration... 6 Configuring Files Location Folder... 6 Default

More information

Gloucester County Library System. Excel 2010

Gloucester County Library System. Excel 2010 Gloucester County Library System Excel 2010 Introduction What is Excel? Microsoft Excel is an electronic spreadsheet program. It is capable of performing many different types of calculations and can organize

More information

Tutorial 3 - Welcome Application

Tutorial 3 - Welcome Application 1 Tutorial 3 - Welcome Application Introduction to Visual Programming Outline 3.1 Test-Driving the Welcome Application 3.2 Constructing the Welcome Application 3.3 Objects used in the Welcome Application

More information

Knowledge Map. Tally.ERP 9

Knowledge Map. Tally.ERP 9 Knowledge Map Tally.ERP 9 Preface What is a Knowledge Map? A Knowledge Map is a representation of a concept using levels of information. Each level provides deeper understanding than the previous one.

More information

Introduction to Turbo Lister

Introduction to Turbo Lister Introduction to Turbo Lister What is Turbo Lister? Free bulk listing tool Desktop based download it or install it from a CD Enables medium to high volume sellers to: Create listings FASTER Easily create

More information

WEEK NO. 12 MICROSOFT EXCEL 2007

WEEK NO. 12 MICROSOFT EXCEL 2007 WEEK NO. 12 MICROSOFT EXCEL 2007 LESSONS OVERVIEW: GOODBYE CALCULATORS, HELLO SPREADSHEET! 1. The Excel Environment 2. Starting A Workbook 3. Modifying Columns, Rows, & Cells 4. Working with Worksheets

More information

REPORT DESIGNER GUIDE

REPORT DESIGNER GUIDE REPORT DESIGNER GUIDE 2018 Advance Workshop Report Designer Guide This document has been very carefully prepared in the hope to meet your expectations and to answer all your questions regarding the Advance

More information

Preview and Print Reports. Preview and Print Reports (for MAS Users) Participant Profile. Learning Outcomes

Preview and Print Reports. Preview and Print Reports (for MAS Users) Participant Profile. Learning Outcomes Preview and Print Reports Preview and Print Reports (for MAS Users) This document includes a copy of the concepts and procedures that form the basis of this selfpaced online learning module. As you work

More information

Staff Microsoft VISIO Training. IT ESSENTIALS Creating Flowcharts Using Visio 2013 (ST562) June 2015

Staff Microsoft VISIO Training. IT ESSENTIALS Creating Flowcharts Using Visio 2013 (ST562) June 2015 Staff Microsoft VISIO Training IT ESSENTIALS Creating Flowcharts Using Visio 01 (ST) June 01 Book online at: Royalholloway.ac.uk/it/training Self-Study packs also available 1 th June 01 Table of Contents

More information

Develop great research posters using Microsoft PowerPoint

Develop great research posters using Microsoft PowerPoint www.qps.qut.edu.au Develop great research posters using Microsoft PowerPoint A step-by-step guide QUT PRINTING SERVICES A step-by-step guide This step-by-step guide will assist you to understand the purpose

More information

Basics. Jhan Schmitz SCSH Computer Club January 23, 2014

Basics. Jhan Schmitz SCSH Computer Club January 23, 2014 Jhan Schmitz SCSH Computer Club January 23, 2014 Agenda What is Excel? Versions of Excel Creating and Building a New Excel Workbook: Excel Basic Basics Starting Simply Fahrenheit to Celsius Extending What

More information

Power BI Desktop Lab

Power BI Desktop Lab Power BI Desktop Lab Fil Schwartz fschwartz@manersolutions.com (517) 323-7500 POWER BI DESKTOP LAB This is a hands on lab for users that have little or no experience with Power BI. We will go through a

More information

Microsoft Excel Chapter 1. Creating a Worksheet and an Embedded Chart

Microsoft Excel Chapter 1. Creating a Worksheet and an Embedded Chart Microsoft Excel 2010 Chapter 1 Creating a Worksheet and an Embedded Chart Objectives Describe the Excel worksheet Enter text and numbers Use the Sum button to sum a range of cells Copy the contents of

More information

Agilent MassHunter Workstation Software Report Designer Add-in

Agilent MassHunter Workstation Software Report Designer Add-in Agilent MassHunter Workstation Software Report Designer Add-in Quick Start Guide What is the Agilent MassHunter Workstation Software Report Designer Add-in? 2 Report Designer UI elements 3 Getting Started

More information

Inspiration 8 IE: tutorial

Inspiration 8 IE: tutorial Inspiration 8 IE: tutorial Edition 3a, June 2006 If you would like this document in an alternative format please ask at The Library Help and Information Point where a folder of examples is available. On

More information

IT2.weebly.com Applied ICT 9713

IT2.weebly.com Applied ICT 9713 Chapter 11 Database and charts You already know how to o define database record structures o enter data into a database o select subsets of data within a database o sort data within a database o produce

More information

Publisher 2016 Foundation SAMPLE

Publisher 2016 Foundation SAMPLE Publisher 2016 Foundation Publisher 2016 Foundation Microsoft Publisher 2016 Foundation - Page 2 2015 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied

More information

Bill Designer for Shoper 9

Bill Designer for Shoper 9 The information contained in this document is current as of the date of publication and subject to change. Because Tally must respond to changing market conditions, it should not be interpreted to be a

More information

A Complete Solution for Online Print Shop. From

A Complete Solution for Online Print Shop. From A Complete Solution for Online Print Shop From Our Print Shop Management System helps SME print shops to bring their business online & increase revenue at reduced cost I N T R O D U C T I O N WEB TO PRINT

More information

GO! with Microsoft Excel 2016 Comprehensive

GO! with Microsoft Excel 2016 Comprehensive GO! with Microsoft Excel 2016 Comprehensive First Edition Chapter 2 Using Functions, Creating Tables, and Managing Large Workbooks Use SUM and Statistical Functions The SUM function is a predefined formula

More information

Introduction to Excel 2007

Introduction to Excel 2007 Introduction to Excel 2007 Excel 2007 is a software program that creates a spreadsheet. It permits the user to enter data and formulas to perform mathematical and Boolean (comparison) calculations on the

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

FRONTPAGE STEP BY STEP GUIDE

FRONTPAGE STEP BY STEP GUIDE IGCSE ICT SECTION 15 WEB AUTHORING FRONTPAGE STEP BY STEP GUIDE Mark Nicholls ICT lounge P a g e 1 Contents Introduction to this unit.... Page 4 How to open FrontPage..... Page 4 The FrontPage Menu Bar...Page

More information

Creating Business Cards With LibreOffice

Creating Business Cards With LibreOffice Creating Business Cards With LibreOffice by Len Nasman, Bristol Village Ohio Computer Club Copyright 2018 ~ may be copied with permission The illustrations in this document were created using LibreOffice

More information

KODAK Software User s Guide

KODAK Software User s Guide KODAK Create@Home Software User s Guide Table of Contents 1 Welcome to KODAK Create@Home Software Features... 1-1 Supported File Formats... 1-1 System Requirements... 1-1 Software Updates...1-2 Automatic

More information

Week 5 Creating a Calendar. About Tables. Making a Calendar From a Table Template. Week 5 Word 2010

Week 5 Creating a Calendar. About Tables. Making a Calendar From a Table Template. Week 5 Word 2010 Week 5 Creating a Calendar About Tables Tables are a good way to organize information. They can consist of only a few cells, or many cells that cover several pages. You can arrange boxes or cells vertically

More information

Graphing Interface Overview

Graphing Interface Overview Graphing Interface Overview Note: This document is a reference for using JFree Charts. JFree Charts is m-power s legacy graphing solution, and has been deprecated. JFree Charts have been replace with Fusion

More information

Excel 2016 Basics for Mac

Excel 2016 Basics for Mac Excel 2016 Basics for Mac Excel 2016 Basics for Mac Training Objective To learn the tools and features to get started using Excel 2016 more efficiently and effectively. What you can expect to learn from

More information

Formatting a Report with Word 2010

Formatting a Report with Word 2010 Formatting a Report with Word 2010 The basics Although you can use Word to do a great many formatting tasks, here we will concentrate on the basic requirements for good presentation of a report. These

More information

Copyright 2018 MakeUseOf. All Rights Reserved.

Copyright 2018 MakeUseOf. All Rights Reserved. The Beginner s Guide to Microsoft Excel Written by Sandy Stachowiak Published April 2018. Read the original article here: https://www.makeuseof.com/tag/beginners-guide-microsoftexcel/ This ebook is the

More information

GST IN TALLY.ERP9 (RELEASE - 6)

GST IN TALLY.ERP9 (RELEASE - 6) GST IN TALLY.ERP9 (RELEASE - 6) (BETA VERSION) Note :- This help document is specifically provided for JB Nagar Study circle for educational purpose only. Since Release 6 Tally.ERP9 is yet in Beta Stage

More information

Microsoft Visio 2016 Foundation. Microsoft Visio 2016 Foundation Level North American Edition SAMPLE

Microsoft Visio 2016 Foundation. Microsoft Visio 2016 Foundation Level North American Edition SAMPLE Microsoft Visio 2016 Foundation Microsoft Visio 2016 Foundation Level North American Edition Visio 2016 Foundation - Page 2 2015 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of

More information

Creating Icons for Leopard Buttons

Creating Icons for Leopard Buttons Creating Icons for Leopard Buttons Introduction Among the new features that C-Max 2.0 brings to the Ocelot and Leopard controllers, one of the more sophisticated ones allows the user to create icons that

More information

RedBeam Inventory Tracking User Manual

RedBeam Inventory Tracking User Manual RedBeam Inventory Tracking User Manual Contact us at www.redbeam.com. Page 1 Table of Contents Table of Contents... 2 Overview... 4 RedBeam Inventory Tracking... 4 PC Prerequisites... 4 Mobile Computer

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 This class is designed to cover the following basics: What you can do with Excel Excel Ribbon Moving and selecting cells Formatting cells Adding Worksheets, Rows and

More information

Financial Statements Using Crystal Reports

Financial Statements Using Crystal Reports Sessions 6-7 & 6-8 Friday, October 13, 2017 8:30 am 1:00 pm Room 616B Sessions 6-7 & 6-8 Financial Statements Using Crystal Reports Presented By: David Hardy Progressive Reports Original Author(s): David

More information

Portal. SharePoint User Guide. British Land

Portal. SharePoint User Guide. British Land British Land Portal SharePoint User Guide British Land Contents LOGGING IN AND OUT... 3 CUSTOMISING THE HOMEPAGE... 4 Adding and Editing Web Parts... 4 Removing Web Parts... 6 SHARING DOCUMENTS... 7 Creating

More information

Excel 2010 Worksheet 3. Table of Contents

Excel 2010 Worksheet 3. Table of Contents Table of Contents Graphs and Charts... 1 Chart Elements... 1 Column Charts:... 2 Pie Charts:... 6 Line graph 1:... 8 Line Graph 2:... 10 Scatter Charts... 12 Functions... 13 Calculate Averages (Mean):...

More information

Microsoft Office PowerPoint 2013 Courses 24 Hours

Microsoft Office PowerPoint 2013 Courses 24 Hours Microsoft Office PowerPoint 2013 Courses 24 Hours COURSE OUTLINES FOUNDATION LEVEL COURSE OUTLINE Using PowerPoint 2013 Opening PowerPoint 2013 Opening a Presentation Navigating between Slides Using the

More information

LBS 2006 Temperature Meter. LBS Insight Industry Survey

LBS 2006 Temperature Meter. LBS Insight Industry Survey LBS 2006 Temperature Meter LBS Insight Industry Survey www.berginsight.com BERG INSIGHT EDITING TEAM Tobias Ryberg, Senior Analyst (tobias@berginsight.com) Johan Fagerberg, Senior Analyst (johan@berginsight.com)

More information

BT Web Hosting. Features and functionality

BT Web Hosting. Features and functionality BT Web Hosting Features and functionality 1 Hopefully you will now have a website that is activated and potentially even published. This guide will take you through some of the additional features and

More information

Laboratory 1. Part 1: Introduction to Spreadsheets

Laboratory 1. Part 1: Introduction to Spreadsheets Laboratory 1 Part 1: Introduction to Spreadsheets By the end of this laboratory session you should be familiar with: Navigating around a worksheet. Naming sheets and cells. Formatting. The use of formulae.

More information

Excel Basic: Create Formulas

Excel Basic: Create Formulas Better Technology, Onsite and Personal Connecting NIOGA s Communities www.btopexpress.org www.nioga.org [Type Excel Basic: Create Formulas Overview: Let Excel do your math for you! After an introduction

More information

In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents

In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents Section Topic Sub-topic Pages Section 2 Spreadsheets Layout and Design S2: 2 3 Formulae

More information