I'm trying to automate the fixing of SSN's from numbers to text. I have a
maco which will do it, but I'm trying automate it so it will do evrry cell
in a range. I calculate the len() of the ssn cell and then sort by length to
get all the len(7) and len(8) rows to the top. The macro below works if I
take all the "FOR EACH and NEXT" looping stuff out and run it on a cell,
then move to the next cell and execute it again. Problem is sometimes our
data files have 100+ rows with dorked ssn's. Gotta be an easy way to do this
right? I'm an old mainframe programmer trying to handle on this new stuff.
Sub Add2()
'
' Add2 Macro
' Adds 2 zeros to ssn
'
' Keyboard Shortcut: Ctrl+t
'
Dim junk As String
For Each Cell In Selection
If Len(ActiveCell.Value) = 7 Then
junk = "'00" & ActiveCell.Value
Else
junk = "'0" & ActiveCell.Value
End If
ActiveCell.Value = junk
Next Cell
End Sub
Thanks,
Bruce
Bookmarks