View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.programming
Rick Rothstein \(MVP - VB\)[_2202_] Rick Rothstein \(MVP - VB\)[_2202_] is offline
external usenet poster
 
Posts: 1
Default Quick Help!!! - remove character at position "X"

You could simple enter a formula like this

=LEFT(A2,6)&MID(A2,8,LEN(A2))

into another column, copy down, then copy and paste values over the
original.
Either manually or with a macro would be simple...


Another possibility...

=REPLACE(A2,7,1,"")

Rick