0% found this document useful (0 votes)
62 views4 pages

Excel Advanced Practical Exercises

The document outlines a comprehensive Excel practical exercise involving multiple tasks related to product sales data management. It includes creating and formatting a table, performing calculations with functions, utilizing advanced mathematical and logical functions, manipulating strings, implementing data validation, and creating charts for data analysis. Each task provides specific steps and formulas to enhance Excel skills and data handling capabilities.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
62 views4 pages

Excel Advanced Practical Exercises

The document outlines a comprehensive Excel practical exercise involving multiple tasks related to product sales data management. It includes creating and formatting a table, performing calculations with functions, utilizing advanced mathematical and logical functions, manipulating strings, implementing data validation, and creating charts for data analysis. Each task provides specific steps and formulas to enhance Excel skills and data handling capabilities.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Excel Advanced Practical Exercise

Task 1: Create and Format a Table


Step 1: Enter the following product sales data into an Excel worksheet:

Total Final Date


Product Product Price Quantity Discount Seller
Category Sales Amount of
ID Name (₹) Sold % Name
(₹) (₹) Sale
12-
P101 Laptop Electronics 55000 8 10% 05- Amit
2023
23-
P102 Refrigerator Appliances 42000 5 5% 06- Priya
2023
15-
P103 LED TV Electronics 68000 4 8% 07- Kunal
2023
05-
Washing
P104 Appliances 35000 6 7% 08- Sanya
Machine
2023
11-
P105 Smartwatch Gadgets 15000 10 12% 09- Rahul
2023
09-
Air
P106 Appliances 48000 3 6% 10- Riya
Conditioner
2023
28-
P107 Microwave Appliances 17000 7 9% 11- Varun
2023
20-
Bluetooth
P108 Gadgets 12000 12 15% 12- Neha
Speaker
2023
14-
DSLR
P109 Electronics 75000 2 10% 01- Aniket
Camera
2024
30-
Mobile
P110 Electronics 60000 9 7% 02- Sneha
Phone
2024

Step 2: Apply Formatting


1. Apply bold headers and a background color of your choice.
2. Format Price, Total Sales, and Final Amount as Currency (₹).
3. Format Date of Sale as "DD-MMM-YYYY".
4. Apply Conditional Formatting:
o Highlight Quantity Sold > 8 in Light Green.
o Highlight Discount > 10% in Yellow.
o Apply a data bar for Final Amount to visually compare values.
o Use Icon Sets to indicate High, Medium, and Low Total Sales values.
5. Add Borders to the table for better visibility.
6. Make headers bold and align text to center for better readability.

Task 2: Perform Calculations Using References & Functions


1. Calculate Total Sales using absolute cell reference:
o =D2*$E$2 (Apply to all rows)
2. Calculate Final Amount after Discount:
o =F2 - (F2 * G2)
3. Use SUMIF to calculate total revenue of a specific category (Electronics):
o =SUMIF(C:C,"Electronics",F:F)
4. Find the highest-priced product in the dataset:
o =MAX(D:D)
5. Find the lowest quantity sold using full-column range referencing:
o =MIN(E:E)
6. Find the average quantity sold using range referencing:
o =AVERAGE(E2:E11)
7. Find the number of products in the "Gadgets" category using COUNTIF:
o =COUNTIF(C:C,"Gadgets")
8. Find the number of blank cells in the "Total Sales" column:
o =COUNTBLANK(F:F)
9. Calculate the sum of all discounts given:
o =SUM(G2:G11)
10. Calculate the total quantity of products sold:

 =SUM(E2:E11)

11. Find the product with the maximum quantity sold using INDEX & MATCH:

 =INDEX(B:B, MATCH(MAX(E:E), E:E, 0))

Task 3: Advanced Mathematical & Logical Functions


1. Find the absolute difference between the highest and lowest price:
o =ABS(MAX(D:D)-MIN(D:D))
2. Find LCM of the lowest and highest quantity sold:
o =LCM(MIN(E:E),MAX(E:E))
3. Find power of price with quantity sold:
o =POWER(D2,E2)
4. Find remainder when the highest price is divided by 7500:
o =MOD(MAX(D:D),7500)
5. Generate a random discount between 5% and 20%:
o =RANDBETWEEN(5,20)/100
6. Find square root of the highest price:
o =SQRT(MAX(D:D))
7. Round final amounts to nearest 10:
o =ROUND(H2,-1)

Task 4: String Manipulation & Text Functions


