on ‎2021 Jul 30 5:32 PM
Dear all,
I wrote a simple VBA function. I call it via Excel formula (local member) and it looks like:
=CUSTOM_SUM(row(),column(), relative1, relative2)
where relative1 and relative2 are two costant values (e.g. -1 and -2 )
In the VBA code I just sum up two values:
Function CUSTOM_SUM(r As Integer, c As Integer, posS As Integer, posF As Integer) As Double
a = ActiveSheet.Cells(r + posS, c)
b = ActiveSheet.Cells(r + posF, c)
CUSTOM_SUM = a + b
When I refresh the sheet I get a 'delete confirm' pop-up from auto-generated sheet called SAPTempSheetCF.

How can I avoid this confirmation?
Thank you.
Request clarification before answering.
Dear John,
I'm waiting for news from SAP Development Support because they are working on it.
BR, F.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you get an answer to this? I received this error using EPM with a custom VBA function
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Dear Ivan,
Thank you for your message.
I didn't find any solution till now. I'm waiting for news from SAP Development Support because they are working on it.
I will share the solution when it will be available.
BR, F.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 14 | |
| 9 | |
| 8 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 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.