on ‎2016 Aug 26 11:13 AM
Hi Experts,
I have a logic script that performs some allocation logic. I need to trigger the logic script by clicking on a button provided in an excel template.
How can I trigger the Logic script using macro code. Precisely I need the code(if it is possible) so that we can trigger the desired logic script.
Regards,
SHUBHAM
Request clarification before answering.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Shubham,
You can trigger that script logic, by calling it through a Data manger package /CPMB/DEFAULT_FORMULAS. Add your script name in this process chain by going to the "Advanced Script". Create a button and assign this macro to run the data manager package..
Option Explicit
Dim EPM As New FPMXLClient.EPMAddInAutomation
Sub (Button Name)
EPM.DataManagerRunPackage "(Package name)", "(Group ID)", ""
End Sub
Regards,
JP
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 34 | |
| 6 | |
| 4 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.