0
0
Excelspreadsheet~15 mins

NOT function 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 identify which sales transactions did NOT meet the target sales amount of $500.
📊 Data: You have a list of sales transactions with the sales amount for each transaction.
🎯 Deliverable: Create a column that shows TRUE if the sales amount did NOT meet the target and FALSE if it did.
Progress0 / 3 steps
Sample Data
Transaction IDSales Amount
1001450
1002520
1003300
1004700
1005480
1006510
1007400
1008600
1
Step 1: Add a new column next to Sales Amount called 'Below Target'.
Expected Result
A new empty column named 'Below Target' is added.
2
Step 2: In the first cell under 'Below Target' (assume C2), enter the formula to check if the sales amount is NOT greater than or equal to 500.
=NOT(B2>=500)
Expected Result
The formula returns TRUE if sales amount is less than 500, FALSE otherwise.
3
Step 3: Copy the formula down the 'Below Target' column for all transactions.
Drag the fill handle from C2 down to C9.
Expected Result
Each row shows TRUE if sales amount is below 500, FALSE if 500 or more.
Final Result
Transaction ID | Sales Amount | Below Target
-------------- | ------------ | ------------
1001           | 450          | TRUE
1002           | 520          | FALSE
1003           | 300          | TRUE
1004           | 700          | FALSE
1005           | 480          | TRUE
1006           | 510          | FALSE
1007           | 400          | TRUE
1008           | 600          | FALSE
Transactions 1001, 1003, 1005, and 1007 did NOT meet the sales target of $500.
The NOT function helps to easily identify sales below the target by reversing the condition.
Bonus Challenge

Create a summary count of how many transactions did NOT meet the target using the NOT function.

Show Hint
Use the COUNTIF function combined with the NOT logic or count TRUE values in the 'Below Target' column.