Hi
I have the following simple code, never had an issue with it before but all of a sudden I am getting the "Method Clear Contents of Object Range Failed" run time error. From what I have read this isnt so much an error with the code but more to do with the system is that correct? If anyone knows a way around this it would be greatly appreciated
I have the following simple code, never had an issue with it before but all of a sudden I am getting the "Method Clear Contents of Object Range Failed" run time error. From what I have read this isnt so much an error with the code but more to do with the system is that correct? If anyone knows a way around this it would be greatly appreciated
VBA Code:
Sub Newstepclean()
Sheets("Calculations").Select
Range("K2:N7000").Select
Selection.ClearContents
Range("K2").Select
End Sub