Home > Net >  Need a way of running excel VBA either through azure cloud or through any other way?
Need a way of running excel VBA either through azure cloud or through any other way?

Time:09-02

I have a pipeline in azure that runs a script once per month. The script invokes a VBA. The problem is I can't run this VBA in azure, since in order for the script to run it requires a copy of excel. Is there any way to automate the process of executing a VBA either within azure or somewhere else and then grab the resulting excel files? I'm open to any ideas. Where else can I run VBAs external to azure and then draw those files into azure blob storage.

Thanks

CodePudding user response:

First, use Windows Task Scheduler to run the excel every month and use macro to save the result in some network place, onedrive or sharepoint; or sent it by email; or push into some database, etc... Second, use power automate and office script every month to handle the result file if necessary.

  • Related