Greetings,
Working this time in Excel VBA, which is giving me challenges....
Excel spreadsheet, saved to xlsm file format so I can put VBA code in and execute it to manipulate cell contents on the sheet.
On the sheet, have a very basic "Hello world!" amount of initial functionality:
In the immediate window I am trying to just drop in
which comes up with error:
Compiler Error
Sub of Function not defined
What am I missing?
I am thankful,
Working this time in Excel VBA, which is giving me challenges....
Excel spreadsheet, saved to xlsm file format so I can put VBA code in and execute it to manipulate cell contents on the sheet.
On the sheet, have a very basic "Hello world!" amount of initial functionality:
Code:
Option Explicit
Public Sub UpdateTestCaseFilenames()
....
End Sub
In the immediate window I am trying to just drop in
Code:
UpdateTestCaseFilenames
Compiler Error
Sub of Function not defined
What am I missing?
I am thankful,