Remove n characters from field
tip
May use UPPERCASE or lowercase for the Excel function
as shown below.
RIGHT()
#
Using # UPPERCASERIGHT(B1, LEN(B1) - 10)
# lowercaseright(b1, len(b1) - 10)
#
How to use Excel function?Always remember to type =
symbol first before using any Excel function.
#
Let's get started ๐How it works?
right(b1, len(b1) - 10)
# right() = extract a given number of characters from the right side of a supplied text string# len() = get the length of the text
As shown below, len(b1)
equals 19 characters.
VM14795:1
including the whitespace is 10 characters.Pyongyang
is 9 characters.
By using the formula, len(b1) - 10
. It extracts the 9 characters from the right side or we could interpret it by saying that it cuts out the 10 characters including the whitespace before Pyongyang
.
After that, you may drag the box as usual on the right bottom corner.
#
Final result ๐Da dang!