How to remove a character from the first index?

D

dex

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.
 
G

Guest

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.
 
G

Guest

See if this does what you want.

Sub Fordex()
For Each c In Range("A:A")
If StrConv(Left(c.Value, 1), vbUpperCase) = "P" Then
c.Value = Right(c.Value, Len(c.Value) - 1)
End If
Next
End Sub
 

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

Top