Seems this should be easy, but I need some help. Two VBA statements. First sends execution to a function in the module, though it should only clear a range. IF I comment that out, second statement sends execution to a different function in the module. What can I be doing wrong?
Sub CopyMySheet()
'Worksheets("TempServe").Range("A1:A500").ClearContents
Worksheets("ProvidedServices").Range("A1:A500").Copy Worksheets("TempServe").Range("A1:A500")
End Sub
Thanks for your help
Sub CopyMySheet()
'Worksheets("TempServe").Range("A1:A500").ClearContents
Worksheets("ProvidedServices").Range("A1:A500").Copy Worksheets("TempServe").Range("A1:A500")
End Sub
Thanks for your help