Hi,
I'm using functions that output arrays. In Google Sheets I usually wrap them in array_constrain(array,limit) which makes them not take up all available space. Is there a similar function in zoho sheets?
Example from Google sheets
=array_constrain(ArrayFormula(sumif(B2:B,H2:H,C2:C)),L1,1)
In Zoho Sheets the sumif is already an array, so I don't need the ArrayFormula wrapper, but it's always blasts through the whole sheet, whereas in the Google example I'm limiting it with the L1 parameter.
Thanks