The document outlines various data manipulation tasks including extracting first and last names from a full name column, converting product names to uppercase, and finding the length of city names. It also includes functions to concatenate names, extract domains from email addresses, replace spaces in sentences, and check product codes. A table is provided with examples of input data and the expected functions to use for each task.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
24 views4 pages
Excel Text Function Problems
The document outlines various data manipulation tasks including extracting first and last names from a full name column, converting product names to uppercase, and finding the length of city names. It also includes functions to concatenate names, extract domains from email addresses, replace spaces in sentences, and check product codes. A table is provided with examples of input data and the expected functions to use for each task.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
You are on page 1/ 4
Problem
Extract the first name from a full name column.
Extract the last name from a full name column. Convert all product names to uppercase. Find the length of each city name in the given list. Concatenate first name and last name with a space in between. Extract the domain from an email address. Replace all spaces in a sentence with underscores. Check if a product code starts with 'PRD'. Data Expected Function to Use Full Name: John Doe, Alice Smith, Robert Brown LEFT, FIND Full Name: John Doe, Alice Smith, Robert Brown RIGHT, LEN, FIND Product Names: laptop, mobile, charger, tablet UPPER Cities: New York, Los Angeles, Chicago, Houston LEN First Name: John, Alice, Robert | Last Name: Doe, Smith, Brown CONCATENATE / TEXTJOIN Emails: [email protected], [email protected], [email protected] MID, FIND, LEN Sentence: This is a test sentence. SUBSTITUTE Product Codes: PRD1234, ABC5678, PRD9876, XYZ4321 LEFT, EXACT Full Name Full Name Product Names Cities First Name Last Name John Doe John Doe laptop New York John Doe Alice Smith Alice Smith mobile Los Angeles Alice Smith Robert Brown Robert Brown charger Chicago Robert Brown tablet Houston John Doe Alice Smith LAPTOP 8 John Doe Robert Brown MOBILE 11 Alice Smith CHARGER 7 Robert Brown TABLET 7 Emails Sentence Product codes [email protected] This is a test sentence. PRD1234 [email protected] ABC5678 [email protected] XYZ4321