delete first two words in a cell

  • Thread starter Thread starter flashing frank
  • Start date Start date
F

flashing frank

woow thanks for the fast replies :)

special thanks to
Ron Rosenfeld : your function is exactly what i was looking for

greetz
f
 
woow thanks for the fast replies :)

special thanks to
Ron Rosenfeld : your function is exactly what i was looking for

greetz
ff

Thank you for the feedback. Glad to help. Please note that the function
assumes that there is only a single <space> between words.

If multiple spaces between words are possible, then the string should first be
TRIMmed.

Something like:

=MID(TRIM(A1),1+FIND("~",SUBSTITUTE(TRIM(A1)," ","~",2)),255)
--ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top