Split text into columns using Functions

Description

A-Levels Excel (Functions) Note on Split text into columns using Functions, created by faulkner.j on 20/07/2013.
faulkner.j
Note by faulkner.j, updated more than 1 year ago
faulkner.j
Created by faulkner.j almost 11 years ago
673
0

Resource summary

Page 1

First name The first name starts with the first character in the string (J) and ends at the fifth character (the space). The formula returns five characters in A2, starting from the left. Use the SEARCH function to find the value for num_chars:  Search for the numeric position of the space in A2, starting from the left. (5) Last name The last name starts at the space, five characters from the right, and ends at the last character on the right (h). The formula extracts five characters in A2, starting from the right. Use the SEARCH and LEN functions to find the value for num_chars:  Search for the numeric position of the space in A2, starting from the left. (5)  Count the total length of the text string, and then subtract the number of characters from the left to the first space, as found in step 1. (10 - 5 = 5)

Example 2: Eric S. Kurjan In this example, there are three components in the full name: first name, middle initial, and last name. A space separates each name component.  12 ABCDNameFirst Name (Eric)Middle Name (S.)Last Name (Kurjan)Eric S. Kurjan=LEFT(A2, SEARCH(" ",A2,1))=MID(A2,SEARCH(" ",A2,1)+1,SEARCH(" ",A2,SEARCH(" ",A2,1)+1)-SEARCH(" ",A2,1))=RIGHT(A2,LEN(A2)-SEARCH(" ",A2,SEARCH(" ",A2,1)+1))  Note   In the following graphics, the highlight in the full name shows the character that the matching SEARCH formula is looking for. First name The first name starts with the first character from the left (E) and ends at the fifth character (the first space). The formula extracts the first five characters in A2, starting from the left. Use the SEARCH function to find the value for num_chars:  Search for the numeric position of the first space in A2, starting from the left. (5) Middle name The middle name starts at the sixth character position (S), and ends at the eighth position (the second space). This formula involves nesting SEARCH functions to find the second instance of a space.The formula extracts three characters, starting from the sixth position. Use the SEARCH function to find the value for start_num:  Search for the numeric position of the first space in A2, starting from the first character from the left. (5.  Add 1 to get the position of the character after the first space (S). This numeric position is the starting position of the middle name. (5 + 1 = 6) Use nested SEARCH functions to find the value for num_chars:  Search for the numeric position of the first space in A2, starting from the first character from the left. (5)  Add 1 to get the position of the character after the first space (S). The result is the character number at which you want to start searching for the second instance of space. (5 + 1 = 6)  Search for the second instance of space in A2, starting from the sixth position (S) found in step 4. This character number is the ending position of the middle name. (8)  Search for the numeric position of space in A2, starting from the first character from the left. (5)  Take the character number of the second space found in step 5 and subtract the character number of the first space found in step 6. The result is the number of characters MID extracts from the text string starting at the sixth position found in step 2. (8 – 5 = 3) Last name The last name starts six characters from the right (K) and ends at the first character from the right (n). This formula involves nesting SEARCH functions to find the second and third instances of a space (which are at the fifth and eighth positions from the left).The formula extracts six characters in A2, starting from the right. Use the LEN and nested SEARCH functions to find the value for num_chars:  Search for the numeric position of space in A2, starting from the first character from the left. (5)  Add 1 to get the position of the character after the first space (S). The result is the character number at which you want to start searching for the second instance of space. (5 + 1 = 6)  Search for the second instance of space in A2, starting from the sixth position (S) found in step 2. This character number is the ending position of the middle name. (8)  Count the total length of the text string in A2, and then subtract the number of characters from the left up to the second instance of space found in step 3. The result is the number of characters to be extracted from the right of the full name. (14 – 8 = 6.

Example 3: Janaina B. G. Bueno In this example, there are two middle initials. The first and third instances of space separate the name components.  12 ABCDNameFirst Name (Janaina)Middle Name (B. G.)Last Name (Bueno)Janaina B. G. Bueno=LEFT(A2, SEARCH(" ",A2,1))=MID(A2,SEARCH(" ",A2,1)+1,SEARCH(" ",A2,SEARCH(" ",A2,SEARCH(" ",A2,1)+1)+1)-SEARCH(" ",A2,1))=RIGHT(A2,LEN(A2)-SEARCH(" ",A2,SEARCH(" ",A2,SEARCH(" ",A2,1)+1)+1))  Note   In the following graphics, the highlight in the full name shows the character that the matching SEARCH formula is looking for. First name The first name starts with the first character from the left (J) and ends at the eighth character (the first space). The formula extracts the first eight characters in A2, starting from the left. Use the SEARCH function to find the value for num_chars:  Search for the numeric position of the first space in A2, starting from the left. (8) Middle name The middle name starts at the ninth position (B), and ends at the fourteenth position (the third space). This formula involves nesting SEARCH to find the first, second, and third instances of space in the eighth, eleventh, and fourteenth positions.The formula extracts five characters, starting from the ninth position. Use the SEARCH function to find the value for start_num:  Search for the numeric position of the first space in A2, starting from the first character from the left. (8)  Add 1 to get the position of the character after the first space (B). This numeric position is the starting position of the middle name. (8 + 1 = 9) Use nested SEARCH functions to find the value for num_chars:  Search for the numeric position of the first space in A2, starting from the first character from the left. (8)  Add 1 to get the position of the character after the first space (B). The result is the character number at which you want to start searching for the second instance of space. (8 + 1 = 9)  Search for the second space in A2, starting from the ninth position (B) found in step 4. (11.  Add 1 to get the position of the character after the second space (G). This character number is the starting position at which you want to start searching for the third space. (11 + 1 = 12)  Search for the third space in A2, starting at the twelfth position found in step 6. (14)  Search for the numeric position of the first space in A2. (8)  Take the character number of the third space found in step 7 and subtract the character number of the first space found in step 6. The result is the number of characters MID extracts from the text string starting at the ninth position found in step 2. Last name The last name starts five characters from the right (B) and ends at the first character from the right (o). This formula involves nesting SEARCH to find the first, second, and third instances of space.The formula extracts five characters in A2, starting from the right of the full name. Use nested SEARCH and the LEN functions to find the value for the num_chars:  Search for the numeric position of the first space in A2, starting from the first character from the left. (8)  Add 1 to get the position of the character after the first space (B). The result is the character number at which you want to start searching for the second instance of space. (8 + 1 = 9)  Search for the second space in A2, starting from the ninth position (B) found in step 2. (11)  Add 1 to get the position of the character after the second space (G). This character number is the starting position at which you want to start searching for the third instance of space. (11 + 1 = 12)  Search for the third space in A2, starting at the twelfth position (G) found in step 6. (14)  Count the total length of the text string in A2, and then subtract the number of characters from the left up to the third space found in step 5. The result is the number of characters to be extracted from the right of the full name. (19 - 14 = 5)

Example 4: Kahn, Wendy Beth In this example, the last name comes before the first name, and the middle name appears at the end. The comma marks the end of the last name, and a space separates each name component.  12 ABCDNameFirst Name (Wendy)Middle Name (Beth)Last Name (Kahn)Kahn, Wendy Beth=MID(A2,SEARCH(" ",A2,1)+1,SEARCH(" ",A2,SEARCH(" ",A2,1)+1)-SEARCH(" ",A2,1))=RIGHT(A2,LEN(A2)-SEARCH(" ",A2,SEARCH(" ",A2,1)+1))=LEFT(A2, SEARCH(" ",A2,1)-2)  Note   In the following graphics, the highlight in the full name shows the character that the matching SEARCH formula is looking for. First name The first name starts with the seventh character from the left (W) and ends at the twelfth character (the second space). Because the first name occurs at the middle of the full name, you need to use the MID function to extract the first name.The formula extracts six characters, starting from the seventh position. Use the SEARCH function to find the value for start_num:  Search for the numeric position of the first space in A2, starting from the first character from the left. (6)  Add 1 to get the position of the character after the first space (W). This numeric position is the starting position of the first name. (6 + 1 = 7) Use nested SEARCH functions to find the value for num_chars:  Search for the numeric position of the first space in A2, starting from the first character from the left. (6)  Add 1 to get the position of the character after the first space (W). The result is the character number at which you want to start searching for the second space. (6 + 1 = 7)  Search for the second space in A2, starting from the seventh position (W) found in step 4. (12)  Search for the numeric position of the first space in A2, starting from the first character from the left. (6)  Take the character number of the second space found in step 5 and subtract the character number of the first space found in step 6. The result is the number of characters MID extracts from the text string starting at the seventh position found in step 2. (12 - 6 = 6) Middle name The middle name starts four characters from the right (B), and ends at the first character from the right (h). This formula involves nesting SEARCH to find the first and second instances of space in the sixth and twelfth positions from the left.The formula extracts four characters, starting from the right. Use nested SEARCH and the LEN functions to find the value for start_num:  Search for the numeric position of the first space in A2, starting from the first character from the left. (6)  Add 1 to get the position of the character after the first space (W). The result is the character number at which you want to start searching for the second space. (6 + 1 = 7)  Search for the second instance of space in A2 starting from the seventh position (W) found in step 2. (12)  Count the total length of the text string in A2, and then subtract the number of characters from the left up to the second space found in step 3. The result is the number of characters to be extracted from the right of the full name. (16 - 12 = 4) Last name The last name starts with the first character from the left (K) and ends at the fourth character (n). The formula extracts four characters, starting from the left. Use the SEARCH function to find the value for num_chars:  Search for the numeric position of the first space in A2, starting from the first character from the left. (6)  Subtract 2 to get the numeric position of the ending character of the last name (n). The result is the number of characters you want LEFT to extract. (6 - 2 =4)

Example 5: Mary Kay D. Andersen In this example, there are two parts of the first name: Mary Kay. The second and third spaces separate each name component.  12 ABCDNameFirst Name (Mary Kay)Middle Name (D.)Last Name (Andersen)Mary Kay D. Anderson=LEFT(A2, SEARCH(" ",A2,SEARCH(" ",A2,1)+1))=MID(A2,SEARCH(" ",A2,SEARCH(" ",A2,1)+1)+1,SEARCH(" ",A2,SEARCH(" ",A2,SEARCH(" ",A2,1)+1)+1)-(SEARCH(" ",A2,SEARCH(" ",A2,1)+1)+1))=RIGHT(A2,LEN(A2)-SEARCH(" ",A2,SEARCH(" ",A2,SEARCH(" ",A2,1)+1)+1))  Note   In the following graphics, the highlight in the full name shows the character that the matching SEARCH formula is looking for. First name The first name starts with the first character from the left and ends at the ninth character (the second space). This formula involves nesting SEARCH to find the second instance of space from the left.The formula extracts nine characters, starting from the left. Use nested SEARCH functions to find the value for num_chars:  Search for the numeric position of the first space in A2, starting from the first character from the left. (5)  Add 1 to get the position of the character after the first space (K). The result is the character number at which you want to start searching for the second instance of space. (5 + 1 = 6)  Search for the second instance of space in A2, starting from the sixth position (K) found in step 2. The result is the number of characters LEFT extracts from the text string. (9) Middle name The middle name starts at the tenth position (D), and ends at the twelfth position (the third space). This formula involves nesting SEARCH to find the first, second, and third instances of space.The formula extracts two characters from the middle, starting from the tenth position. Use nested SEARCH functions to find the value for start_num:  Search for the numeric position of the first space in A2, starting from the first character from the left. (5)  Add 1 to get the character after the first space (K). The result is the character number at which you want to start searching for the second space. (5 + 1 = 6)  Search for the position of the second instance of space in A2, starting from the sixth position (K) found in step 2. The result is the number of characters LEFT extracts from the left. (9)  Add 1 to get the character after the second space (D). The result is the starting position of the middle name. (9 + 1 = 10) Use nested SEARCH functions to find the value for num_chars:  Search for the numeric position of the character after the second space (D). The result is the character number at which you want to start searching for the third space. (10)  Search for the numeric position of the third space in A2, starting from the left. The result is the ending position of the middle name. (12)  Search for the numeric position of the character after the second space (D). The result is the beginning position of the middle name. (10)  Take the character number of the third space, found in step 6, and subtract the character number of “D”, found in step 7. The result is the number of characters MID extracts from the text string starting at the tenth position found in step 4. (12 - 10 = 2) Last name The last name starts eight characters from the right. This formula involves nesting SEARCH to find the first, second, and third instances of space in the fifth, ninth, and twelfth positions.The formula extracts eight characters from the right. Use nested SEARCH and the LEN functions to find the value for num_chars:  Search for the numeric position of the first space in A2, starting from the left. (5)  Add 1 to get the character after the first space (K). The result is the character number at which you want to start searching for the space. (5 + 1 = 6)  Search for the second space in A2, starting from the sixth position (K) found in step 2. (9)  Add 1 to get the position of the character after the second space (D). The result is the starting position of the middle name. (9 + 1 = 10)  Search for the numeric position of the third space in A2, starting from the left. The result is the ending position of the middle name. (12)  Count the total length of the text string in A2, and then subtract the number of characters from the left up to the third space found in step 5. The result is the number of characters to be extracted from the right of the full name. (20 - 12 = 8)

Example 6: Paula Barreto de Mattos In this example, there are three parts of the last name: Barreto de Mattos. The first space marks the end of the first name and the beginning of the last name.  12 ABDNameFirst Name (Paula)Last Name (Barreto de Mattos)Paula Barreto de Mattos=LEFT(A2, SEARCH(" ",A2,1))=RIGHT(A2,LEN(A2)-SEARCH(" ",A2,1))  Note   In the following graphics, the highlight in the full name shows the character that the matching SEARCH formula is looking for. First name The first name starts with the first character from the left (P) and ends at the sixth character (the first space). The formula extracts six characters from the left. Use the Search function to find the value for num_chars:  Search for the numeric position of the first space in A2, starting from the left. (6) Last name The last name starts seventeen characters from the right (B) and ends with first character from the right (s). The formula extracts seventeen characters from the right. Use the LEN and SEARCH functions to find the value for num_chars:  Search for the numeric position of the first space in A2, starting from the left. (6)  Count the total length of the text string in A2, and then subtract the number of characters from the left up to the first space, found in step 1. The result is the number of characters to be extracted from the right of the full name. (23 - 6 = 17)

Example 7: James van Eaton In this example, there are two parts of the last name: van Eaton. The first space marks the end of the first name and the beginning of the last name.  12 ABDNameFirst Name (James)Last Name (van Eaton)James van Eaton=LEFT(A2, SEARCH(" ",A2,1))=RIGHT(A2,LEN(A2)-SEARCH(" ",A2,1))  Note   In the following graphics, the highlight in the full name shows the character that the matching SEARCH formula is looking for. First name The first name starts with the first character from the left (J) and ends at the eighth character (the first space). The formula extracts six characters from the left. Use the SEARCH function to find the value for num_chars:  Search for the numeric position of the first space in A2, starting from the left. (6) Last name The last name starts with the ninth character from the right (v) and ends at the first character from the right (n). The formula extracts nine characters from the right of the full name. Use the LEN and SEARCH functions to find the value for num_chars:  Search for the numeric position of the first space in A2, starting from the left. (6)  Count the total length of the text string in A2, and then subtract the number of characters from the left up to the first space, found in step 1. The result is the number of characters to be extracted from the right of the full name. (15 - 6 = 9)

Example 8: Bacon Jr., Dan K. In this example, the last name comes first, followed by the suffix. The comma separates the last name and suffix from the first name and middle initial.  12 ABCDENameFirst Name (Dan)Middle Name (K.)Last Name (Bacon)Suffix (Jr.)Bacon Jr., Dan K.=MID(A2,SEARCH(" ",A2,SEARCH(" ",A2,1)+1)+1,SEARCH(" ",A2,SEARCH(" ",A2,SEARCH(" ",A2,1)+1)+1)-SEARCH(" ",A2,SEARCH(" ",A2,1)+1))=RIGHT(A2,LEN(A2)-SEARCH(" ",A2,SEARCH(" ",A2,SEARCH(" ",A2,1)+1)+1))=LEFT(A2, SEARCH(" ",A2,1))=MID(A2,SEARCH(" ", A2,1)+1,(SEARCH(" ",A2,SEARCH(" ",A2,1)+1)-2)-SEARCH(" ",A2,1))  Note   In the following graphics, the highlight in the full name shows the character that the matching SEARCH formula is looking for. First name The first name starts with the twelfth character (D) and ends with the fifteenth character (the third space). The formula extracts three characters, starting from the twelfth position. Use nested SEARCH functions to find the value for start_num:  Search for the numeric position of the first space in A2, starting from the left. (6)  Add 1 to get the character after the first space (J). The result is the character number at which you want to start searching for the second space. (6 + 1 = 7)  Search for the second space in A2, starting from the seventh position (J), found in step 2. (11)  Add 1 to get the character after the second space (D). The result is the starting position of the first name. (11 + 1 = 12) Use nested SEARCH functions to find the value for num_chars:  Search for the numeric position of the character after the second space (D). The result is the character number at which you want to start searching for the third space. (12)  Search for the numeric position of the third space in A2, starting from the left. The result is the ending position of the first name. (15)  Search for the numeric position of the character after the second space (D). The result is the beginning position of the first name. (12)  Take the character number of the third space, found in step 6, and subtract the character number of “D”, found in step 7. The result is the number of characters MID extracts from the text string starting at the twelfth position, found in step 4. (15 - 12 = 3) Middle name The middle name starts with the second character from the right (K). The formula extracts two characters from the right. Use nested SEARCH functions to find the value for num_chars:  Search for the numeric position of the first space in A2, starting from the left. (6)  Add 1 to get the character after the first space (J). The result is the character number at which you want to start searching for the second space. (6 + 1 = 7)  Search for the second space in A2, starting from the seventh position (J), found in step 2. (11)  Add 1 to get the character after the second space (D). The result is the starting position of the first name. (11 + 1 = 12)  Search for the numeric position of the third space in A2, starting from the left. The result is the ending position of the middle name. (15)  Count the total length of the text string in A2, and then subtract the number of characters from the left up to the third space, found in step 5. The result is the number of characters to be extracted from the right of the full name. (17 - 15 = 2) Last name The last name starts at the first character from the left (B) and ends at sixth character (the first space). Therefore, the formula extracts six characters from the left. Use the SEARCH function to find the value for num_chars:  Search for the numeric position of the first space in A2, starting from the left. (6) Suffix The suffix starts at the seventh character from the left (J), and ends at ninth character from the left (.). The formula extracts three characters, starting from the seventh character. Use the SEARCH function to find the value for start_num:  Search for the numeric position of the first space in A2, starting from the left. (6)  Add 1 to get the character after the first space (J). The result is the starting position of the suffix. (6 + 1 = 7) Use nested SEARCH functions to find the value for num_chars:  Search for the numeric position of the first space in A2, starting from the left. (6)  Add 1 to get the numeric position of the character after the first space (J). The result is the character number at which you want to start searching for the second space. (7)  Search for the numeric position of the second space in A2, starting from the seventh character found in step 4. (11)  Subtract 1 from the character number of the second space found in step 4 to get the character number of “,”. The result is the ending position of the suffix. (11 - 1 = 10)  Search for the numeric position of the first space. (6)  After finding the first space, add 1 to find the next character (J), also found in steps 3 and 4. (7)  Take the character number of “,” found in step 6, and subtract the character number of “J”, found in steps 3 and 4. The result is the number of characters MID extracts from the text string starting at the seventh position, found in step 2. (10 - 7 = 3)

Example 9: Gary Altman III In this example, the first name is at the beginning of the string and the suffix is at the end of the name. The formula to use for the name components is similar to Example 2, where the first name can be extracted by using the LEFT function, the last name can be extracted by using the MID function, and the suffix can be extracted by using the RIGHT function.  12 ABCDNameFirst Name (Gary)Last Name (Altman)Suffix (III)Gary Altman III=LEFT(A2, SEARCH(" ",A2,1))=MID(A2,SEARCH(" ",A2,1)+1,SEARCH(" ",A2,SEARCH(" ",A2,1)+1)-(SEARCH(" ",A2,1)+1))=RIGHT(A2,LEN(A2)-SEARCH(" ",A2,SEARCH(" ",A2,1)+1))  Note   In the following graphics, the highlight in the full name shows the character that the matching SEARCH formula is looking for. First name The first name starts at the first character from the left (G) and ends at the fifth character (the first space). Therefore, the formula extracts five characters from the left of the full name.  Search for the numeric position of the first space in A2, starting from the left. (5) Last name The last name starts at the sixth character from the left (A) and ends at the eleventh character (the second space). This formula involves nesting SEARCH to find the positions of the spaces. The formula extracts six characters from the middle, starting from the sixth character. Use the SEARCH function to find the value for start_num:  Search for the numeric position of the first space in A2, starting from the left. (5)  Add 1 to get the position of the character after the first space (A). The result is the starting position of the last name. (5 + 1 = 6) Use nested SEARCH functions to find the value for num_chars:  Search for the numeric position of the first space in A2, starting from the left. (5)  Add 1 to get the position of the character after the first space (A). The result is the character number at which you want to start searching for the second space. (5 + 1 = 6)  Search for the numeric position of the second space in A2, starting from the sixth character found in step 4. This character number is the ending position of the last name. (12)  Search for the numeric position of the first space. (5)  Add 1 to find the numeric position of the character after the first space (A), also found in steps 3 and 4. (6)  Take the character number of the second space, found in step 5, and then subtract the character number of “A”, found in steps 6 and 7. The result is the number of characters MID extracts from the text string, starting at the sixth position, found in step 2. (12 - 6 = 6) Suffix The suffix starts three characters from the right. This formula involves nesting SEARCH to find the positions of the spaces. Use nested SEARCH and the LEN functions to find the value for num_chars:  Search for the numeric position of the first space in A2, starting from the left. (5)  Add 1 to get the character after the first space (A). The result is the character number at which you want to start searching for the second space. (5 + 1 = 6)  Search for the second space in A2, starting from the sixth position (A), found in step 2. (12)  Count the total length of the text string in A2, and then subtract the number of characters from the left up to the second space, found in step 3. The result is the number of characters to be extracted from the right of the full name. (15 - 12 = 3)

Example 10: Mr. Ryan Ihrig In this example, the full name is preceded by a prefix. The formulas to use for the name components are similar to Example 2, where the first name can be extracted by using the MID function and the last name can be extracted by using the RIGHT function.  12 ABCNameFirst Name (Ryan)Last Name (Ihrig)Mr. Ryan Ihrig=MID(A2,SEARCH(" ",A2,1)+1,SEARCH(" ",A2,SEARCH(" ",A2,1)+1)-(SEARCH(" ",A2,1)+1))=RIGHT(A2,LEN(A2)-SEARCH(" ",A2,SEARCH(" ",A2,1)+1))  Note   In the following graphics, the highlight in the full name shows the character that the matching SEARCH formula is looking for. First name The first name starts at the fifth character from the left (R) and ends at the ninth character (the second space). This formula involves nesting SEARCH to find the positions of the spaces.The formula extracts four characters, starting from the fifth position. Use the SEARCH function to find the value for the start_num:  Search for the numeric position of the first space in A2, starting from the left. (4)  Add 1 to get the position of the character after the first space (R). The result is the starting position of the first name. (4 + 1 = 5) Use nested SEARCH function to find the value for num_chars:  Search for the numeric position of the first space in A2, starting from the left. (4)  Add 1 to get the position of the character after the first space (R). The result is the character number at which you want to start searching for the second space. (4 + 1 = 5)  Search for the numeric position of the second space in A2, starting from the fifth character, found in steps 3 and 4. This character number is the ending position of the first name. (9)  Search for the first space. (4)  Add 1 to find the numeric position of the character after the first space (R), also found in steps 3 and 4. (5)  Take the character number of the second space, found in step 5, and then subtract the character number of “R”, found in steps 6 and 7. The result is the number of characters MID extracts from the text string, starting at the fifth position found in step 2. (9 - 5 = 4) Last name The last name starts five characters from the right. This formula involves nesting SEARCH to find the positions of the spaces. Use nested SEARCH and the LEN functions to find the value for num_chars:  Search for the numeric position of the first space in A2, starting from the left. (4)  Add 1 to get the position of the character after the first space (R). The result is the character number at which you want to start searching for the second space. (4 + 1 = 5)  Search for the second space in A2, starting from the fifth position (R), found in step 2. (9)  Count the total length of the text string in A2, and then subtract the number of characters from the left up to the second space, found in step 3. The result is the number of characters to be extracted from the right of the full name. (14 - 9 = 5)

Example 11: Julie Taft-Rider In this example, the last name is hyphenated. A space separates each name component.  12 ABCNameFirst Name (Julie)Last Name (Taft-Rider)Julie Taft-Rider=LEFT(A2, SEARCH(" ",A2,1))=RIGHT(A2,LEN(A2)-SEARCH(" ",A2,1))  Note   In the following graphics, the highlight in the full name shows the character that the matching SEARCH formula is looking for. First name The first name starts at the first character from the left and ends at the sixth position (the first space). The formula extracts six characters from the left. Use the SEARCH function to find the value of num_chars:  Search for the numeric position of the first space in A2, starting from the left. (6) Last name The entire last name starts ten characters from the right (T) and ends at the first character from the right (r). Use the LEN and SEARCH functions to find the value for num_chars:  Search for the numeric position of the space in A2, starting from the first character from the left. (6)  Count the total length of the text string to be extracted, and then subtract the number of characters from the left up to the first space, found in step 1. (16 - 6 = 10)

Page 1

Page 2

Page 3

Page 4

Show full summary Hide full summary

Similar

Translations and transformations of functions
Christine Laurich
Nested IF Functions and Conditional Functions
faulkner.j
Food Technology - Functions of ingredients
evie.daines
Respiratory System
Addeana
Algebra Quiz
Norman McBrien
Functions of a Political Party
Phoebe Fletcher
Flash cards on cardiovascular system
offintowonderland
AVERAGE_IF_IFS
faulkner.j
Statistical functions
Joyce Wood
Excel spreadsheet key terms
Mrs Johnson
Basic Derivative Rules
Bill Andersen