Opening balance from Exact Online not coming through for I_EOL_BAL_PDER with Invantive Control

0

When I use the formula I_EOL_BAL_PDER, the opening balance is not include in the amount.

How can I include the opening balance as well in the Excel formula?

Goombah

Posted 2018-07-11T09:55:21.187

Reputation: 370

Answers

0

To also get the opening balance, you have to add it up using I_EOL_BAL_YEAR_OPEN.

For example:

=i_eol_bal_year_open($C{E,.,.,^+2,.} , $C{E,.,.,^,.}, $C{E,.,.,^+5,.}) + i_eol_bal_pder($C{E,.,.,^+2,.},$C{E,.,.,^,.},1,$C{E,.,.,^+1,.},$C{E,.,.,^+5,.})'

Goombah

Posted 2018-07-11T09:55:21.187

Reputation: 370

What is $C{...}? I think you can use A1 etc too. – Guido Leenders – 2018-07-11T10:00:11.100

0

The cumulative is now also available as:

=i_eol_year_close(...)

which sums the opening balance plus all previous and the current period.

Guido Leenders

Posted 2018-07-11T09:55:21.187

Reputation: 746