0
0
Excelspreadsheet~20 mins

Appending queries in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Appending Queries Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Appending Two Tables Vertically
You have two tables in Excel: Table1 with 3 rows and Table2 with 2 rows. You want to append Table2 below Table1 using Power Query. Which step correctly appends these tables?
AUse the 'Append Queries' option and select Table1 as the primary table and Table2 as the table to append.
BUse the 'Merge Queries' option to combine Table1 and Table2 side by side.
CCopy Table2 and paste it below Table1 in the worksheet manually.
DUse the 'Append Queries as New' option and select only Table1.
Attempts:
2 left
💡 Hint

Appending means stacking tables vertically, not side by side.

Function Choice
intermediate
2:00remaining
Choosing the Right Power Query Function to Append
Which Power Query function is used internally to append two tables vertically?
ATable.Combine
BTable.Join
CTable.SelectRows
DTable.AddColumn
Attempts:
2 left
💡 Hint

Appending means combining rows from tables.

🎯 Scenario
advanced
3:00remaining
Appending Queries with Different Column Names
You have two queries: Query1 has columns 'Name' and 'Age', Query2 has columns 'FullName' and 'Age'. You want to append these queries so that the 'Name' and 'FullName' columns align as one column in the result. What should you do before appending?
AAppend the queries directly; Power Query will automatically match columns by meaning.
BDelete the 'FullName' column in Query2 before appending.
CRename the 'FullName' column in Query2 to 'Name' before appending.
DMerge the queries instead of appending.
Attempts:
2 left
💡 Hint

Columns must have the same name to combine their data when appending.

📊 Formula Result
advanced
2:30remaining
Result of Appending Queries with Mismatched Columns
You append two queries in Power Query: Query1 has columns A and B; Query2 has columns A and C. What will be the result?
APower Query will raise an error due to mismatched columns.
BThe result will have columns A, B, and C; rows from Query1 will have null in C, rows from Query2 will have null in B.
CThe result will only have columns A and B; column C will be dropped.
DThe result will only have columns A and C; column B will be dropped.
Attempts:
2 left
💡 Hint

Appending combines all columns from both tables, filling missing values with null.

data_analysis
expert
3:00remaining
Analyzing Performance Impact of Appending Large Queries
You have two very large queries with millions of rows each. You append them in Power Query. Which of the following is the most likely impact on performance and memory usage?
AAppending merges data without increasing memory usage significantly.
BAppending only loads the first query into memory until you expand the second.
CAppending automatically compresses data to reduce memory usage.
DAppending doubles the data size in memory, potentially causing slowdowns or crashes.
Attempts:
2 left
💡 Hint

Appending stacks all rows, increasing total data size.