Challenge - 5 Problems
Text to Columns Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
Splitting Full Names into First and Last Names
You have a column A with full names like "John Smith" in each cell. You want to split these into first and last names using Excel's Text to Columns feature with space as the delimiter.
What will be the content of cells A1 and B1 after applying Text to Columns on A1 containing "John Smith"?
What will be the content of cells A1 and B1 after applying Text to Columns on A1 containing "John Smith"?
Attempts:
2 left
💡 Hint
Think about how Text to Columns splits text based on the delimiter and places parts in adjacent columns.
✗ Incorrect
Text to Columns splits the text at the space and places the first part in the original column and the second part in the next column to the right. So A1 gets "John" and B1 gets "Smith".
❓ Function Choice
intermediate2:00remaining
Choosing the Correct Delimiter for Text to Columns
You have a list of email addresses in column A like "user@example.com". You want to split the username and domain into two columns using Text to Columns.
Which delimiter should you choose to correctly split the email into username and domain?
Which delimiter should you choose to correctly split the email into username and domain?
Attempts:
2 left
💡 Hint
Look at the character that separates the username and domain in an email address.
✗ Incorrect
The '@' symbol separates the username and domain in an email address, so using '@' as the delimiter splits the email correctly.
🎯 Scenario
advanced2:00remaining
Splitting Dates Stored as Text
You have dates stored as text in column A in the format "2024-06-15" (year-month-day). You want to split these into three columns: year, month, and day.
Which delimiter should you use in Text to Columns to split the date correctly?
Which delimiter should you use in Text to Columns to split the date correctly?
Attempts:
2 left
💡 Hint
Look at the character that separates year, month, and day in the date format.
✗ Incorrect
The date parts are separated by hyphens, so using hyphen (-) as the delimiter splits the date into year, month, and day.
❓ data_analysis
advanced2:00remaining
Analyzing the Result of Text to Columns on a CSV List
Column A contains the text "apple,banana,orange" in cell A1. You apply Text to Columns using comma as the delimiter.
What will be the values in cells A1, B1, and C1 after the operation?
What will be the values in cells A1, B1, and C1 after the operation?
Attempts:
2 left
💡 Hint
Text to Columns splits text at each comma and places each part in adjacent columns.
✗ Incorrect
The text is split at commas, so "apple" goes to A1, "banana" to B1, and "orange" to C1.
📊 Formula Result
expert3:00remaining
Effect of Text to Columns on a Cell with Multiple Spaces
Cell A1 contains the text "John Michael Smith" with multiple spaces between names.
You apply Text to Columns using space as the delimiter and check the option to treat consecutive delimiters as one.
What will be the values in cells A1, B1, and C1 after the operation?
You apply Text to Columns using space as the delimiter and check the option to treat consecutive delimiters as one.
What will be the values in cells A1, B1, and C1 after the operation?
Attempts:
2 left
💡 Hint
Treating consecutive delimiters as one means multiple spaces count as a single separator.
✗ Incorrect
With the option enabled, multiple spaces are treated as one delimiter, so the text splits into three parts: "John", "Michael", and "Smith".