Cleaning & preparation — quiz
6 questions covering this module. Select, Formula, Filter, Data Cleansing, Sort and Sample.
Which type should hold a currency amount?
- Double
- Fixed Decimal
- Float
- V_String
Answer: Fixed Decimal — Floating point accumulates rounding error across many rows.
You shorten a V_String from 255 to 50. What happens to longer values?
- An error stops the workflow
- They are silently truncated
- They are nulled
- The size auto-adjusts
Answer: They are silently truncated — Check the warnings tab after type changes.
[Revenue] - [Discount] returns null on some rows because:
- Wrong type
- Discount is null on those rows
- The field is too small
- Formula order
Answer: Discount is null on those rows — Guard with IsNull or use Data Cleansing.
To trim whitespace from twenty text fields:
- Twenty Formula expressions
- Multi-Field Formula
- Select tool
- Sort tool
Answer: Multi-Field Formula — [_CurrentField_] stands in for each selected field.
Why attach a Browse to the Filter F output?
- To improve speed
- To see what was excluded and verify the condition
- It is required
- To sort the data
Answer: To see what was excluded and verify the condition — Silent over-filtering is a common defect.
Your join matches nothing on values that look identical. Fix:
- Change join type
- Data Cleansing to trim whitespace and normalise case
- Add a Sort
- Use Append Fields
Answer: Data Cleansing to trim whitespace and normalise case — Whitespace and case are the usual culprits.