View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Chip Pearson Chip Pearson is offline
external usenet poster
 
Posts: 7,247
Default Parameter in Macro Call?

You can still run it from the macro dialog box, even though it
will not show up in the list. In the Macro Name box, enter
'LoadData "the string" '


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com




"kmbarz" wrote in message
...
I have my macro all set to format a report. The last thing I
had to do was
pass in the date of the report since the ETL happens elsewhere.
So, when I
took:

Sub LoadData()

and changed it to

Sub LoadData(dt As String)

the macro name disappeared from my run macro list and the
script that calls
it can't see it either. Is there some way to pass a parameter
into a macro
like this?