View Single Post
 
Old 02-24-2020, 02:13 AM
Marcia's Avatar
Marcia Marcia is offline Windows 7 32bit Office 2013
Expert
 
Join Date: May 2018
Location: Philippines
Posts: 527
Marcia has a spectacular aura aboutMarcia has a spectacular aura aboutMarcia has a spectacular aura about
Default Extract all characters from the nth number of a string

Hi. The below formula in C2 is returning an error.
=B2-LEFT(B2,Search("f",B2))
I would want the formula to return all the data in B2 except all of the characters before the first occurrence of "of" from the left, "of" included. Like, "number of circles in the picture of the garden." The formula should return " circles in the picture of the garden."
Finally, I got it right by:
=RIGHT(B2,LEN(B2)-SEARCH("f",B2))
Sorry for the bother.
Thank you.
Reply With Quote