0
0
Excelspreadsheet~10 mins

COUNT and COUNTA functions in Excel - Real Business Scenario

Choose your learning style9 modes available
Scenario Mode
👤 Your Role: You are a sales assistant at a retail store.
📋 Request: Your manager wants to know how many sales transactions were completed and how many total entries (including text notes) were recorded in the sales log for the week.
📊 Data: You have a sales log table with columns for Transaction ID, Product Sold, Quantity, and Notes. Some cells in Notes may be empty.
🎯 Deliverable: Create formulas to count the number of completed sales transactions and the total number of entries recorded in the Notes column.
Progress0 / 2 steps
Sample Data
Transaction IDProduct SoldQuantityNotes
1001Shirt2First-time buyer
1002Hat1
1003Shoes1Repeat customer
1004Shirt3
1005Jacket1Gift purchase
1006Hat2
1007Socks5Discount applied
1008Shirt1
1
Step 1: Count how many sales transactions have a number in the Quantity column.
=COUNT(C2:C9)
Expected Result
8
2
Step 2: Count how many entries are recorded in the Notes column, including text and numbers but ignoring empty cells.
=COUNTA(D2:D9)
Expected Result
4
Final Result
Sales Transactions Count: 8
Notes Entries Count: 4
There were 8 sales transactions completed during the week.
There are 4 notes entries recorded, showing some transactions have additional comments.
Bonus Challenge

Calculate how many transactions had no notes recorded.

Show Hint
Use the total number of transactions minus the count of notes entries.