This is my worksheet from the Introduction to Business Analysis using Spreadsheet: Basic course. In this course, I have accomplished the following:
- Apply math operations such as + (addition), – (subtraction), * (multiplication), and / (division)
- Apply how to clean the data as deleting the duplicates, split the column into two columns, filter and sorting data
- Apply logical and aggregation functions such as IF, AND, OR, SUM, AVERAGE, MIN, MAX, COUNT, SUMIF and COUNTIF
- Build data visualization data using: Bar and Line or column charts
My worksheet can be accessed by clicking this Exercise 1. Below is an explanation of each sheet in the worksheet:
T1-02
On this section, we are told that in spread sheet, the rectangle boxes formed by the pattern are called cells.
Every cells have address or referrence. The address is formed by columns and rows.
For instance, Hello World
have address A1. We get A in column and 1 in row.
T1-03
This sheet perform arithmetic operators. The operators would be:
- Addition
+
- Substraction
-
- Multiplication
*
- Division
/
In this case we have to calculate Total Price of Banana and Apple, So we use addition and multiplication operators.
Column F is the price of one apple and one banana.
T2-01
We can calculate data using operator or function.
Column C
perform calculate data using operator and Column D
using function.
C2
and D2
are value of average data
C3
and D3
are value of addition data
C4
and D4
are value of addition data
T2-02
We have data in range A1:D11
. Then We do some calculation to answer question below:
- The total number of all fruits.
- The total number of apples
- The total number of kiwis
- The total average of all fruits
- The total average of bananas
- The total average of Pinapple
The answer will be in range E13:E18
T3-01
Next, we going to clean the data. We will remove duplicate data.
The data source in range A1:A8
. Manually, We found that we have duplicate data in cell A3
and A8
.
Remove duplicate manually take time when working with large data sets. So, we going to run function that can remove duplicate data.
- Select range
A1:A8
- Go to
Data >> Data cleanup >> Remove duplicates
The result will be in Column C
.
T3-02
Next task, split column into two column. We use function in menu Data >> Split text to column >> Select separator in Space
Then, Column Name
become First Name
and Last Name
.
T3-03
Here we do sorting data in range A1:B8
. We sort First Name
in ascending.
The result in Column D
and Column E
we see Aquanio Greg is placed in the first list.
T3-04
In spread sheet we can filter data. When the data is filtered, only rows that meet filter criteria will be displayed and other will be hidden.
We perform filter in range A:A
.
T3-05
This task, we try another data and remove duplicate data. Then we sort the data is descending.
T4-01
Next, we have data in rangen A1:C5
, Then we try to solve these task:
- Sum of all fruits
- max no. of apples
- Min no. of bananas
- Avg no. of Kiwi
T4-02
In Column C
we perform condition:
IF(APPLE > BANANA) = TRUE
PRINT "APPLES"
ELSE
PRINT "BANANAS"
T4-03
This task, we analyze data using logical and agregate function.
for AND Function
the condition is
IF A2>B2 AND A2>C2 = TRUE
RETURN "Apples"
ELSE
RETURN "No apples"
for OR Function
the condition is
IF A3>B3 OR A3>C3 = TRUE
RETURN "Yes"
ELSE
RETURN "No"
for NOT Function
the condition is
NOT (TRUE)
RETURN "Yes"
We type each function in range C7:C9
according to the syntax of spreadsheet
T5-01
Next, we try some of logical agregation function in spreadsheet for data source in range A1:A19
.
As we can see, we use the spreadsheet function in Column C
and the result in Column D
.
T5-02
Here is the bar chart. Bar chart are commonly used to compare several categories of data. We try to compare price of Apples, Bananas, Oranges, Kiwi.
The following bar show that Kiwi has highest price than the other fruit. Followed by Banana, Orange and the last is Apple.