Hello,
I have 2 sheets. One "monthly data" has all of my formulas. The 2nd one, "Data from ECS" has the actual data. So I went from a regular button associated with a Macro:
Sub ClearPatientData()
'
' ClearPatientData
'
'
Sheets("Data from ECS").Select
Columns("J:K").Select
Selection.Clear
Range("A1").Select
End Sub
To an ActiveX button so that I could change it's color/formatting. I wasn't able to figure out how to link the new button to the macro so I just copied the code into the function that was created:
Private Sub CommandButton1_Click()
'
' ClearPatientData
'
'
Sheets("Data from ECS").Select
Columns("J:K").Select
Selection.Clear
Range("A1").Select
End Sub
They both are supposed to do the same thing. The original function is located in the sheet called "Data from ECS", however the newer code is located in the sheet where the button is located.
When I click the button, I get an error: Run-time error '1004': Select method of Range class failed.
What am I doing wrong?
TIA
Bookmarks