on 2016 Jan 28 11:13 AM
Hello,
I have an issue with an input form in which i would like to detail 4 accounts by partners. The input form is built as follow :
1. Structure of the report
in rows :
Account dimension
Partner dimension
I_NONE : total account without Partner detail
I_ALL : sum of partner
I_PA : Partner 1, 2, etc...
S9999 : Non group
Option of the input form : remove empty and zeo values is activated for rows.
in col :
any other dimension (made with an EPMdimensionoverride)
Users will have to use the EPM function "EPM insert members" to detail the account / I_None information. The issue is that after inserting, sending, and refreshing datas by partners, the I_ALL member (aggregation of partners) does not appear.
After closing, re opening, and refreshing, the member appears correctly.
Can anyone have already met this kind of issue ?
Thanks for your help !
Edouard
Request clarification before answering.
Hi Edouard,
Please provide screenshot for better understanding of the issue!
Vadim
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You have to use AFTER_SAVE event like:
Dim epm As New FPMXLClient.EPMAddInAutomation
Function AFTER_SAVE() As Boolean
ThisWorkbook.ActiveSheet.Range("B5").Formula = "=EPMDimensionOverride(""000"",""INTERCO"",""I_NONE,BAS(TotalInterco),TotalInterco"")"
epm.RefreshActiveSheet
ThisWorkbook.ActiveSheet.Range("B5").Formula = ""
epm.RefreshActiveSheet
AFTER_SAVE = True
End Function
It will apply EPMDimensionOverride to restore original members selection, refresh, then remove EPMDimensionOverride and refresh finally.
Vadim
Hi Edouard,
Where the user inserting row ? Is the sheet is protected ? Any sorting / filtering ?
Kindly explain the issue with the help of real screen shot.
Shrikant
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks for the answer :
PIC1 (#1) : when opening input form i want to detail by partner
PIC2 (#2): After inserting sending refreshing datas by partner
PIC3 (#3): after closing, reopening, the I_ALL agregation appears whereas i'm exepecting to get it at end of #2,
Account are filtered in edit report, but in my mind no impact.
Sheet is unprotected
| User | Count |
|---|---|
| 7 | |
| 6 | |
| 4 | |
| 2 | |
| 2 | |
| 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.