Hi there!
Can’t find the answer: how to set up autocomplete of cells in a column if a new row appears? You need to have a formula in each new cell in the column. Tried it through isblank, but the formula doesn’t work.
You could use set columns
https://docs.glideapps.com/all/reference/actions/single-actions/data/set-columns
Or maybe if then else
Thanks!
And in google tables?
Quick example
=IF(ISBLANK(M2:M),“Delivery”,“Delivered”)
M2:M is the range
“Delivery” if value if true
“Delivered” if value is false
Read this if you want to put an array in the column header. This will auto populate any new rows added to your sheet
Also make sure you use arrayformula to fill the whole column.
Are you looking for ARRAYFORMULA() ?
It’s solve don’t work for formulas

Try putting this in D1:
={"Country Check";ARRAYFORMULA(IF(C2:C="","",IF(C2:C=Feed!C2:C100,1)))}

Can you provide an english translation of that error message?
(Are there any values in cells D2 to D100?)
Sorry) “Syntax error in formula”
The parenthesis is automatically added
Put it inside the curly braces, like this:
={“Country Check”;ARRAYFORMULA(IF(C2:C="","",IF(C2:C=Feed!C2:C100,1)))}
I do exactly this, but the parenthesis still appears
yep,i’m already do it
So it’s working now?
Yes, big thanks
Missed an extra paranthesis in my original code, thanks for the fix 

