Error in google spreadsheet with arrays -
Error in google spreadsheet with arrays -
in google spreadsheet receive error , says, "array result not expanded because overwrite info in m261". looked in m261 , blank cell, weird thing if nail delete button on empty cell, error goes away. sadly keeps coming back. there prepare this?
here formula:
=arrayformula(if(e2:e>0,if(d2:d=0,"need due date",""),""))
i did not see "array result not expanded because overwrite info in m261" @ 1 point did see "...add more rows".
one approach should think work restrict output range of formula. illustration if wish apply 100 rows, use:
=array_constrain(arrayformula(if(e2:e>0,if(d2:d=0,"need due date",""),"")),100,1)
however problem mention , error message saw both because array formula. there seems little need such , like:
=if(and(d2=0,e2>0),"need due date",)
is much faster, specially big number of rows, though unlike array version require copying down.
arrays google-spreadsheet
Comments
Post a Comment