Unit 6
Unit 6
Objectives
After studying this unit, you will be able to:
• Learn how to navigate, input data, use formulas and functions, format
data, and use built-in features of spreadsheet software like Excel.
• Analyse and organise data and understand the essential functions and
formulas.
• Learn how to create charts, graphs, and other visualisations to help
communicate insights and trends in the data.
Structure
6.1 Introduction to Spreadsheet Analysis
6.2 Basic Functions and Formulas
6.3 Spreadsheet Design and Formatting
6.4 Pivot Tables and Data Analysis
6.5 Summary
6.6 Self-Assessment Exercises
6.7 Further Readings
• Formatting: Formatting tools such as font, colour, and cell borders can
be used to make data more readable and visually appealing. Formatting
can also be used to highlight important data or to differentiate between
different types of data.
• Functions and formulas: Functions and formulas are used to perform
calculations on data in the spreadsheet. Common functions include SUM,
AVERAGE, and COUNT, while formulas use operators such as +, -, *,
and / to perform more complex calculations.
• Pivot tables: Pivot tables are a powerful tool used to summarise and
analyse large amounts of data. Pivot tables allow users to group, filter,
and analyse data in various ways, making it easier to identify trends and
patterns.
• Data validation: Data validation is used to ensure that data entered into
the spreadsheet meets certain criteria, such as a specific format or range
of values. This helps prevent errors and ensures that the data is accurate.
• Charts and graphs: Charts and graphs are used to visualise data and
make it easier to interpret. Common types of charts include bar charts,
line charts, and pie charts.
• Conditional formatting: Conditional formatting allows users to format
cells based on specific criteria. For example, cells can be formatted to
turn red if the value is below a certain threshold, or to turn green if the
value is above a certain threshold.
Spreadsheet analysis is a powerful tool for organising and analysing data, and
is widely used in many fields. With the right tools and techniques, users can
gain valuable insights into their data and make informed decisions based on
the results.
These tools are just a few examples of the many spreadsheet analysis tools
available. By using these tools and others, users can gain valuable insights
into their data and make more informed decisions based on the results.
95
Business Intelligence Spreadsheet Analysis Use Cases:
& Decision Making
Spreadsheet analysis can be used in a wide variety of contexts and industries.
Here are some examples of use cases:
These are just a few examples of the many ways that spreadsheet analysis can
be used to analyse and interpret data in various industries and contexts.
96
Spreadsheet Analysis
Excel Functions: A formula is a mathematical expression that computes the
value of a cell. Functions are predefined formulas that are already in Excel.
Functions carry out specific calculations in a specific order based on the
values specified as arguments or parameters. For example, =SUM (A1:A10).
This function adds up all the values in cells A1 through A10.
This horizontal menu, shown below, in more recent versions of Excel, allows
you to find and insert Excel formulas into specific cells of your spreadsheet.
On the Formulas tab, you can find all available Excel functions in the
Function Library:
The more you use Excel formulas, the easier it will be to remember and
perform them manually. Excel has over 400 functions, and the number is
increasing from version to version. The formulas can be inserted into Excel
using the following method:
1. Simple insertion of the formula - Typing a formula in the cell:
Typing a formula into a cell or the formula bar is the simplest way to insert
basic Excel formulas. Typically, the process begins with typing an equal sign
followed by the name of an Excel function. Excel is quite intelligent in that it
displays a pop-up function hint when you begin typing the name of the
function.
97
Business Intelligence 2. Using the Insert Function option on the Formulas Tab:
& Decision Making
If you want complete control over your function insertion, use the Excel
Insert Function dialogue box. To do so, go to the Formulas tab and select the
first menu, Insert Function. All the functions will be available in the dialogue
box.
3. Choosing a Formula from One of the Formula Groups in the Formula Tab:
This option is for those who want to quickly dive into their favourite
functions. Navigate to the Formulas tab and select your preferred group to
access this menu. Click to reveal a sub-menu containing a list of functions.
You can then choose your preference. If your preferred group isn’t on the tab,
click the More Functions option — it’s most likely hidden there.
98
Spreadsheet Analysis
4. Use Recently Used Tabs for Quick Insertion:
If retyping your most recent formula becomes tedious, use the Recently Used
menu. It’s on the Formulas tab, the third menu option after AutoSum.
99
Business Intelligence 2. SUBTRACTION:
& Decision Making
To use the subtraction formula in Excel, enter the cells you want to subtract
in the format =SUM (A1, -B1). This will subtract a cell from the SUM
formula by appending a negative sign before the cell being subtracted.
For example, if A3 was 300 and B3 was 225, =SUM(A1, -B1) would perform
300 + -225, returning a value of 75 in D3 cell.
3. MULTIPLICATION:
In Excel, enter the cells to be multiplied in the format =A3*B3 to perform the
multiplication formula. An asterisk is used in this formula to multiply cell A3
by cell B3.
For example, if A3 was 300 and B3 was 225, =A1*B1 would return a value
of 67500.
4. DIVISION:
To use the division formula in Excel, enter the dividing cells in the format
=A3/B3. This formula divides cell A3 by cell B3 with a forward slash, “/.”
For example, if A3 was 300 and B3 was 225, =A3/B3 would return a decimal
value of 1.333333333.
101
Business Intelligence 6. IF formula:
& Decision Making
In Excel, the IF formula is denoted as =IF(logical test, value if true, value if
false). This lets you enter a text value into a cell “if” something else in your
spreadsheet is true or false.
For example, You may need to know which values in column A are greater
than three. Using the =IF formula, you can quickly have Excel auto-populate
a “yes” for each cell with a value greater than 3 and a “no” for each cell with
a value less than 3.
7. PERCENTAGE:
To use the percentage formula in Excel, enter the cells you want to calculate
the percentage for in the format =A1/B1. To convert the decimal value to a
percentage, select the cell, click the Home tab, and then select “Percentage”
from the numbers dropdown. There is no specific Excel “formula” for
percentages, but Excel makes it simple to convert the value of any cell into a
percentage so you don’t have to calculate and reenter the numbers yourself.
The basic setting for converting a cell’s value to a percentage is found on the
Home tab of Excel. Select this tab, highlight the cell(s) you want to convert
to a percentage, and then select Conditional Formatting from the dropdown
menu (this menu button might say “General” at first). Then, from the list of
options that appears, choose “Percentage.” This will convert the value of each
highlighted cell into a percentage. This feature can be found further down.
102
Spreadsheet Analysis
8. CONCATENATE:
CONCATENATE is a useful formula that combines values from multiple
cells into the same cell. For example , =CONCATENATE(A3,B3) will
combine Red and Apple to produce RedApple.
103
Business Intelligence 9. DATE:
& Decision Making
DATE is the Excel DATE formula =DATE(year, month, day). This formula
will return a date corresponding to the values entered in the parentheses,
including values referred to from other cells.. For example, if A2 was 2019,
B2 was 8, and C1 was 15, =DATE(A1,B1,C1) would return 15-08-2019.
10. TRIM:
The TRIM formula in Excel is denoted =TRIM(text). This formula will
remove any spaces that have been entered before and after the text in the cell.
For example, if A2 includes the name ” Virat Kohli” with unwanted spaces
before the first name, =TRIM(A2) would return “Virat Kohli” with no spaces
in a new cell.
104
Spreadsheet Analysis
11. LEN:
LEN is the function to count the number of characters in a specific cell when
you want to know the number of characters in that cell. =LEN(text) is the
formula for this. Please keep in mind that the LEN function in Excel counts
all characters, including spaces:
For example,=LEN(A2), returns the total length of the character in cell A2
including spaces.
On the Home tab, in the Font group, click the arrow next to Borders Button
image, and then click the border style that you want.
The Borders button displays the most recently used border style. You can
click the Borders button (not the arrow) to apply that style.
105
Business Intelligence Change text color and alignment:
& Decision Making
1. Select the cell or range of cells that contain (or will contain) the text that
you want to format. You can also select one or more portions of the text
within a cell and apply different text colors to those sections.
2. To change the color of text in the selected cells, on the Home tab, in
the Font group, click the arrow next to Font Color , and then
under Theme Colors or Standard Colors, click the color that you want to
use.
To apply a color other than the available theme colors and standard
colors, click More Colors, and then define the color that you want to use
on the Standard tab or Custom tab of the Colors dialog box.
3. To change the alignment of the text in the selected cells, on
the Home tab, in the Alignment group, click the alignment option that
you want.
For example, to change the horizontal alignment of cell contents, click Align
Text Left , Center , or Align Text Right .
2. Under Theme Colors or Standard Colors, pick the color you want.
106
Spreadsheet Analysis
To use a custom color, click More Colors, and then in the Colors dialog box
select the color you want. To apply the most recently selected color, you can
just click Fill Color You'll also find up to 10 most recently selected custom
colors under Recent Colors.
3. On the Fill tab, under Background Color, pick the color you want.
4. To use a pattern with two colors, pick a color in the Pattern Color box,
and then pick a pattern in the Pattern Style box.
To use a pattern with special effects, click Fill Effects, and then pick the
options you want.
107
Business Intelligence Remove cell colors, patterns, or fill effects:
& Decision Making
To remove any background colors, patterns, or fill effects from cells, just
select the cells. Then click Home > arrow next to Fill Color, and then
pick No Fill.
If print options are set to Black and white or Draft quality — either on
purpose, or because the workbook has large or complex worksheets and
charts that caused draft mode to be turned on automatically — cells won't
print in color. Here's how you can fix that:
1. Click Page Layout > Page Setup dialog box launcher.
2. On the Sheet tab, under Print, uncheck the Black and white and Draft
quality check boxes.
The color on the top of the icon will apply to the highest values.
109
Business Intelligence 4. Click on the "Green - Yellow - Red Colour Scale" icon
& Decision Making
Now, the Speed value cells will have a colored background highlighting:
Dark green is used for the highest values, and dark red for the lowest values.
Charizard has the highest Speed value (100) and Squirtle has the lowest
Speed value (43). All the cells in the range gradually change color from
green, yellow, orange, then red.
Aligning Columns and Rows: To align columns or rows in Excel, select the
cells you want to align, then click the "Align Text" button in the "Home" tab
of the ribbon. From there, you can choose to left, center, or right align text
and data.
If you’d like to realign text in a cell to enhance the visual presentation of your
data, here’s how you can do it:
1. Select the cells that have the text you want aligned.
2. On the Home tab choose one of the following alignment options:
110
Spreadsheet Analysis
3. To vertically align text, pick Top Align , Middle Align , or Bottom
Align .
4. To horizontally align text, pick Align Text Left , Center , or Align
Text Right .
5. When you have a long line of text, part of the text might not be visible.
To fix this without changing the column width, click Wrap Text.
6. To center text spanning several columns or rows, click Merge & Center.
To create a chart or graph in Excel, select the data you want to chart, then
click the "Insert" tab on the ribbon. From there, you can choose the type of
chart or graph you want to create, such as a bar chart, line graph, or pie chart.
You can then use the formatting tools in the "Chart Tools" tab to customise
the appearance of your chart or graph.
• Bar Charts: The main difference between bar charts and column charts
are that the bars are horizontal instead of vertical. You can often use bar
charts interchangeably with column charts, although some prefer column
charts when working with negative values because it is easier to visualise
negatives vertically, on a y-axis.
112
Spreadsheet Analysis
• Line Charts: A line chart is most useful for showing trends over time,
rather than static data points. The lines connect each data point so that
you can see how the value(s) increased or decreased over a period of
time. The seven line chart options are line, stacked line, 100% stacked
line, line with markers, stacked line with markers, 100% stacked line
with markers, and 3-D line.
• Scatter Charts: Similar to line graphs, because they are useful for
showing change in variables over time, scatter charts are used
specifically to show how one variable affects another. (This is called
correlation.) Note that bubble charts, a popular chart type, is categorised
under scatter. There are seven scatter chart options: scatter, scatter with
smooth lines and markers, scatter with smooth lines, scatter with straight
lines and markers, scatter with straight lines, bubble, and 3-D bubble.
113
Business Intelligence
& Decision Making
There are also four minor categories. These charts are more use case-specific:
• Area: Like line charts, area charts show changes in values over time.
However, because the area beneath each line is solid, area charts are
useful to call attention to the differences in change among multiple
variables. There are six area charts: area, stacked area, 100% stacked
area, 3-D area, 3-D stacked area, and 3-D 100% stacked area.
• Stock: Traditionally used to display the high, low, and closing price of
stock, this type of chart is used in financial analysis and by investors.
However, you can use them for any scenario if you want to display the
range of a value (or the range of its predicted value) and its exact value.
Choose from high-low-close, open-high-low-close, volume-high-low-
close, and volume-open-high-low-close stock chart options.
114
Spreadsheet Analysis
115
Business Intelligence How to Chart Data in Excel:
& Decision Making
To generate a chart or graph in Excel, you must first provide the program
with the data you want to display. Follow the steps below to learn how to
chart data in Excel 2016.
We’ll use this chart for the rest of the walkthrough. You can download this
same chart to follow along.
117
Business Intelligence
& Decision Making
COLUMN CHART TEMPLATE
There are two tabs on the toolbar that you will use to make adjustments to
your chart: Chart Design and Format. Excel automatically applies design,
layout, and format presets to charts and graphs, but you can add
customisation by exploring the tabs. Next, we’ll walk you through all the
available adjustments in Chart Design.
118
Spreadsheet Analysis
To Display or Hide Axes:
1. Select Axes. Excel will automatically pull the column and row headers
from your selected cell range to display both horizontal and vertical axes
on your chart (Under Axes, there is a check mark next to Primary
Horizontal and Primary Vertical.)
2. Uncheck these options to remove the display axis on your chart. In this
example, clicking Primary Horizontal will remove the year labels on the
horizontal axis of your chart.
3. Click More Axis Options… from the Axes dropdown menu to open a
window with additional formatting and text options such as adding tick
marks, labels, or numbers, or to change text color and size.
119
Business Intelligence
& Decision Making
1. Click Add Chart Element and click Axis Titles from the dropdown menu.
Excel will not automatically add axis titles to your chart; therefore,
both Primary Horizontal and Primary Vertical will be unchecked.
120
Spreadsheet Analysis
121
Business Intelligence To Add Data Labels:
& Decision Making
1. Click Add Chart Element and click Data Labels. There are six options
for data labels: None (default), Center, Inside End, Inside Base, Outside
End, and More Data Label Title Options.
2. The four placement options will add specific labels to each data point
measured in your chart. Click the option you want. This customisation
can be helpful if you have a small amount of precise data, or if you have
a lot of extra space in your chart. For a clustered column chart, however,
adding data labels will likely look too cluttered. For example, here is
what selecting Center data labels looks like:
• None is the default setting, where the data table is not duplicated within
the chart.
• With Legend Keys displays the data table beneath the chart to show the
data range. The color-coded legend will also be included.
• No Legend Keys also displays the data table beneath the chart, but
without the legend.
123
Business Intelligence Note: If you choose to include a data table, you’ll probably want to make
& Decision Making
your chart larger to accommodate the table. Simply click the corner of your
chart and use drag-and-drop to resize your chart.
2. For example, when we click Standard Error from the options we get a
chart that looks like the image below.
To Add Gridlines:
1. Click Add Chart Element and click Gridlines. In addition to More Grid
Line Options, there are four options: Primary Major Horizontal, Primary
Major Vertical, Primary Minor Horizontal, and Primary Minor Vertical.
For a column chart, Excel will add Primary Major Horizontal gridlines
by default.
124
Spreadsheet Analysis
2. You can select as many different gridlines as you want by clicking the
options. For example, here is what our chart looks like when we click all
four gridline options.
To Add a Legend:
1. Click Add Chart Element and click Legend. In addition to More Legend
Options, there are five options for legend placement: None, Right, Top,
Left, and Bottom.
2. Legend placement will depend on the style and format of your chart.
Check the option that looks best on your chart. Here is our chart when 125
Business Intelligence we click the Right legend placement.
& Decision Making
To Add Lines: Lines are not available for clustered column charts. However,
in other chart types where you only compare two variables, you can add lines
(e.g. target, average, reference, etc.) to your chart by checking the appropriate
option.
To Add a Trendline:
1. Click Add Chart Element and click Trendline. In addition to More
Trendline Options, there are five options: None (default), Linear,
Exponential, Linear Forecast, and Moving Average. Check the
appropriate option for your data set. In this example, we will
click Linear.
126
Spreadsheet Analysis
2. Because we are comparing five different products over time, Excel
creates a trendline for each individual product. To create a linear
trendline for Product A, click Product A and click the blue OK button.
3. The chart will now display a dotted trendline to represent the linear
progression of Product A. Note that Excel has also added Linear
(Product A) to the legend.
127
Business Intelligence
& Decision Making
Note: You can create separate trendlines for as many variables in your chart
as you like. For example, here is our chart with trendlines for Product A and
Product C.
To Add Up/Down Bars: Up/Down Bars are not available for a column chart,
but you can use them in a line chart to show increases and decreases among
data points.
Step 4: Adjust Quick Layout
1. The second dropdown menu on the toolbar is Quick Layout, which
allows you to quickly change the layout of elements in your chart (titles,
legend, clusters etc.).
128
Spreadsheet Analysis
2. There are 11 quick layout options. Hover your cursor over the different
options for an explanation and click the one you want to apply.
129
Business Intelligence
& Decision Making
In this example, switching the row and column swaps the product and year
(profit remains on the y-axis). The chart is now clustered by product (not
year), and the color-coded legend refers to the year (not product). To avoid
confusion here, click on the legend and change the titles from Series to Years.
130
Spreadsheet Analysis
2. A window will open. Type the cell range you want and click
the OK button. The chart will automatically update to reflect this new
data range.
131
Business Intelligence Step 9: Change Chart Type
& Decision Making
1. Click the Change Chart Type dropdown menu.
2. Here you can change your chart type to any of the nine chart categories
that Excel offers. Of course, make sure that your data is appropriate for
the chart type you choose.
2. A dialogue box appears where you can choose where to place your chart.
You can either create a new sheet with this chart (New sheet) or place
this chart as an object in another sheet (Object in). Click the
132
Spreadsheet Analysis
blue OK button.
2. Click the dropdown menu on the top left side of the toolbar and click the
chart element you are editing.
By using these basic techniques, you can improve the design and formatting
of your spreadsheets and make them easier to read and understand.
Data analysis, on the other hand, is the process of examining and interpreting
data to identify patterns, trends, and insights. It is used to gain a deeper
understanding of data and to make informed decisions based on the results.
Pivot tables are a powerful tool for data analysis, as they allow users to
quickly and easily summarise and manipulate large amounts of data. By
using pivot tables in combination with other data analysis techniques, such as
charts, graphs, and statistical analysis, users can gain valuable insights into
their data and make informed decisions based on the results.
Consider the following table of sales data. From this data, you might have to
summarise total sales region wise, month wise, or salesperson wise. The easy
way to handle these tasks is to create a PivotTable that you can dynamically
modify to summarise the results the way you want.
Creating PivotTable
To create PivotTables, ensure the first row has headers.
• Click the table.
• Click the INSERT tab on the Ribbon.
• Click PivotTable in the Tables group. The PivotTable dialog box
appears.
134
Spreadsheet Analysis
As you can see in the dialog box, you can use either a Table or Range from
the current workbook or use an external data source.
• In the Table / Range Box, type the table name.
• Click New Worksheet to tell Excel where to keep the PivotTable.
• Click OK.
135
Business Intelligence
& Decision Making
Recommended PivotTables
In case you are new to PivotTables or you do not know which fields to select
from the data, you can use the Recommended PivotTables that Excel
provides.
• Click the data table.
• Click the INSERT tab.
• Click on Recommended PivotTables in the Tables group. The
Recommended PivotTables dialog box appears.
136
Spreadsheet Analysis
Click OK. The selected PivotTable appears on a new worksheet. You can
observe the PivotTable fields that was selected in the PivotTable fields list.
PivotTable Fields
The headers in your data table will appear as the fields in the PivotTable.
You can select / deselect them to instantly change your PivotTable to display
only the information you want and in a way that you want. For example, if
you want to display the account information instead of order amount
information, deselect Order Amount and select Account.
137
Business Intelligence
& Decision Making
PivotTable Areas
You can even change the Layout of your PivotTable instantly. You can use
the PivotTable Areas to accomplish this.
An instant update helps you to play around with the different Layouts and
pick the one that suits your report requirement.
You can just drag the fields across these areas and observe the PivotTable
layout as you do it.
138
Spreadsheet Analysis
In the PivotTable Areas, in rows, click region and drag it below salesperson
such that it looks as follows −
139
Business Intelligence
& Decision Making
Note − You can clearly observe that the layout with the nesting order –
Region and then Salesperson yields a better and compact report than the one
with the nesting order – Salesperson and then Region. In case Salesperson
represents more than one area and you need to summarise the sales by
Salesperson, then the second layout would have been a better option.
Filters
You can assign a Filter to one of the fields so that you can dynamically
change the PivotTable based on the values of that field.
140
Spreadsheet Analysis
The filter with the label as Region appears above the PivotTable (in case you
do not have empty rows above your PivotTable, PivotTable gets pushed
down to make space for the Filter.
141
Business Intelligence
& Decision Making
• Check the option Select Multiple Items. Check boxes appear for all the
values.
• Select South and West and deselect the other values and click OK.
The data pertaining to South and West Regions only will be summarised as
shown in the screen shot given below −
You can see that next to the Filter Region, Multiple Items is displayed,
indicating that you have selected more than one item. However, how many
items and / or which items are selected is not known from the report that is
displayed. In such a case, using Slicers is a better option for filtering.
Slicers
You can use Slicers to have a better clarity on which items the data was
142 filtered.
Spreadsheet Analysis
• Click ANALYSE under PIVOTTABLE TOOLS on the Ribbon.
• Click Insert Slicer in the Filter group. The Insert Slicers box appears. It
contains all the fields from your data.
• Select the fields Region and month. Click OK.
Slicers for each of the selected fields appear with all the values selected by
default. Slicer Tools appear on the Ribbon to work on the Slicer settings,
look and feel.
143
Business Intelligence Summarising Values by other Calculations
& Decision Making
In the examples so far, you have seen summarising values by Sum. However,
you can use other calculations also if necessary.
In the PivotTable Fields List
• Select the Field Account.
• Unselect the Field Order Amount.
The Value Field Settings box appears. Several types of calculations appear as
a list under Summarise value field by −
• Select Count in the list.
• The Custom Name automatically changes to Count of Account. Click
OK.
144
Spreadsheet Analysis
PivotTable Tools
Follow the steps given below to learn to use the PivotTable Tools.
• Select the PivotTable.
The following PivotTable Tools appear on the Ribbon −
• ANALYSE
• DESIGN
145
Business Intelligence Some of the ANALYZE Ribbon commands are −
& Decision Making
• Set PivotTable Options
• Value Field Settings for the selected Field
• Expand Field
• Collapse Field
• Insert Slicer
• Insert Timeline
• Refresh Data
• Change Data Source
• Move PivotTable
• Solve Order (If there are more calculations)
• PivotChart
Some of the DESIGN Ribbon commands are −
• PivotTable Layout
o Options for Sub Totals
o Options for Grand Totals
o Report Layout Forms
o Options for Blank Rows
• PivotTable Style Options
• PivotTable Styles
6.5 SUMMARY
Spreadsheet analysis refers to the process of using electronic spreadsheets,
such as Microsoft Excel or Google Sheets, to organise, manipulate, and
analyse data. It involves creating formulas and functions to perform
calculations and automate tasks, formatting data to make it more readable,
and using charts and graphs to visualise and communicate insights.
Spreadsheet analysis can be used for a wide range of applications, from
budgeting and financial analysis to inventory management and project
tracking. By leveraging the power of spreadsheets, analysts can save time,
reduce errors, and gain valuable insights from their data.
Spreadsheet analysis can be used in a variety of contexts, such as finance and
accounting, sales and marketing, human resources, project management, and
more. Some common use cases include budgeting, forecasting, financial
statement analysis, inventory management, and data analysis. To get the most
out of spreadsheet analysis, it's important to follow best practices such as
organising data in a logical and consistent manner, using descriptive labels
and formulas, keeping formulas simple and transparent, and testing and
validating calculations to ensure accuracy.
146
Spreadsheet Analysis
6.6 SELF-ASSESSMENT EXERCISES
Caselet:
You have been tasked with creating a budget spreadsheet for your household
expenses. Your goal is to create a spreadsheet that can track your income and
expenses, calculate your monthly savings, and provide a summary of your
spending by category.
Questions:
• Create a new Excel spreadsheet and label the first row as "Month" and
the second row as "Income" and "Expenses" respectively.
• Under the "Income" column, list your sources of income for the month
(such as salary, freelance work, or rental income).
• Under the "Expenses" column, list your expenses for the month,
including categories such as housing, food, transportation, and
entertainment.
• Use Excel's SUM function to calculate the total income and expenses for
the month.
• Create a formula to calculate your monthly savings by subtracting your
total expenses from your total income.
• Use conditional formatting to highlight any cells that are over budget or
below a certain threshold (such as a minimum savings amount).
• Create a pie chart or bar chart to visualise your spending by category.
• Use data validation to create a drop-down list of categories for your
expenses.
• Save the spreadsheet and update it each month to track your progress and
make adjustments as needed.
147
Business Intelligence
& Decision Making
148