Bird
0
0

If you have a column EmployeeName with values like 'Alice Johnson', what will be the output after splitting this column by the space character in Power Query?

medium📝 dax lod result Q4 of 15
Power BI - Power Query Editor
If you have a column EmployeeName with values like 'Alice Johnson', what will be the output after splitting this column by the space character in Power Query?
ATwo new columns: 'EmployeeName.1' with 'Alice' and 'EmployeeName.2' with 'Johnson'
BA single column with the value unchanged as 'Alice Johnson'
CA column with values concatenated as 'AliceJohnson' without space
DAn error because splitting by space is not supported
Step-by-Step Solution
Solution:
  1. Step 1: Identify delimiter

    The space character is used as the delimiter to split the text.
  2. Step 2: Apply split

    Power Query splits the EmployeeName column into two columns, each containing the parts before and after the space.
  3. Final Answer:

    Two new columns: 'EmployeeName.1' with 'Alice' and 'EmployeeName.2' with 'Johnson' -> Option A
  4. Quick Check:

    Splitting by space creates multiple columns [OK]
Quick Trick: Splitting by space creates multiple columns [OK]
Common Mistakes:
  • Assuming the original column remains unchanged
  • Expecting concatenation instead of splitting
  • Thinking splitting by space causes an error

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Power BI Quizzes