Assignment 2
Assignment 2
PROBLEM STATEMENT: Create a spreadsheet for a small online store with monthly sales
data for different products. Here's a sample dataset for three products (Product A, Product B,
and Product C) for the first six months of the year: Calculate monthly sales totals, identifies
top-selling products, and visualizes sales trends using line charts or bar graphs. Use
conditional formatting to highlight exceptional sales performances.
Solution:
I. According to the question we should make a table with the column names (month, product
A sales, product B sales, product C sales, total sales, top sailing product).
II. Put random values in month, product A sales, product B sales, product C sales.
III. The formula for total sales(E3) is: =SUM(B3:D3). And used the same formula for other
months.
IV. The formula for top sailing product(F3) is: =MAX(B3:D3)
V. Then made a line chart to visualise the data of sailing products according to the
corresponding month.