Complete the formula to extract the first 3 characters from cell A1 using the LEFT function.
=LEFT(A1, [1])The LEFT function extracts characters from the start of the text. Using 3 extracts the first three characters.
Complete the formula to extract the last 4 characters from cell B2 using the RIGHT function.
=RIGHT(B2, [1])The RIGHT function extracts characters from the end of the text. Using 4 extracts the last four characters.
Fix the error in the MID formula to extract 5 characters starting from the 3rd character in cell C3.
=MID(C3, [1], 5)
The MID function needs the starting position as the second argument. To start at the 3rd character, use 3.
Fill both blanks to extract 4 characters starting from the 2nd character in cell D4 using MID.
=MID(D4, [1], [2])
The MID function's second argument is the start position (2), and the third argument is the number of characters to extract (4).
Fill all three blanks to extract 3 characters starting from position 4 using MID and the first character using LEFT from cell E5.
=MID(E5, [1], [2]) & LEFT(E5, [3])
The MID function starts at position 4 and extracts 3 characters. The LEFT function extracts 1 character from the start.