on ā2015 Oct 05 9:18 PM
Hi Guys,
we are using BPC 10.0 NW How to refresh one specific worksheet by default in EPM workbook has multiple worksheet. Is there any Macros or any specific settings we can do to refresh only specific report by default when open EPM work book.
I would appreciate if some one helps me on this.
Thanks in advance.
Thanks
SG
Request clarification before answering.
Hi,
Please read help: 42.7 Custom VBA Functions (Events)
Create new module and put the function
Dim epm As New FPMXLClient.EPMAddInAutomation
Function AFTER_WORKBOOK_OPEN()
ThisWorkbook.Worksheets("NameOfSpecificWorksheet").Activate
epm.RefreshActiveSheet
End Function
Vadim
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
P.S. You can even refresh some specific report on the specific sheet if:
Dim epm As New FPMXLClient.EPMAddInAutomation
Function AFTER_WORKBOOK_OPEN()
ThisWorkbook.Worksheets("NameOfSpecificWorksheet").Activate
ThisWorkbook.Worksheets("NameOfSpecificWorksheet").Range("B15").Select
' B15 - cell of the specific report
epm.RefreshActiveReport
End Function
This message was moderated.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 11 | |
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.