B
beeawwb
Good afternoon all,
Just wondering if it's possible to take a range of cells, and remov
all characters from the cell(s) (including spaces, etc) and leave onl
numerical characters... but still leave the cells formatted as text.
I assume that I would be using VBA, and there would be some thin
like...
Range("B1:B100")
For Number <= Length(Cell)
If Char(Number) <> (1 or 2 or 3 etc) Then
Char(Number)=""
Number=Number+1
End If
Next Cell
Or something like that. My psuedocode is a little better than my rea
coding knowledge, and I don't know if any of those codes actuall
exist.
Thanks for your help on this one,
-Bo
Just wondering if it's possible to take a range of cells, and remov
all characters from the cell(s) (including spaces, etc) and leave onl
numerical characters... but still leave the cells formatted as text.
I assume that I would be using VBA, and there would be some thin
like...
Range("B1:B100")
For Number <= Length(Cell)
If Char(Number) <> (1 or 2 or 3 etc) Then
Char(Number)=""
Number=Number+1
End If
Next Cell
Or something like that. My psuedocode is a little better than my rea
coding knowledge, and I don't know if any of those codes actuall
exist.
Thanks for your help on this one,
-Bo