Hi All,
I have a column of text, and i need to shorten them by locating the last ":" and taking all the text behind it.
my thoughts lead me to use a combination of right() and find(). but the problem is that there are several ":" in each text. and find() only looks for the first one from the beginning/left of the text. how do i make it to start of the end/right?
please advise.
sample data
Input:
2007R022RQ2F30:698:M:698:33903:03BL CM
Output:
03BL CM
Thanks
Hosacans
I have a column of text, and i need to shorten them by locating the last ":" and taking all the text behind it.
my thoughts lead me to use a combination of right() and find(). but the problem is that there are several ":" in each text. and find() only looks for the first one from the beginning/left of the text. how do i make it to start of the end/right?
please advise.
sample data
Input:
2007R022RQ2F30:698:M:698:33903:03BL CM
Output:
03BL CM
Thanks
Hosacans