You have a dataset with a column 'FullName' containing values like 'John Doe'. You need to split this column into 'FirstName' and 'LastName' using the space delimiter. Which Power Query transformation should you use?
Trap 1: Merge Columns.
Merge combines columns, not splits.
Trap 2: Extract Text.
Extract is for extracting characters from the beginning or end.
Trap 3: Replace Values.
Replace Values substitutes text, not splits.
- A
Split Column by Delimiter.
Splits a column into multiple columns based on a delimiter.
- B
Merge Columns.
Why wrong: Merge combines columns, not splits.
- C
Extract Text.
Why wrong: Extract is for extracting characters from the beginning or end.
- D
Replace Values.
Why wrong: Replace Values substitutes text, not splits.