0
0
Excelspreadsheet~5 mins

LEFT, RIGHT, MID extraction in Excel - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the LEFT function do in Excel?
The LEFT function extracts a specified number of characters from the start (left side) of a text string.
Click to reveal answer
beginner
How do you extract the last 3 characters from a text string in Excel?
Use the RIGHT function with 3 as the number of characters, like this: RIGHT(text, 3).
Click to reveal answer
beginner
Explain the MID function in Excel.
MID extracts characters from the middle of a text string. You specify the start position and how many characters to take, like MID(text, start_num, num_chars).
Click to reveal answer
beginner
What will the formula =LEFT("Hello World", 5) return?
It returns "Hello" because it takes the first 5 characters from the left of the text "Hello World".
Click to reveal answer
beginner
If cell A1 contains "Spreadsheet", what does =MID(A1, 6, 5) return?
It returns "sheet" because it starts at the 6th character and takes 5 characters from "Spreadsheet".
Click to reveal answer
Which function extracts characters from the end of a text string?
ALEFT
BLEN
CRIGHT
DMID
What does =LEFT("Excel", 2) return?
A"Ex"
B"el"
C"ce"
D"elc"
How do you extract 4 characters starting from the 3rd character in a text string?
ALEN(text, 4)
BLEFT(text, 4)
CRIGHT(text, 4)
DMID(text, 3, 4)
If A1 contains "Data", what does =RIGHT(A1, 2) return?
A"ta"
B"at"
C"Da"
Dat"
Which formula extracts the first character of a text string?
ARIGHT(text, 1)
BLEFT(text, 1)
CMID(text, 2, 1)
DLEN(text)
Describe how to use LEFT, RIGHT, and MID functions to extract parts of a text string in Excel.
Think about where you want to start extracting characters: beginning, end, or middle.
You got /3 concepts.
    Give an example of a situation where you would use the MID function instead of LEFT or RIGHT.
    Consider extracting a part that is not at the start or end.
    You got /3 concepts.