Complete the formula to extract the first 3 characters from cell A1.
=LEFT(A1, [1])The LEFT function extracts characters from the start of the text. Using 3 extracts the first 3 characters.
Complete the formula to extract the last 4 characters from cell B2.
=RIGHT(B2, [1])The RIGHT function extracts characters from the end of the text. Using 4 extracts the last 4 characters.
Fix the error in the formula to extract 5 characters from the middle of cell C3 starting at position 2.
=MID(C3, [1], 5)
The MID function syntax is MID(text, start_position, number_of_characters). To start at position 2, use 2.
Fill both blanks to extract 4 characters from cell D4 starting at position 3.
=MID(D4, [1], [2])
The MID function needs the start position and the number of characters. Start at 3 and extract 4 characters.
Fill all three blanks to extract the first 2 characters from cell E5, then the last 3 characters from cell F5, and finally 4 characters from cell G5 starting at position 2.
=LEFT(E5, [1]) & RIGHT(F5, [2]) & MID(G5, [3], 4)
LEFT(E5,2) extracts first 2 chars, RIGHT(F5,3) extracts last 3 chars, MID(G5,2,4) extracts 4 chars starting at position 2.