Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a batch file that does several things and the last step is to open an excel document and run the macro contained in it which updates the contents of the file. The macro runs perfectly with the click of a button but I want it all to be done when you run the .bat file.

I know I could attach the macro to the open event so it runs when you open the macro but I only want it to update automatically when you run the bat file, not every time you open the thing.

Maybe I could pass a parameter to let it know that it's been run from a .bat? or run it directly with an excel command?

like this?
run excel.exe /runMacro "mymacro"   

I can't find what I need anywhere, thanks.

share|improve this question

1 Answer

up vote 2 down vote accepted

Yes, basically the easy way is to move the contents of your "mymacro" into your ThisWorkBook

Private Sub Workbook_Open()

With security, the user may still have to click the enable macros button unless you want this to be unattended. If you want to pass arguments into the workbook open, then you can do this by parsing the command line. You can search code examples on Google for "excel GetCommandLineW"

Private Declare Function GetCommandLine Lib "kernel32" Alias "GetCommandLineW" () As Long
Private Declare Function lstrlenW Lib "kernel32" (ByVal lpString As Long) As Long
Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (MyDest As Any, MySource As Any, ByVal MySize As Long)

Function CmdToSTr(cmd As Long) As String
Dim Buffer() As Byte
Dim StrLen As Long
    If cmd Then
    StrLen = lstrlenW(cmd) * 2
    If StrLen Then
        ReDim Buffer(0 To (StrLen - 1)) As Byte
        CopyMemory Buffer(0), ByVal cmd, StrLen
        CmdToSTr = Buffer
        End If
    End If

End Function

Private Sub Workbook_Open()
    Dim CmdRaw As Long
    Dim CmdLine As String
    CmdRaw = GetCommandLine
    CmdLine = CmdToSTr(CmdRaw)
    ' From here you can parse the CmdLine
    ' ...snip...
share|improve this answer
Will that attempt to run the macro every time you open it? I'm looking for a way to only run the macro from the .bat so it doesn't update the results every time you open the workbook, that would get annoying. – Aeropher May 16 '12 at 15:45
Sorry, I see what you mean, Workbook_Open() combined with excel GetCommandLineW would let me identify where the file was opened from! THANKS! :) – Aeropher May 16 '12 at 15:47
You can also use it to parse arguments that you pass in the command line. I've used that often in the past to handle key fields and template selection. Makes it possible to build an entire reporting engine inside of a single excel file with a bunch of hidden tabs (empty templates). – William Stearns May 16 '12 at 16:53
I'm having one problem with it, I can't figure out how to pass the commands in from the command line. Someone said it was /e/arg1/arg2 and I put a message box in _Open() to display the args but it's empty. – Aeropher May 17 '12 at 9:06
I'll edit my answer to include the extra code... – William Stearns May 18 '12 at 13:11
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.