1. Extract first two letters of Product ID:
o =LEFT(A2,2)
2. Extract last three letters of Seller Name:
o =RIGHT(J2,3)
3. Find length of Product Name:
o =LEN(B2)
4. Convert Seller Name to different cases:
o =UPPER(J2)
o =LOWER(J2)
o =PROPER(J2)
5. Remove spaces from Product Name:
o =TRIM(B2)
6. Replace "Electronics" with "Tech Gadgets" in Category:
o =SUBSTITUTE(C2,"Electronics","Tech Gadgets")
7. Repeat "★" based on Discount % (max 5 stars):
o =REPT("★",G2*10/2)
8. Concatenate Product Name and Seller Name:
o =CONCATENATE(B2, " - ", J2)
9. Find the position of "a" in Seller Name:
o =FIND("a",J2)

Task 5: Data Validation & Consolidation


1. Set Data Validation for Discount:
o Allowed range: 5% - 20%
o Input Message: "Enter a discount between 5% - 20%."
o Error Alert: "Invalid Discount!"
2. Use Data Consolidation to combine sales data from multiple worksheets.
Task 6: Charts & Data Analysis
1. Create a Column Chart comparing Quantity Sold by Product.
2. Create a Pie Chart for Total Sales by Category.
3. Sort the data by Final Amount in Descending order.
4. Apply Filter to show only products with sales above ₹3,00,000.
5. Create a Pivot Table summarizing:
o Total Sales by Category
o Average Discount by Category
6. Create a Histogram for Price Range of Products.

Common questions

Powered by AI

To compute the absolute price difference between the highest and lowest priced products in Excel, use the formula `=ABS(MAX(D:D)-MIN(D:D))`. The MAX function retrieves the highest price, and MIN retrieves the lowest. The subtraction gives the difference, and ABS ensures the result is a non-negative value .

Conditional formatting in Excel can be applied by selecting the cells in which you want to apply the rules, then going to the 'Conditional Formatting' menu in the 'Home' tab. To highlight 'Quantity Sold' greater than 8, choose 'New Rule' > 'Format cells that contain' > set 'Cell Value' > 'greater than' > enter '8', and select the Light Green fill. To highlight 'Discount' values greater than 10%, create a similar rule with 'greater than 10%' and choose a Yellow fill .

To create a histogram in Excel for the price range of products, first prepare a range of bins that represent your price categories. Then, use the 'Data Analysis' tool available under the 'Data' tab, choose 'Histogram', and set the input and bin ranges. Excel generates a histogram chart displaying the frequency distribution of product prices across the defined categories. This helps visualize how prices are spread and identify patterns or outliers in the dataset .

Data consolidation in Excel can be accomplished by using the 'Data Consolidate' feature. Go to the 'Data' tab, select 'Consolidate', and in the dialog box, choose the function you want to use for consolidation, like SUM. Then, add the ranges from each worksheet that you want to consolidate. This combines data from all specified sheets into a single worksheet .

To calculate the total sales of products within the 'Electronics' category, you can use the SUMIF function in Excel. The formula would be: `=SUMIF(C:C, "Electronics", F:F)`. This formula sums up the values in the 'Total Sales' column (F) for those rows where the 'Category' column (C) matches 'Electronics' .

To create a column chart in Excel, first select the data range that includes the product names and quantities sold. Then, go to the 'Insert' tab and select 'Insert Column or Bar Chart'. Choose the desired column chart style. This will insert a chart where the x-axis represents the product names and the y-axis shows the quantities sold .

To set up data validation for discounts in Excel, select the cells where discounts are to be entered. Go to 'Data' > 'Data Validation'. In the settings, choose 'Whole number' and set minimum to 5% and maximum to 20%. Enter an input message like "Enter a discount between 5% - 20%" and an error message such as "Invalid Discount!" to guide users and prevent errors .

To find the product name of the item with the maximum quantity sold, use the combination of INDEX and MATCH functions. The formula is `=INDEX(B:B, MATCH(MAX(E:E), E:E, 0))`. Here, INDEX retrieves the value in the 'Product Name' column (B) corresponding to the position determined by MATCH, which finds the row where the maximum 'Quantity Sold' value exists in column E .

To concatenate product names with seller names in Excel, use the CONCATENATE function or the ampersand (&) operator, such as `=CONCATENATE(B2, " - ", J2)` or `=B2 & " - " & J2`. This combines data from different columns into a single text string, which can be useful for generating labels or summarizing key information in reports .

To determine the lengths of the longest and shortest product names in Excel, apply the LEN function to each 'Product Name', then use the MAX and MIN functions to find the longest and shortest lengths, respectively. For example, `=MAX(LEN(B2), LEN(B3), ...)` for the longest length and `=MIN(LEN(B2), LEN(B3), ...)` for the shortest .

You might also like