0% found this document useful (0 votes)
8 views2 pages

Assignment 2

The document outlines a series of tasks for creating new columns in a dataset of employee information. These tasks include concatenating names, formatting email addresses, and extracting specific parts of the data using various functions. The instructions provide hints for using Excel functions like CONCATENATE, UPPER, LEFT, RIGHT, and LEN to achieve the desired outputs.

Uploaded by

Vikrant
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views2 pages

Assignment 2

The document outlines a series of tasks for creating new columns in a dataset of employee information. These tasks include concatenating names, formatting email addresses, and extracting specific parts of the data using various functions. The instructions provide hints for using Excel functions like CONCATENATE, UPPER, LEFT, RIGHT, and LEN to achieve the desired outputs.

Uploaded by

Vikrant
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

EmpID FirstName LastName Email Department

E001 Alice Walker [email protected] HR


E002 Brian Roy [email protected] Finance
E003 CINDY SMITH [email protected] IT
E004 daniel White [email protected] Marketing

✅ 1. Create a column FullName that concatenates FirstName and LastName with a space
in between.

Hint: Use CONCATENATE or &

✅ 2. Create a column FullName Upper that shows the full name in all uppercase.

Hint: Use UPPER()

✅ 3. Create a column Email Username that extracts the part before the @ in the Email
field.

Hint: Use LEFT() and SEARCH() or MID()

✅ 4. Create a column Email Domain that extracts the part after the @ in the Email.

Hint: Use RIGHT(), SEARCH(), LEN()

✅ 5. Create a column Dept Code:

 Show the first 3 letters of the Department field in uppercase. Hint: Combine
LEFT() and UPPER()

✅ 6. Create a column Name Length that shows the total number of characters in
FullName (including space).

Hint: Use LEN()

DiSHA Computer Institute, Ravet Branch


✅ 7. Create a column Formatted Name:

 Format the name as "LastName, FirstName" in title case (capitalize the first letter
of each name). Hint: Use CONCATENATE or & + UPPER/LOWER logic or custom
formatting

DiSHA Computer Institute, Ravet Branch

You might also like