Challenge - 5 Problems
Master of Consolidating Sheets
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
What is the output of this formula consolidating data?
You have three sheets named Jan, Feb, and Mar. Each sheet has sales data in cells A2:A5. The formula
=SUM(Jan!A2:A5, Feb!A2:A5, Mar!A2:A5) is entered in a summary sheet. What does this formula return?Attempts:
2 left
💡 Hint
Think about how SUM works with multiple ranges from different sheets.
✗ Incorrect
The formula sums all values in the ranges A2:A5 from each sheet Jan, Feb, and Mar, adding them together into one total.
❓ Function Choice
intermediate2:00remaining
Which function best consolidates data from multiple sheets into one list?
You want to create a combined list of all product names from sheets named Store1, Store2, and Store3. Each sheet has product names in column A. Which function is best to consolidate all product names into one column in a summary sheet?
Attempts:
2 left
💡 Hint
Think about how to pull lists dynamically from multiple sheets.
✗ Incorrect
FILTER combined with INDIRECT can dynamically pull and combine lists from multiple sheets into one consolidated list.
❓ data_analysis
advanced2:00remaining
Analyzing consolidated sales data from multiple sheets
You consolidated monthly sales data from sheets Jan, Feb, and Mar into a summary sheet using
=SUM(Jan!B2:B10, Feb!B2:B10, Mar!B2:B10). You want to find which month had the highest total sales. How can you do this efficiently?Attempts:
2 left
💡 Hint
Think about how to get totals per month before comparing.
✗ Incorrect
You must sum each month's data separately to get totals, then compare those totals to find the highest month.
🎯 Scenario
advanced2:00remaining
Scenario: Consolidating dynamic data ranges from multiple sheets
You have sheets named Week1, Week2, and Week3. Each week has a different number of sales entries in column A. You want a formula in a summary sheet that sums all sales from all weeks, even if the number of rows changes weekly. Which approach works best?
Attempts:
2 left
💡 Hint
Think about how to dynamically adjust ranges based on data length.
✗ Incorrect
Using INDIRECT with COUNTA dynamically adjusts the range to sum only the filled rows in each sheet.
📊 Formula Result
expert2:00remaining
What error does this formula produce when consolidating data?
You try to consolidate data with the formula
=SUM(Jan:Mar!A2:A5) in Excel. What happens when you enter this formula?Attempts:
2 left
💡 Hint
Think about how Excel handles 3D references in SUM.
✗ Incorrect
Excel supports 3D references like Jan:Mar!A2:A5 in SUM to sum the same range across multiple sheets between Jan and Mar.