Blending & structuring — quiz
8 questions covering this module. Join, Union, Append, Cross Tab, Transpose and Summarize.
Which anchor holds rows that matched on both sides?
- L
- J
- R
- All three
Answer: J — J is the inner join result.
J contains more rows than the left input had. This means:
- Normal
- Duplicate keys on the right caused a fan-out
- Rows were lost
- Wrong data type
Answer: Duplicate keys on the right caused a fan-out — Summarize the right input by the key first.
Union set to "by position" with differently ordered columns:
- Errors
- Silently puts values in the wrong fields
- Matches by name anyway
- Drops the file
Answer: Silently puts values in the wrong fields — Use by name unless you have a specific reason.
Append Fields with 10 target and 5 source rows outputs:
- 10
- 15
- 50
- 5
Answer: 50 — It is a Cartesian product — intended for a single parameter row.
Which converts month columns into month rows?
- Cross Tab
- Transpose
- Union
- Append Fields
Answer: Transpose — Transpose is the unpivot.
Your Cross Tab columns are in the wrong order because:
- A bug
- Cross Tab sorts new columns alphabetically
- Wrong aggregation
- Missing Sort tool
Answer: Cross Tab sorts new columns alphabetically — Prefix with a number before pivoting.
A field vanished after Summarize. Why?
- A bug
- It was neither grouped by nor aggregated
- Wrong type
- It was null
Answer: It was neither grouped by nor aggregated — Group by it, or aggregate with First.
Which tool gives a running total?
- Summarize
- Multi-Row Formula
- Cross Tab
- Append Fields
Answer: Multi-Row Formula — And it needs a Sort before it, since it depends on row order.