Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In ARRAY_LITERAL, an Array Literal was missing values for one or more rows - indirect formula error in google spreadsheet

Hy Guys, i'm triyng to merge two different Tab of the same Google SpreadSheet.

I'm using this formula in the first cell

={indirect(dynamicRange1);indirect(dynamicRange2)}

where dynamicRange 1 and 2 are:

  • FirstSheet!2:2606
  • SecondSheet!2:6598

But shomething does not work fine.

"In ARRAY_LITERAL, an Array Literal was missing values for one or more rows"

If i use just one dynamicRance everything works fine, both something goes wrong.

like image 335
alesdario Avatar asked Apr 05 '18 17:04

alesdario


1 Answers

Number of columns in both sheets must be the same:

Try

={Sheet1!A2:D10;Sheet2!A2:D10}
like image 92
TheMaster Avatar answered Nov 15 '22 11:11

TheMaster