Computer Concepts For End-Users

Quattro Pro

What you will learn

What do I need?

Quattro Pro A licensed copy of Quattro Pro
notepad & pen A pen and some paper (for taking notes)
stopwatch About thrity to forty minutes

What is Quattro Pro?

Quattro Pro is a spreadsheet program. A spreadsheet program is an electronic workbook that allows you to organize words and numbers in a logical manner and it also allows you to perform operations on those numbers. There are many practical applications for spreadsheet uses ranging from home to office use.

Back to the top
Back to the top

Why learn Quattro Pro?

Quattro Pro is most likely to be used in some kind of financial setting. It is ideal for organizing large amounts of numerical information and performing calculations on that information. Quattro Pro will perform tedious operations on very large sets of data almost instantly where it might take a person half an hour to do the same task.

Back to the top
Back to the top

Some spreadsheet terms

Here is a list of some basic spreadsheet terms we must know.

Notebook
When you save your work, you will save it in a notebook. A notebook is a collection of related spreadsheets.
Row
A group of cells that run horizontally. Rows are numerically labeled.
Column
A group of cells that run vertically. Columns are alphabetically labeled.
Cell
The intersection of a row and column. Cells are identified by first stating the intersecting column letter followed by the intersecting row number.
Back to the top
Back to the top

Meet Quattro Pro

Below is an image of the Quattro Pro display.

Quattro Pro
1. Title bar
This bar holds the title of the notebook you are currently using, and the name of the application.
2. Menu bar
This bar contains several drop-down menus used to perform various operations on your spreadsheet.
3. Toolbar
This bar contains icons that can be used to quickly access different functions.
4. Cell pointer
This is an indicator of what cell you are currently accessing.
5. Contents box
This box will show you what the contents are of the current selection.
Back to the top
Back to the top

Basic tasks

If you select the File menu you will see some very basic operations that we must discuss before anything else.

note There are two ways of selecting items from the menu bar. You can simply click them with the mouse or hold the alt key and press the letter that corresponds to that menu (the letter is underlined in each of the menu names).
note A keyboard shortcut is a combination of keys that can be used to quickly access a specific function. Whenever a new function is introduced its keyboard shortcut will also be given, whenever one exists.
New (ctrl + n)
This function will create a new notebook.
Open (ctrl + o)
This function will open a previously created notebook.
Close (ctrl + f4)
This function will close the current notebook.
Save (ctrl + s)
This function will save the notebook under a previously specified name.
Save as (f3)
This function will save the notebook under a new name.
Print preview
This function will display your spreadsheet as it will appear after it has been printed.
Print (ctrl + p)
This function will print your spreadsheet.

Also, under the Edit menu you will find the following:

Undo (ctrl + z)
This function will undo the last change that you have made to your spreadsheet.
Redo (ctrl + Shift + z)
This function will essentially undo the last undo command.
Find and Replace (ctrl + f)
This function will find desired text and replace it with some other specified text.
Back to the top
Back to the top

Adjusting page settings

When we were learning how to use the word processor, one of the first things we learned about was how to landscape the page and set the margins, we can also do this with a spreadsheet program. To set the page to landscape layout do the following:

File Page Setup...
Select the Paper Type tab, then select the landscape option, then select ok.

To set the page margins, complete the following:

File Page Setup...
Select the Print Margins tab, then set all margins to 1cm, then select ok.
Back to the top
Back to the top

Data entry

The cell pointer indicates where data entered will be stored. You can move the cell pointer by using the arrow keys on your keyboard or by simply selecting a new cell by clicking on it with the mouse. You may complete data entry into a cell by moving the cell pointer to a new cell or by pressing enter on the keyboard.

Enter the title My Grocery Bill into cell G1.
Enter the heading Item into cell B6.
Enter the heading Price into cell C6.
Enter the heading Quantity into cell D6.
Enter the heading Cost into cell E6.
Back to the top
Back to the top

Changing cell content

Just as we cut, copied and pasted text in a word processor we can perform the same operations on the contents of cells in a spreadsheet. Lets move the title one cell to the right by doing the following:

Move the cell pointer to cell G1.
Edit Cut
Move the cell pointer to H1.
Paste
note Cut, copy and paste can also be used by the keystrokes ctrl+x, ctrl+c, ctrl+v respectively.
Back to the top
Back to the top

