is there a way to delete all characters to the right of a ":"?

  • Thread starter Thread starter gerry.lisa
  • Start date Start date
XL 2003
the number of characters to the left of the ":" will vary

This will leave the colon and remove everything after it...

=LEFT(A20,FIND(":",A20))

This will remove the colon also...

=LEFT(A20,FIND(":",A20)-1)

Rick
 
This will leave the colon and remove everything after it...

=LEFT(A20,FIND(":",A20))

This will remove the colon also...

=LEFT(A20,FIND(":",A20)-1)

Rick

Thank you!!!

....Lisa
 

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