I have a user who has a huge model. On one worksheet of the model she has duplicate layouts for 58 companies, one after the other. The layouts are exactly the same in architecture consisting of 37 rows and 134 columns. The problem is that she now wants to sum cells from each layout in what amounts to a consolidation layout.
The problem is that short of just adding cells (I119+I156+I193…), I can’t seem to come up with a formula that works. I tried the following formula:
{=SUM(IF(MOD(ROW(INDIRECT(“1:”&COUNT(dataI1)))-1,37)=0,dataI1,””))}
but it results in the #NA error. This same formula works in a test worksheet I set up, so I can only assume it doesn’t work here because I am trying to sum more than 30 items, but I’m not sure. (Note: “dataI1” is a defined name that includes cells $I$119:$I$1192, where I want to add every 37th row, and I have verified that the cell in every 37th row contains a value.)
Anyone have any ideas?