This macro will do what you want...
Sub DeleteFourthCharacter()
Dim Cel As Range
For Each Cel In Selection
Cel.Value = Left(Cel.Value, 3) & Mid(Cel.Value, 5)
Next
End Sub
Rick
"Catherine" <(E-Mail Removed)> wrote in message
news:726BA168-BFDF-4395-8C06-(E-Mail Removed)...
> Thanks Sam,
>
> But I don't want to insert a new column into my workook
>
>
>
> "Sam Wilson" wrote:
>
>> You could just use existing excel formulas and then paste special as
>> values?
>>
>> put this in cell B2, and it takes the fourth character out of A1
>>
>> =LEFT(A1,3)&RIGHT(A1,LEN(A1)-4)
>>
>> Sam
>>
>> "Catherine" wrote:
>>
>> > Hi,
>> >
>> > I would like to have a macro that would delete only the fourth
>> > character
>> > into the selected cells
>> >
>> > Thanks
>> > Catherine
|