on 2022 May 07 6:46 PM
Let's say there is a Planning View as such, namely one which uses the option "Display header name" (Settings > Formatting > Display header name):
When one now opens the chart by clicking the chart button, then the names of the headers (for example "Attribute 2") appear right on top of the chart, instead of at the bottom of row 5 where they should remain.
How can we keep these headers aligned towards the bottom of row 5 permanently as such (instead of requiring the end user to manually hit Refresh in the IBP Excel Add-In Ribbon):
Perhaps possible with Visual Basic / Macros (or is there an easier/better way), what would be the exact steps to achieve this please?
Request clarification before answering.
Hi Vincent,
Please do the following :
1. goto Developer-> Visual Basic > Modules (for the VBAProject of your planning view)
2. In "Wrapper" module, you will find subroutine as below:
Sub Refresh()
Application.Run ("SAP_IBP_Chart.xlam!Refresh")
End Sub
3. Modify it by adding additional line as below:
Sub Refresh()
Application.Run ("SAP_IBP_Chart.xlam!Refresh")
Call AFTER_REFRESH
End Sub
This will avoid user to refresh again as you are calling the refresh along with chart refresh.
Thanks
Rahul Mohnot
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
9 | |
4 | |
4 | |
4 | |
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.