0
0
Excelspreadsheet~10 mins

Appending queries in Excel - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the formula to append the data from Sheet2 below Sheet1 using the correct function.

Excel
=[1](Sheet1!A1:C10, Sheet2!A1:C10)
Drag options to blanks, or click blank then click option'
ASUM
BHSTACK
CFILTER
DVSTACK
Attempts:
3 left
💡 Hint
Common Mistakes
Using HSTACK which stacks data horizontally instead of vertically.
Using SUM which adds numbers instead of appending data.
Using FILTER which filters data but does not append.
2fill in blank
medium

Complete the formula to append data from two tables named Table1 and Table2 using Power Query's function.

Excel
=Table.[1](Table1, Table2)
Drag options to blanks, or click blank then click option'
AAppend
BMerge
CJoin
DCombine
Attempts:
3 left
💡 Hint
Common Mistakes
Using Merge which combines tables side-by-side based on keys.
Using Join which is not a Power Query function.
Using Combine which is not a valid Power Query function.
3fill in blank
hard

Fix the error in the formula that tries to append ranges but uses the wrong function.

Excel
= [1](A1:B5, A6:B10)
Drag options to blanks, or click blank then click option'
ASUM
BHSTACK
CVSTACK
DCONCAT
Attempts:
3 left
💡 Hint
Common Mistakes
Using HSTACK which stacks data horizontally.
Using SUM which adds numbers instead of appending.
Using CONCAT which joins text strings.
4fill in blank
hard

Fill both blanks to create a Power Query formula that appends TableA and TableB and then filters rows where the 'Status' column equals 'Active'.

Excel
let appended = Table.[1](TableA, TableB) in Table.SelectRows(appended, each [Status] [2] "Active")
Drag options to blanks, or click blank then click option'
AAppend
B=
C==
DMerge
Attempts:
3 left
💡 Hint
Common Mistakes
Using Merge instead of Append for stacking tables.
Using double equals '==' which is not valid in Power Query.
Confusing the order of arguments in Table.Append.
5fill in blank
hard

Fill all three blanks to create a formula that appends two named ranges and then sorts the result by the 'Date' column in descending order.

Excel
let combined = Table.[1](Range1, Range2) in Table.Sort(combined,{{BLANK_2, BLANK_3}})
Drag options to blanks, or click blank then click option'
AAppend
B"Date"
COrder.Descending
DMerge
Attempts:
3 left
💡 Hint
Common Mistakes
Using Merge instead of Append.
Using incorrect syntax for the column name in Table.Sort.
Using ascending order instead of descending.