View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
[email protected] gerry.lisa@gmail.com is offline
external usenet poster
 
Posts: 31
Default is there a way to delete all characters to the right of a ":"?

On Aug 13, 4:17 pm, "Rick Rothstein \(MVP - VB\)"
wrote:
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


Thank you!!!

....Lisa