In a new Calc document: 1. Put number '1' to A1, A2, A3 and A4 2. Put formula '=SUM(A1:A4)' to A5 3. Put number '2' to B1 4. Select B1:C1, and call Data->Multiple Operations 5. Put 'A5' to dialog's "Formulas", and 'A2' to "Column input cell", and click OK. => C1 shows Err:504. It depends on the range used in the A5 formula. Having the formula changed to '=SUM(A2:A2)' (note that it also uses reference to a range including the input cell, but only that cell!), or to '=SUM(A3:A4)' makes it function OK. Seems like the range gets "broken" when we use another cell for updated value for some cell inside the range. Also repro using OOo 3.3.0.
This one likely is a duplicate of bug 130722.
"A cell, which contains the current value must not depend on cells which are used in the sample calculation, neither directly nor indirectly." https://wiki.documentfoundation.org/Documentation/Calc_Functions/MULTIPLE.OPERATIONS/en
(In reply to Regina Henschel from comment #2) I'm sorry, how is that related? "A cell, which contains the current value" is the "RowReplacement" or "ColumnReplacement", and it is a *fixed value* cell in the example here.
*** Bug 148982 has been marked as a duplicate of this bug. ***
Sorry Mike, you are right. Generated formula is =MULTIPLE.OPERATIONS(A$5;$A$1;$B1). It seems, that it is not possible, that the variable cell $A$1 is part of a range used in the sample calculation, here A1:A4. Changing A5 to =A1+sum(A2:A4) works.