Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Step 3 : Look up the name of the month. a . In same cell ( C 2 ) , enter = VLOOKUP ( MONTH
Step : Look up the name of the month.
a In same cell C enter VLOOKUPMONTHBMonths!A:BFALSE What did this formula
return?
In the vlookup function, the first argument is the name of the item. In this case, it was MONTHB The
second argument specifies the cell range that contains the data that VLOOKUP will search and return the
lookup value MonthsA:B The column index number is the third argument
You provided the month as a value using the Month function MONTHB Next, the location of the
lookup table was specified MonthsA:B The third parameter indicates the column index number.
Because the information in the Month column is desired, the column index number is The last
argument indicates whether to look for approximate matches. In this case, the desired result is an exact,
so the last argument is FALSE.
In this example, VLOOKUP searches through the table in the Months sheet until it finds in the first
column. Then it will move to the second column to find the Month and returns February.
b Copy and paste the formula into other empty cells in the same column.
c Name the column Join Month.
Part : Split Full Name Column into Different Columns
You can split text in one or more cells and parse it to put it across multiple cells. In this part, you will split the
Full Name column into two columns, Given Name and Family Name. You will split the data using some of the
Excel functions: RIGHT LEFT and LEN
a Select the Formula menu. Click Text. In the list of functions, read the description of these functions:
RIGHT, LEFT, LEN, and FIND.
What do the RIGHT or LEFT functions provide?
What does the LEN function return?
What does the FIND function return?
b Using the name in A you can find the length of the string in the cell by entering lenA into a blank
cell in column row
How many characters are in the name Olivia Jones?
c If you only want to display the first characters in a string, you can enter LEFTA into the same cell.
What was the result?
d Add the column Given Name in column D row Under the Given Name heading, enter LEFTA
LENALENAFINDA
What was the output?
e Copy and paste the formula to the empty cells in the same column. Observe the results.
f Explain how the fo I want to solve the questions in the picturesObjectives
Part : Import the Data into Microsoft Excel
Part : Get the Month out of a Date
Part : Split Full Name Column into Different Columns
Part : Concatenate Columns
Background Scenario
Preparing the data is a critical step in data analysis. You may receive data from different sources and you will
need to manipulate the data and extract the necessary information.
In this lab, you will explore how to use the look up information function. You will also explore how to split and
concatenate columns of data.
Required Resources
PC with Microsoft Excel installed Other spreadsheet programs, such as LibreOffice or Google Sheets,
may be used, but they may not have the same formula syntax
Part : Import the Data into Microsoft Excel
Step : Create a csv file.
a Open text editor and paste the following text.
Full Name, Join Date
Olivia Jones,
Lucas Smith,
Ava Williams,
Liam Johnson,
b Save the file as a csv
Step : Import the csv file into Excel.
a Open Excel.
b Select Data from the menu. Select Get External Data From Text.
c Select the saved csv file and click Import.
d The Text Import Wizard opens. In the Step of dialog box, select the My Data has headers checkbox.
Click Next.
e In the Step of dialog box, unselect Tab checkbox and select the Comma checkbox. Click Next.
f Select the Join Date column, and select Date. Verify that the dropdown displays MDY Click Finish.
g Click OK to open the data in the existing worksheet.
Part : Get the Month out of a Date
Excel has other functions that allow you to parse out the information from a date. Furthermore, it allows you to
lookup values in a different table. In this part, you will extract the month out of a date and use vlookup to
convert it into a string that spells out the name of the month.
The MONTH function returns the month as a number from January to December VLOOKUP function
looks for a value in the leftmost column of a table and returns a value in the same row from the column you
chose.
Step : Add a lookup table.
a To lookup the month, a table with the name of each month is created. In a new sheet, enter in the
first column and the name of month in the second column.
b Rename Sheet to Months.
Step : Parse the month information from the date.
In an empty cell in column C row enter monthB The data in cell B is What did this formula
return? Verify the number format is set to General Rightclick Format Cells General
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started