Bba Unit 3 Full Notes
Bba Unit 3 Full Notes
Figure 2.1
Figure 2.2
Spreadsheet
Cell Reference — A cell reference identifies the location of a cell or group of cells in the spreadsheet also referred as a cell ad
Computerised Accounting System
The other navigational and operational strokes are used for faster
cursor movement than one cell at a time with cluster of filled cells.
Cluster of filled cells implies a set of consecutive cells in a row or in a
column having some data.
If the value is entered as 306, its type is automatically taken as Numeric; if the value is entered as Asset, its type will be tak
Values
ote or a database value.
ted to user-entered data or formulas. There are no ‘side effects’ to calculating a formula: the only output is to display the calculated res
components; the formula itself and the resulting value. The formula is
shown only when the cell is selected by “clicking” the mouse over a
particular cell; otherwise it contains the result of the calculation (in
this case 16).
The arithmetic operations and complex nested conditional (what-
if scenario) operations can be performed by spreadsheets which follow
order of mathematical (expression) operations rules.
Behind the Numbers Excel is hiding cell references, we will see how
it works now.
The steps are for defining Name Ranges are as
follows:
1. Select the cell(s) which are to be named
(such as B1:F1 in Figure 2.10(a)).
2. Click on the ribbon on formula tab.
3. Select Define Name (Figure 2.10(b) option
on the ribbon and click it.
4. This will provide a dialogue box will be Figure 2.10(a)
opened as shown in Figure 2.10(c) to click
Define Name (another option Apply Names is for previously created
Range Names to select) (Figure 2.10(d)).
Array: Used to build single formulas that produce multiple results or that operate on
a group of arguments that are arranged in rows and columns. An array range shares
a common formula; an array constant is a group of constants used as an argument.
Array formula: A formula that performs multiple calculations on one or more sets of
values, and then returns either a single result or multiple results. Array formulas are
enclosed between braces { } and are entered by pressing CTRL+SHIFT+ENTER.
Middle Name and Surname of the employees into Full Name using
CONCATENATE Function (Figure 2.22(b).
Logical Function
We have learned earlier about
IF functions in this chapter. Let us
understand two more other logical
functions which are very useful.
When a situation arises to compare
more than one condition and the Figure 2.22(b)
result of joint conditions is used
for further operations.
A logical value (true or false) outcome is the comparison of data values
or results of arithmetic expressions compared with another data values
or results of another arithmetical expressions using logical operator.
One common use for the AND function is to expand the usefulness of
other functions that perform logical tests.
In the above example, the IF function performs a logical test and
then returns one value if the test evaluates to TRUE and another value
if the test evaluates to FALSE. By using the AND function as the
logical_test argument of the IF function, we can test many different
conditions.
2. OR function is like other logical functions, the OR function gives
only a TRUE or FALSE answer. To determine whether the output will
be TRUE or FALSE, the OR functions evaluates at least one
mathematical expression located in another cell in the spreadsheet.
This function returns TRUE if any argument is TRUE; returns FALSE
if all arguments are FALSE.
The syntax for the OR function is:
= OR (logical-1, logical-2, ... logical-255 )
Logical-1, logical-2 … - refers to the cell references that are being
checked. Up to 255 logical values can be entered into the function.
Example
Formula Description Result
a.= OR (TRUE, FALSE) One argument is TRUE TRUE
b.=OR ((1+1)=1,(2+2)=5) All arguments evaluate to FALSE FALSE
c.=OR (TRUE,FALSE,TRUE) At least one argument is TRUE TRUE
Lookup and References Function
The LOOKUP function returns a value either from a one-row or one-
column range or from an array. The LOOKUP function has two syntax
forms: vector and array.
The Look Up function can be used as an alternative to the IF function
for elaborate tests or tests that exceeds the limit for nesting of IF
functions.
NC
ACCRINT
par ∑ A
frequency 1 NL1
2. CUMIPMT
This function returns the cumulative interest paid between two periods
(Refer Figure 2.28). The syntax of the function is:
CUMIPMT (rate, nper, pv, start_period, end_period, type)
Rate is the interest rate.
Nper is the total number of
payment periods.
Pv is the present value.
Start_period is the first period in the
calculation. Payment
periods are numbered
beginning with 1.
Figure 2.28 End_period is the last period in the
calculation.
Type is the timing of the payment (which may be either 0 or 1)
0 (zero) means Payment at the end of the period
1 means Payment at the beginning of the period.
3. PV
10% annual interest rate and installments are made the monthly
payments, then the interest rate per month is 10%/12, or 0.83%. The
value for rate into the function will be 10%/12, or 0.83%, or 0.0083.
Nper is the total number of payment periods in an annuity. For
example, if this loan is a four-year car loan and makes monthly
payments, then loan has 4*12 (or 48) periods. The value for nper will
be 48.
Pmt is the payment made each period and cannot be change over
the life of the annuity. Typically, pmt includes principal and interest
but no other fees or taxes. For example, the monthly payments on an
Rs.10, 000, for four-year car loan at 12 per cent are Rs. 263.33. We
have to enter -263.33 into the function as the pmt. If pmt is omitted,
then fv must be included in the argument.
Fv is the future value, or a cash balance to attain after the last
payment is made. If fv is omitted, it is assumed to be 0 (the future
value of a loan, for example, is 0). For example, if we want to save
Rs. 50,000 to pay for a special project in 18 years, then Rs. 50,000 is
the future value. Then it is necessary to guess an interest rate and
determine how much to save each month. If fv is omitted, then pmt
must be included as the argument.
Type is the number 0 or 1 and indicates when payments are due.
The fv and type arguments are optional. The fv argument is the future
value or cash balance that we want to have after making last payment.
If we omit the fv argument, Excel assumes a future value of zero. The
type argument indicates whether the payment is made at the beginning
or end of the period: (0 or omit the type argument when the payment is
made at the end of the period and use 1 when it is made at the
beginning of the period).
When using financial functions, keep in mind that the fv, pv, and
pmt arguments can be positive or negative, depending on whether we
are receiving the money or paying out the money. It may be noted that
if we want to express the rate argument in the same units as the nper
argument, so that if we make monthly payments on a loan and we
express the nper as the total number of monthly payments, as in 360
(30×12) for a 30-year mortgage, we need to express the annual interest
rate in monthly terms as well. Excel solves for one financial argument
in terms of the others. If rate is not 0, then:
nper
pv* (1 rate) If rate is 0, then:
pmt(1 rate * type)*
(1 rate) nper
1 fv
C (pmt * nper) + pv + fv = 0
rate
Computerised Accounting System
An annuity is a series of constant cash payments made over a continuous period. For example, a
4. FV
This function returns the future value of an investment based on
periodic, constant payment and a constant interest rate (Figure 2.30).
The syntax of the function is :
FV (rate, nper, pmt, pv, type) where
Rate is the interest rate per period.
Nper is the total number of payment periods in an annuity.
Pmt is the payment made each period; it cannot change over
the life of the annuity. Typically, pmt contains principal
and interest but no other fees or taxes. If pmt is omitted,
then include the pv value in the argument.
Pv is the present value, or the lump-sum amount that a
series of future payments is worth right now. If pv is
omitted, it is assumed to be 0 (zero), and then include
the pmt value in the argument.
Type is the number 0 or 1 and indicates when payments are
due. If type is omitted, it is assumed to be 0.
Example
Figure 2.30
In the function FV (rate, nper, pmt, pv, type); the values are
substituted as given in different cells of the worksheets and the result
cell A8 is having Rs. 2581.40 first worksheet for type is 1 while in
second worksheet shows the value of result Rs. 2571.18 for type is 0.
Spreadsheet
5. PMT
The PMT function calculates the periodic payment for an annuity,
assuming equal payments and a constant rate of interest (Figure
2.26(d)). The syntax of PMT function is as follows:
= PMT(rate, nper, pv, [fv], [type]) where
rate is the interest rate per period,
nper is the number of periods,
pv is the present value or the amount the future payments
are worth presently,
fv is the future value or cash balance that after the last
payment is made (a future value of zero when we omit this
optional argument)
type is the value 0 for payments made at the end of the period
or the value 1 for payments made at the beginning of the
period.
The PMT function is often used to calculate the payment for
mortgage loans that have a fixed rate of interest.
Example (Figure 2.31)
In the sample worksheet that contains a
table using the PMT function to calculate
loan payments for interest rate 8% per
annum and principal amount Rs. 1000/-
Here we have used both values of type
= 0 and 1
6. RATE Figure 2.31
This function returns the interest rate per period of an annuity. RATE
is calculated by iteration and can have zero or more solutions. If the
successive results of RATE do not converge to within 0.0000001 after
20 iterations, RATE returns the #NUM! error value (2.32). The syntax
of the function is as follows:
RATE (nper, pmt, pv, fv, type, guess) where.
Nper is the total number of payment
periods in an annuity.
Pmt is the payment made each period
and cannot change over the life
of the annuity. Typically, pmt
includes principal and interest
but no other fees or taxes. If pmt
is omitted, then include the fv
as argument.
Figure 2.32
Computerised Accounting System
After we drag the fill handle, the Auto Fill Options button appears
so that we can choose how the selection is filled. For example, we can
choose to fill just cell formats by clicking Fill Formatting Only, or we
can choose to fill just the contents of a cell by clicking Fill Without
Formatting.
Option -1 Drag the fill handle to fill data into adjacent cells
(Figure 2.38)
For example, we want to enter
data in A1:A10 starting value
from 10 and in step of 10 we
will get 10, 20, … 100 by using
drag option as shown in the
Figure 2.34 and Figure 2.35 Figure 2.36
respectively.
1. Select the cells that contain the data that we want to
fill (A1:A2) into adjacent cells (A3:A10).
2. Drag the fill handle across the cells that we want to
Figure 2.37 fill.
3. To choose how we want to fill the selection, click Auto Fill
Options, and then click the option that we want.
Figure 2.38
Option - 2 fill the active cell with the contents of an adjacent cell
1. Select an empty cell (A1) enter the value 10.
2. On the Home tab, in the Editing group, click Fill, and then click
on Series option.
Spreadsheet
3. The option window provides direction (row wise i.e., B1:J1 or column
wise i.e., A2:A10) selection. The main option is Step Value (i.e.
increment to the previous cell values in linear form) it is 10 in this
example with respect to cell A1 and while another option is Stop
Value ( i.e. last value of the data when it is achieved the data fill
stops) is 100 which may be in cell A10.
4. Once we enter the all the options and click OK, we get data filled in
the series A1:A0 as 10:100 in step of 10.
Observe the another example for Date data we can use fill handle
(it is important to note that all the cells of the columns or rows should
be defined in (required) date data format using Format Cells). In this
example we will enter date 24-11-1952 (or 24-Nov-1952) in cell A1 and
24-12-1952 (or 24-Dec-1952) in cell A2 and then use Auto Fill Options
button between cells A3:A10; find the changes?
Import/Copy Data from other sources
One more method for data entry for any application we can use the
following easiest method which will transfer data into required cells
by copying or importing to Excel worksheet. These data files may be
either in text files or non-text files format.
Text files can be directly read using a text editor such as Note pad
in MS Windows. These files often have extension .txt but can have
other extensions (such as .csv known as Comma Separated Values
text file), easily read into Excel.
To import the data from a text file following steps are important for
Figure 2.39.
1. Create data file using Notepad program of MS Windows (to get
Notepad screen on desktop; click on Start button -> All Programs -
> Accessories -> Notepad).
2. A comma-separated data values in one line of this text file is a row
in a spreadsheet and each entry, separated by a comma, is a column
entry for that row.
3. In the first line provides names for
the columns of the spreadsheet.
4. In the next line onward start
entering the data separate by
comma as per the names given in
first line.
5. It may possible that every data
may not be of similar length but
each data (even a blank data)
should be separated by comma as Figure 2.39
per the names of the column.
6. Open a new Excel worksheet from the Office Button.
Computerised Accounting System
Figure 2.42
Figure 2.50(b)
Figure 2.50(c)
◆ We can prevent entry of dates that falls on (weekends or
holidays) Saturday or Sunday (or any other day). The WEEKDAY
function returns the number for the date entered in the cell. If
the value is 1(it is Sunday) and 7 (it is Saturday) then data entry
is not allowed (Figure 2.50(c) and error message will be displayed.
DATA VALIDATION FORM
To input data into a spreadsheet, often we type the data into cells
directly. That’s where data validation comes in handy. Instead of typing
the same thing again and again, we can enter data into cells using
A form, whether printed or online, is a document designed with a standard structure and format that makes it easier to cap
Computerised Accounting System
drop-down lists or using data input form. Using a data form can make
data entry easier than moving from column to column when we have
more columns of data than can be viewed on the screen. To create
input data form it is necessary that all the data names must be entered
in the first row of the worksheet, because the input form refers these
data names. To create input data form we have to select the tool
DATA FORMATTING
Formatting of spreadsheets makes easier to read and understand he
important information (e.g. conditional formatting, number formatting,
text and general spreadsheet formatting etc.). On the Ribbon there are
several tools and shortcuts to format spreadsheets effectively. Some of
them are described as follows:
FORMATTING TOOLS
The formatting tools for:
• Number formatting – Number formatting includes adding per cent
symbols (%), commas (,), decimal places, and currency signs ($,
Spreadsheet
Rs. etc), date, time, scientific values and as well as some special
formats to a spreadsheet. The type of number format can be
determined once the data is entered into the cell. Here are some
examples:
◆ Currency: If we enter a financial
value complete with the dollar/
currency sign and two decimal
places, Excel assigns a Currency
format to the cell alongwith the
entry.
◆ Percentages: If we enter a value
representing a percentage as a
whole number followed by the per
cent sign without any decimal
places, Excel
assigns to the cell the percentage
Figure 2.52(a)
format that follows this pattern along with the entry.
◆ Dates: If we enter a date (dates are values, too) that follows one
of the built-in Excel number formats, such as 16-04-2009 or 16- Apr-
2009 the program assigns a Date format that follows the pattern of
the date.
Example – Explaining below the steps to format range B4:E7 as
currency with zero decimal places using negative preset format.
The sample unformatted worksheet is shown in the Figure 2.52(a)
Select the range to format, i.e.
B4:E7
From the Ribbon select,
Home Tab with Number
option, click on (Figure
2.52(b) to display Format
Cells dialog box and choose
Number tab.
The Category list shows all
the preset formats available
in Excel, grouped into
categories. A sample
corresponding to the current
selection is shown at the top
of the box.
Select the Category required
i.e. Currency. The right hand
side of the box shows the
different symbols of
currencies. It also shows the
preset for negative values Figure 2.52(b)
either minus sign (-) or red
Computerised Accounting System
the Text dialog box. We can use these drawing tools in dressing them
up with special formatting commands (Figure 2.52(j)). These tools allow
us to add decorative and explanatory material to worksheet and chart.
How the Illustrations Tools or Text Tools can be used; let us
understand from the example using both the tools bars together.
• Change the font or font size in a worksheet (Figure 2.52(j)) and
Figure 2.52(j)
1. Select the cell, range of cells, text, or characters that we want to
format.
2. On the Home tab, in the Font group, we will do the following:
◆ To change the font, click the font
that we want in the Font box.
◆ To change the font size, click the
font size that we want in the Font
Size box , or click Increase Font
Size or Decrease Font Size Figure 2.52(k)
5. On the Border tab, under Line, in the Style box, click the line
style that we want to use for the border.
6. In the Colour box, select the colour that we want to use.
7. Under Border, click the border buttons to create the border
that we want to use.
8. Click OK.
9. In the Style dialog box, under Style Includes, clear the check
boxes for any formatting that we do not want to include in the
cell style.
10. Click OK.
11. To apply the cell style, do the following:
12. Select the cells that we want to format with the custom cell
border.
13. On the Home tab, in the Styles group, click Cell Styles.
14. Click the cell style that we want to apply.
• Conditional Formatting
Conditional formatting helps us for specific questions about data. We
can apply conditional formatting to a cell range, a table, or a PivotTable
report. There are important differences to understand when we use
conditional formatting on a PivotTable report (Figure 2.52(k).
• The benefits of conditional formatting (Figure 2.52m)
To analyse data, we often ask ourselves some questions,
such as:
Where are the exceptions in a summary of data
over the past five years?
What is the trend in data over the past two years?
Who is responsible for such results during this
month?
What is the overall age distribution of employees?
Which products have greater than 10% revenue
increases from year to year?
Who are the highest performing and lowest
performing students in the class? Figure 2.52(m)
Figure 2.52(o)
Spreadsheet
2. Autofit
Resize shape to fit text - To increase the size of the shape vertically
so that the text fits inside of it, click this button.
3. Internal margin
The internal margin is the distance between the text and the outer
border of a chart element. We can increase or decrease the amount of
this space by using the following options.
Left – To specify the distance between the left border of the selected
chart element and the text, enter the margin number that we want in
the Left box.
Right – To specify the distance between the right border of the selected
chart element and the text, enter the margin number that we want in
the Right box.
Top – To specify the distance between the top border of the selected
chart element and the text, enter the margin number that we want in
the Top box.
Bottom – To specify the distance between the bottom border of the
selected chart element and the text, enter the margin number that we
want in the Bottom box.
Columns – To specify the number of columns of text in a chart element
and the spacing between the columns, click this button.
The commands for this
☞ Select the range.
☞ Click on Home tab for Alignment options
which displays the dialog box and select
the alignment tab (Figure 2.38(n)(1).
☞ Select horizontal and vertical as alignment
required.
☞ There are other options to display text at
angular orientation or text to be control
within cell or to spread within the cell.
☞ Click OK.
Figure 2.52(p)
• Merging a range of Cells
Merged cells are a single cell that is created by combining two or more
selected cells. The cell reference for a merged cell is the upper-left cell
in the original selected range. When two or more adjacent horizontal
or vertical cells are merged, the cells become one large cell and
displayed across multiple columns or rows. The contents of one appear
in the centre of the merged cell.
Spreadsheet
Figure 2.52(r)
Computerised Accounting System
OUTPUT REPORTS
We can print entire or partial worksheets and workbooks,
one at a time, or several at once. The MS Excel can
print just the Excel table or also it provides to:
(a) Print a partial or entire worksheet or
workbook.
(b) Print several worksheets at once.
(c) Print several workbooks at once.
(d) Print an Excel table.
(e) Print a workbook to a file.
(f) Print a graphic Charts and Pivot Tables.
We can also print a workbook to a file instead of to
a printer. This is useful when we need to print the
workbook on a different type of printer from the one to
another printer. The printing option is available to print Figure 2.54
quickly or to preview the printout before printing, click
Microsoft Office Button, click the arrow next to Print, and then click
Quick Print or Print Preview (Figure 2.54). To print worksheet or
table; basic preparation for printing is required and describe below:
DEFINING THE PRINT AREA
By default, Excel prints all data on the current worksheet but for
specific and formatted print we have to define print area from the Page
Setup dialog box or the Print Area command from the Page Layout
option of the Ribbon (Figure 2.55).
Computerised Accounting System
2. In the top left corner of the Excel window, click the Office Button»
select Print or Press [Ctrl] + [P] the Print dialog box appears.
3. In the Print what section, select Selection.
4. Click OK. The specified range of cells is printed.
• To select Print Multiple Ranges
Excel facilitates to print non-contiguous ranges. Selected ranges
will print on separate pages.
1. Select the first range to be printed.
2. Press [Ctrl] + select the second range to be printed .
3. For each additional range to be printed, repeat step 2.
4. In the top left corner of the Excel window, click the Office Button
– select Print OR Press [Ctrl] + [P]. The Print dialog box appears.
5. In the Print what section, select Selection.
6. Click Print. The specified range of cells is printed.
A data table is a range of cells that shows the results of substituting different values
in one or more formulas. There are two types of data table: One-variable and two-
variable.
One-variable data table (Figure 2.56(a) Formula used in a one-variable data table
must refer to an input cell. The input cell is a cell used by Excel in which each input
value from a data table is substituted (column-oriented, i.e. input cell down one
column or row-oriented, i.e. across one-row).
Two-variable data table (Figure 2.56(b) use only one formula with two lists of input
values. The formula must refer two different input cells.
The Pivot Table tool bar (Figure 2.58(f) provides various flexibility to
work on data.
1. Optionally, click the cell that displays the error, click the button
that appears, and then click Show Calculation Steps if it appears.
2. Possible causes and solutions.
Incorrect range operator
▪ To refer to a contiguous range of cells, use a colon (:) to separate
the reference to the first cell in the range from the reference to
the last cell in the range. For example, SUM (A1:A10) refers to
the range from cell A1 to cell A10 inclusive.
▪ To refer to two areas that don’t intersect, use the union operator,
the comma (,). For example, if the formula sums two ranges
make sure that a comma separates the two ranges (SUM (A1:A10,
C1:C10)).
Ranges do not intersect
▪ If there are no squares at each corner of the colour-coded border,
then the reference is to a named range.
▪ If there are squares at each corner of the colour-coded border,
then the reference is not to a named range.
5. Double-click the cell that contains the formula we want to change.
Excel highlights each cell or range of cells with a different colour.
6. Do one of the following:
▪ To move a cell or range reference to a different cell or range,
drag the colour-coded border of the cell or range to the new cell
or range.
▪ To include more or fewer cells in a reference, drag a corner of
the border.
▪ In the formula, select the reference, and type a new one.
7. Press ENTER.
8. Do one of the following:
▪ Select the range of cells that contains formulas in which we
want to replace references with names.
▪ Select a single cell to change the references to names in all
formulas on the worksheet.
9. On the Formulas tab, in the Defined Names group, click the
arrow next to Define Name, and then click Apply Names.
10. In the Apply Names box, click one or more names.
• Correct#NUM! Error
This error occurs with invalid numeric values in a formula or function.
1. Optionally, click the cell that displays the error, click the button
that appears, and then click Show Calculation Steps if it appears.
76 2. Review the following possible causes and solutions:
Spreadsheet
Summary
• Setting up a spreadsheet can be fairly time consuming, although templates,
or sample spreadsheets, are available with most of software packages. The
computeried spreadsheet can be formatted with different print layouts. It
allows working with rows and columns of numbers and use formula to do
“what if” calculations. The spreadsheet gives considerable power and
flexibility in entering and editing information, setting up calculations with
formula and functions, and printing the results. It has rows that are
horizontal lines of information that are numbered on the left-hand side of
the Excel workbook. Columns are vertical lines of information and are
identified by letters along the top of the spreadsheet. Rows and columns
intersect to form cells. A cell is addressed by the column and row position,
for example B4 is the intersection of column b and row 4.
• In the earliest spreadsheets, cells were a simple two-dimensional grid.
Over time, the model has been expanded to include a third dimension, and
in some cases a series of named grids, called sheets.
• In any worksheet or spreadsheet a cell is the smallest element which may
contain a value or a formula or a function or it may simply be left empty. To
use formula or function in the cell; usually begin with = sign by convention.
• A cell reference is the name cell in the spreadsheet. Most cell references
indicate another cell in the same spreadsheet, but a cell reference can also
refer to a cell in a different sheet within the same spreadsheet or to a value
from a remote application. A typical cell reference consists the column
followed by a row number is called relative cell reference. Both column
and row number; either part can be relative changes when the cell or
formula in it is moved or copied from other cell or absolute (indicated with
$ in front of the part concerned of the cell reference). The older “R1C1”
reference style consists of the letter R, the row number, the letter C, and
the column number; relative row or column numbers are indicated by
enclosing the number in square brackets. Most current spreadsheets use
the A1 style, some providing the R1C1 style as a compatibility option. When
the computer calculates a formula in one cell to update the displayed value
of that cell, cell reference(s) in that cell, naming some other cell(s), cause
the computer to fetch the value of the named cell(s).
• A reference to a range of cells is typically of the form (A1:A6) which specifies
all the cells in the range A1 through to A6. A formula such as “=SUM
(A1:A6)” would add all the cells specified and put the result in the cell
containing the formula itself.
• A function is a special key word which can be entered into a cell in order to
perform and process the data which is appended within brackets. There is
a function button on the formula toolbar (fx); which function offers assistance
Computerised Accounting System
and useful prompts into a spreadsheet cell. Alternatively we can enter the
function directly into the formula bar. A function involves four main issues:
• Name of the function.
• The purpose of the function.
• The function needs what argument(s) in order to carry its assignment.
• The result of the function.
• Formatting of spreadsheets makes easier to read and understand the
important information (e.g. conditional formatting, number formatting, text
and general spreadsheet formatting etc.). A cell or range can optionally be
defined to specify how the value is displayed. The default display format is
usually set by its initial content if not specifically previously set, so that for
example “24/11/1952” or “24 Nov 1952” would default to the cell format of
“date”. Similarly adding a % sign after a numeric value would tag the cell
as a percentage cell format. The cell contents are not changed by this
format, only the displayed value.
• To print an entire spreadsheet choose Page Setup from the File Menu,
Choose the appropriate options in terms of horizontal (landscape) or vertical
(portrait) printing, Excel prints entire spreadsheet document, if the
document is too wide to fit on a page, Excel will print the remaining columns
on subsequent pages before continuing to print the remaining rows.
• We can save our document every 5 minutes. The first time we save, go to
the File Menu and pull to Save, make sure the document is in the correct
folder and on the correct drive, type the name for what we want to save it
as, and click in the save box.