I can run my code by clicking on the green arrow.
How do I get it to run from the tool bar when the spreadsheet is displayed?
I want to go to Macros -> View Macros , highlight a macro and then press run the run button.
My app only has one user form with a button.
I would like to start from the top Sub that says Sheet__To _Param_Data(). I don't know what this function should call or what object it should be attached to get it running.
My subs look like this:
Sub Sheet_To_Param_Data()
'
' Sheet_To_Param_Data Macro
'
End Sub
Private Sub CommandButton1_Click()
Call CommandButton3_Click
End Sub
Private Sub CommandButton3_Click()
Dim row As Integer, col As Integer
Dim rowContents As Integer, colContents As Integer
Dim length As Integer
Dim field As Variant
Dim OutputText As Variant
Thank you very much,
Kevin
How do I get it to run from the tool bar when the spreadsheet is displayed?
I want to go to Macros -> View Macros , highlight a macro and then press run the run button.
My app only has one user form with a button.
I would like to start from the top Sub that says Sheet__To _Param_Data(). I don't know what this function should call or what object it should be attached to get it running.
My subs look like this:
Sub Sheet_To_Param_Data()
'
' Sheet_To_Param_Data Macro
'
End Sub
Private Sub CommandButton1_Click()
Call CommandButton3_Click
End Sub
Private Sub CommandButton3_Click()
Dim row As Integer, col As Integer
Dim rowContents As Integer, colContents As Integer
Dim length As Integer
Dim field As Variant
Dim OutputText As Variant
Thank you very much,
Kevin