1 Text Functions
In cell D3, add a function to get the two leftmost numbers from cell B3. In cell E3, add a function to get the middle three numbers from cell B3. In cell F3, add a function to get the two rightmost numbers from cell B3. AutoFill the three results down through the remaining products.
- Click in cell D3
- Type: =LEFT(B3,2)
- Click in cell E3
- Type: =MID(B3,4,3)
- Click in cell F3
- Type: =RIGHT(B3,2)
- Select cells D3 through F3
- Click the fill handle and drag through row 8
2 Capitalization
Use the appropriate formulas and Autofill to display the names from cells A2 through B4 in cells D2 through E4, using all capital letters. Display the names from cells A2 through B4 in cells G2 through H4, using all lowercase letters. Use cells J2 through J4 to display the length of the text in cells A2 through A4.
- Click in cell D2
- Type: =UPPER(A2)
- Click the fill handle and drag to cell E2
- Click the fill handle and drag to cell E4
- Click in cell G2
- Type: =LOWER(A2)
- Click the fill handle and drag to cell H2
- Click the fill handle and drag to cell H4
- Click in cell J2
- Type: =LEN(A2)
- Click the fill handle and drag to cell J4
3 Combining Text
Display the combined first and last name from cells A2 and B2 in cell L2, adding a space in between the first and last name. Fill those values for the other two names. In cell N2, combine the values of cells H2 and G2 with a delimiter of a comma and ignoring empty cells. Fill those values for the other two names.
- Click in cell L2
- In the Formulas tab, Function Library group, click the Text drop-down arrow
- Click CONCAT
- Click cell A2 to populate the Text1 field
- Click in the Text2 field
- Type: " "
- Click in the Text3 field
- Click cell B2
- Click the OK button
- Ensure that cell L2 is still selected and click the fill handle and drag to cell L4
- Click in cell N2
- In the Formulas tab, Function Library group, click the Text drop-down arrow
- Click TEXTJOIN
- In the Delimiter field type:","
- Click in the Ignore_empty field
- Type: TRUE
- Click in the Text1 field
- Type: H2
- Click in the Text2 field
- Type: G2
- Click the OK button
- Ensure that cell N2 is still selected and click the fill handle and drag to cell N4