Changing the appearance of cell content

Recall that when we worked with the word processor we were able to change to appearance of text in terms of: font type, font size, and format (Bold, italic, underline). We can do all of these things to the content of a cell as well. Try the following:

Select the cell H1.
Format Selection...
Under the Cell Font tab, adjust the font size to 18pt,
and select bold and underline mode, then select ok.
Once you have done this, use your knowledge to bold all of the headings.
note You can select multiple cells the same way that you would select a large group of text in a word processor. Simply move the cell pointer to the first cell, then hold down the mouse button while you move the mouse over the desired selection.
Back to the top
Back to the top

Changing the alignment of cell content

Just as we could align text on a page in a certain way, we can also align data in a cell in a certain way. Try the following:

Select cells B6 thru E6.
Format Selection...
Under the Allignment tab, adjust the horizontal alignment to center.
Select ok.

You should now see all four headings individually centered in their cells.

Back to the top
Back to the top

Adjusting column widths and row heights

You may have noticed that when we increased the font size of the main title the height of the row increased accordingly. We can also do this manually. Lets increase the width of the B column by doing the following:

Select any cell in the B column.
Format Selection...
Select the Row/Column tab, then double the column width, then select ok.
note You can also change the column/row sizes by moving the mouse in the middle of two column/row names, then dragging the mouse until the desired size is achieved.

Using this knowledge try adjusting row widths on your own.

Back to the top
Back to the top

Simple math

Spreadsheet programs not only allow us to organize data, but they can also perform calculations on that data for us. Before we can demonstrate this, however, we must enter some data. Copy the table below into your spreadsheet (The upper left corner of the table should correspond to cell B7).

Apples 0.27 12
Oranges 0.27 12
Milk 3.69 1
Fruit Punch 2.99 4
Salad dressing 1.68 1
Cookies 4.98 1
Chicken 5.27 1
Steak 6.72 2
Paper towels 3.67 2
Buns 0.45 17

In order to determine the cost of apples we would have to multiply 0.27 by 12. We can instruct the program to do this by doing the following:

Move the cell pointer to cell E7.
Type: =(C7*D7) then press enter.

We have just told the spreadsheet that we want to multiply the contents of cell C7 (which was 0.27) by the contents of cell D7. Since the cell pointer was at E7 that is where the result will go. The asterisk (*) is used to denote multiplication, addition is represented by +, subtraction is represented by - and division is /

note The = symbol is used to indicate that we will be entering a formula. You could also use the + symbol to start a formula instead.
note The above example would have worked without the parentheses, but they help us organize what we are seeing and are necessary in large formulae.

Try changing the price of apples to 0.30 to see what happens to the cost.

Back to the top
Back to the top

Using fill

The next logical step would be to fill out formulae all the way down the cost column. This would be very tedious and unnecessary because there exists a tool to do this for us. The fill tool will look at what we have already entered (i.e. the formula) and recreate it with new cell names accordingly. Try the following:

Starting with the cell with the formula in it,
select cells E7 thru E16.
Edit Fill QuickFill

The cost for each item is now calculated, if you move the cell pointer to one of the new cost cells you will see that the contents box shows the formula that was created for that cell. Another thing that the fill tool can be used for, is to fill in a series of numbers. Try the following:

Select cells A7 thru A16.
Edit Fill Fill Series... Set the start as 1 and then select ok.

