• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Right String formula

Jagdev Singh

Active Member
Hi Experts

Could you please help me with the formula which will pull string of words from the right side of the sentence.

Regards,

JD
 

Attachments

  • Sample.xlsx
    9.3 KB · Views: 0
Hello JD and Good Day...
Try this:

=MID(A2,FIND("'",A2)+1,999)

Find is looking for the red highlighted string.

Regards,
 
Hi Khalid

Please let me know if it is possible - I want to remove \par, 22, } from the output. I mean can we create single formula which will replace this as well.

Regards,
JD
 
Hi Khalid

Please let me know if it is possible - I want to remove \par, 22, } from the output. I mean can we create single formula which will replace this as well.

Regards,
JD
JD sorry, I am not getting your point...
can you provide your desired result?

Regards,
 
JD I am sure there would be more ways, here is i came up with:

=TRIM(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(MID(A2,FIND("'",A2)+3,999),"\'22",""),"par",""),"\",""),"}",""),"-",""))

Regards,
 
Back
Top