I am trying to get a spreadsheet to perform a SUMPRODUCT
across multiple sheets. I kept getting Err:504
in my large spreadsheet, so I decided to make a small sheet to test it with, and no matter what I do, I get an Err:504
.
My test spreadsheet has 3 sheets (just called Sheet1
-Sheet3
) with a number in A1
and A2
on each sheet and then a 4th sheet where I am doing my SUMPRODUCT
. I try to do a SUMPRODUCT
of the first three sheets like this:
=SUMPRODUCT(Sheet1.A1:Sheet3.A1, Sheet1.A2:Sheet3.A2)
And I get Err:504
. But if I try the exact same thing with just a SUM
:
=SUM(Sheet1.A1:Sheet3.A1, Sheet1.A2:Sheet3.A2)
It doesn’t give me any error (although, of course this is not what I want). So I assume there isn’t any problem with my syntax.
Can anyone tell me what is going wrong here? I am using:
Version: 7.2.7.2 (x64) / LibreOffice Community
Build ID: 8d71d29d553c0f7dcbfa38fbfda25ee34cce99a2
CPU threads: 8; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL
Thanks!