How to run excel macro via MATLAB on another pc
2 views (last 30 days)
Show older comments
Mohammad Azadi Tabar
on 9 Nov 2022
Edited: Mohammad Azadi Tabar
on 17 Nov 2022
I would like to run different excel macros on different computers via MATLAB on the main computer, then gathering all those data.
0 Comments
Accepted Answer
Vijay
on 17 Nov 2022
Hello @Mohammad Azadi Tabar
Link 1 demonstrates how you can do it on a local machine.
In order to do it on a remote computer you need to modify the call to ‘actxserver’ function and make some changes in setting in your master machine as well as slave machines.
The changes that need to be done are given in Link 2.
The modifies call is
%code
ExcelApp = actxserver('Excel.Application',’ip_of_slave’);
Link 1:
Link 2:
Hope that helps!
0 Comments
More Answers (0)
See Also
Categories
Find more on Data Export to MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!