Does any one know how to do this??? Cheers, elaine.
G Gary''s Student Jun 6, 2006 #2 Enter and run this small macro: Sub long_clearer() Dim r As Range For Each r In ActiveSheet.UsedRange If Len(r.Value) > 25 Then r.Clear End If Next End Sub
Enter and run this small macro: Sub long_clearer() Dim r As Range For Each r In ActiveSheet.UsedRange If Len(r.Value) > 25 Then r.Clear End If Next End Sub
E elaine216 Jun 7, 2006 #3 Thank you very much! Gary''s Student said: Enter and run this small macro: Sub long_clearer() Dim r As Range For Each r In ActiveSheet.UsedRange If Len(r.Value) > 25 Then r.Clear End If Next End Sub Click to expand...
Thank you very much! Gary''s Student said: Enter and run this small macro: Sub long_clearer() Dim r As Range For Each r In ActiveSheet.UsedRange If Len(r.Value) > 25 Then r.Clear End If Next End Sub Click to expand...