Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Delete ALL text to the left of a particular character in MS excel

This is an excel related question. I want to delete all text (all characters) to the left of a particular character or characters in the string.

For instance:

suppose I have an string in a cell helloall welco metostackoverflow

now I want delete all the characters which are at the left side of "stack". means result should be stackoverflow (only stackoverflow)

Thanks in advance for your support.

like image 568
Amit Rajput Avatar asked Jul 13 '12 14:07

Amit Rajput


1 Answers

=RIGHT(input,LEN(input)-FIND("stack",input)+1)
like image 176
edeboursetty Avatar answered Sep 19 '22 13:09

edeboursetty