We now have a numbered list of grocery items. The start number indicated which number to start counting at, and the step was how much to count by (1's, 2's, 3's, etc.).

Back to the top
Back to the top

Inserting/Deleting rows and columns

At some point it may become necessary to insert a row or column. Lets insert a blank row after our headings by doing the following:

Select row 7 by clcking on the number 7 out of all the row names.
Insert Row

A column is inserted the same way, just select the column option instead of row. Follow the above instructions to insert a second blank row where we inserted the first.

We will now delete this second row by doing the following:

Select the entire second blank row.
Edit Delete...
Back to the top
Back to the top

Using functions

Sometimes the formulae we have to use can get very complex, to avoid this problem spreadsheets come with built-in functions. These functions are simply pre-defined formulae, all we have to do is state the name of the function and which cells we want that function use. Before we can practice with these functions, we must enter some more headings, enter the following:

In cell B20 enter: Sub-total
In cell B21 enter: GST rate and in cell C21 enter: 0.08
In cell B22 enter: GST
In cell B23 enter: PST rate and in cell C23 enter: 0.07
In cell B24 enter: PST
In cell B25 enter: Total
In cell B26 enter: Average Product Cost
In cell B27 enter: Total number of products purchased

Now we can use functions to easily determine all of these things. The first thing that we will calculate is the sub-total. Try the following:

In cell C20 enter: @SUM(E8..E17)

The @ symbol signifies that we will be entering a function. The word SUM signifies the sum function (addition). After every function name we will include a set of brackets, inside these brackets are the cells that we wish to include in the performing of the function. In this case we are including cell E8 thru 17. Therefore, the cell that contained this function now holds the sum of the values in cells E8 thru E16. Instead of entering E8..E16 we could of also entered E8, E9, E10, E11, E12, E13, E14, E15, E16, but this would take much longer. Next we will do some multiplying. Try the following:

In cell C22 enter: @MULT(C20,C21)
In cell C24 enter: @MULT(C20,C21)

This function multiplies all the cells you give it. Using your new knowledge of functions, determine the total by adding the contents of cells C20, C22 and C24. We can also use functions to compute the avearge cost of all the items. Try the following:

In cell D27 enter: @AVG(E8..E17)

Since it would be very difficult to remember all the functions that the spreadsheet has, we can also use the menu bar to access functions. To test this we will use a function to count the number of cells we give it. Try the following:

Select cell D28.
Insert Function...
Select a function called COUNT, then select next.
In the List section type in E8..E17, then select finish.
Finally, press enter.
Back to the top
Back to the top

Absolute versus relative addresses

To demonstrate a concept try the following:

Select cell E13 and press the del key to clear its contents.
Now select cell E14, then press ctrl + c to copy the cell contents.
Select cell E13, then press ctrl + v to paste.

You might expect to find the same result in E13 as E14, since we copied and pasted the contents of E14 into cell E13. Forunately, the spreadsheet program interprets the copy and paste operation and translates the formula to suit the needs of cell E13. Sometimes, however, we simply want to copy and paste an exact formula. If we wanted to do this we would simply have to put a dollar sign in front of each collumn and row we name in the formula that we are copying. Here is an example, =$A$41 + $A$31.

Back to the top
Back to the top

Changing the numeric format of cells

Up until now, every number that we have entered appears exactly the way that we typed it in. We can, however, get the spreadsheet program to automatically make the numbers that we have typed in appear a certain way. To do this, try the following:

note You can select non-adjacent groups of cells by selecting the first group, then holding ctrl while you select the next group and so on.
Select all the cells that contain money values.
Format Selection
Under the Numeric Format tab select currency, then ok.

You probably noticed that all of the cells you selected now have numbers with two decimal places, a dollar sign and a comma every three digits. Feel free to try other numeric formats.

Back to the top
Back to the top

Sorting cells

The spreadsheet software allows us to sort cells alphabetically or numerically. We will sort our list of grocery items by doing the following:

Select all of the grocery items along with their price, quantity and cost.
Tools Sort...
In the new window select Sort.
note If we had not selected the price, quantity and cost, the items would have been reorganized, but the prices would not have matched up properly.
Back to the top
Back to the top

Inserting charts

Charts are an excellent way of displaying data. They can be used to simplify data that appears complex or give needed emphasis to a single item, in a list of items. We can make a bar graph to compare the prices of various items by doing the following:

Select all the items and their prices along with those two heading titles.
Insert Chart...
Travel through the wizard, select a bar chart and give it an appropriate title.
When you select finish you will need to draw the chart area by holding the mouse
button down while moving it to attain the desired size.
Back to the top
Back to the top

Printing options

There are two main options that we can use when we are printing out our spreadsheets. The first option will make the gridlines visible on the printed page. The second option will show all of the formulae you have used instead of simply showing the results. You can print gridlines by completing the following:

File Page Setup...
Under the Options tab select the gridlines option.

You can view your functions/formulae by:

Select the cell(s) with the functions/formulae you wish to view
Format Selection Properties...
Under the numeric format tab select text.
Back to the top
Back to the top

Inserting headers/footers

Headers and footers are items that will appear on every printed page at the top or bottom respectively. You can add a header or footer to the document by doing the following:

File Page Setup...
Under the Header/Footer tab you will find areas to add your own header or footer.
Back to the top
Back to the top