View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
JAdamJ
 
Posts: n/a
Default How to remove a character from the first index?

You could do this with a cell formula. Put the following in the first row of
another column and copy down.

=IF(LEFT(A1,1)="p",RIGHT(A1,LEN(A1)-1),A1)

If you'd rather use a macro, you could loop through each cell and use a
similar formula in vba, but it's not quite as simple. Let us know if you
need the code.

"dex" wrote:

question: i recorded a macro that involves replacing the character "p"
in the part numbers after I run the macro with a nuLL string ""....but
i want the macro to replace the p only in the first index not anywhere
else in the part number: Here is part of my code.

Columns("A:A").Select
Selection.Find(What:="p", After:=ActiveCell, LookIn:=xlFormulas,
LookAt _
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext,
MatchCase:= _
False, SearchFormat:=False).Activate
Selection.Replace What:="p", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False

Hope this helps.