0
0
Excelspreadsheet~20 mins

Consolidating data from multiple sheets in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Master of Consolidating Sheets
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2: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?
AThe sum of all sales values from A2 to A5 across Jan, Feb, and Mar sheets combined
BThe sum of sales values only from the Jan sheet A2 to A5
CThe sum of sales values from the summary sheet cells A2 to A5
DAn error because ranges from multiple sheets cannot be summed this way
Attempts:
2 left
💡 Hint
Think about how SUM works with multiple ranges from different sheets.
Function Choice
intermediate
2: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?
AUse <code>=VLOOKUP()</code> to find products across sheets
BUse <code>=CONCATENATE()</code> to join product names from each sheet
CUse <code>=SUM()</code> to add product names
DUse <code>=FILTER()</code> combined with <code>INDIRECT()</code> to pull product lists dynamically
Attempts:
2 left
💡 Hint
Think about how to pull lists dynamically from multiple sheets.
data_analysis
advanced
2: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?
AUse <code>=MAX(Jan!B2:B10, Feb!B2:B10, Mar!B2:B10)</code> to find the highest single sale value
BCalculate each month's total separately with <code>=SUM(Jan!B2:B10)</code>, <code>=SUM(Feb!B2:B10)</code>, <code>=SUM(Mar!B2:B10)</code> and compare
CUse <code>=SUM(Jan:Mar!B2:B10)</code> to get the highest monthly total
DUse <code>=AVERAGE(Jan!B2:B10, Feb!B2:B10, Mar!B2:B10)</code> to find the highest month
Attempts:
2 left
💡 Hint
Think about how to get totals per month before comparing.
🎯 Scenario
advanced
2: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?
AUse <code>=SUM(Week1!A2:A5, Week2!A2:A5, Week3!A2:A5)</code> fixed range
BUse <code>=SUM(Week1!A2:A100, Week2!A2:A100, Week3!A2:A100)</code> assuming max 100 rows
CUse <code>=SUM(INDIRECT("Week1!A2:A"&COUNTA(Week1!A:A)), INDIRECT("Week2!A2:A"&COUNTA(Week2!A:A)), INDIRECT("Week3!A2:A"&COUNTA(Week3!A:A)))</code>
DUse <code>=SUM(Week1!A:A, Week2!A:A, Week3!A:A)</code> to sum entire columns
Attempts:
2 left
💡 Hint
Think about how to dynamically adjust ranges based on data length.
📊 Formula Result
expert
2: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?
AIt returns the sum of A2:A5 from all sheets between Jan and Mar inclusive
BIt returns a #REF! error because 3D references cannot be used with SUM
CIt returns a #NAME? error because the sheet names are invalid
DIt returns a #VALUE! error because ranges across sheets must be summed individually
Attempts:
2 left
💡 Hint
Think about how Excel handles 3D references in SUM.