Reputation: 36317
I'm trying to create an column of checkable boxes in sheets, 1 for each row. I have placed an array formula in A2:
=ARRAYFORMULA(IF(ISBLANK(B2:B),"","☐"))
However although this produces the correct number of boxes in the column, they are not able to be checked/unchecked individually . How can I get this working?
Upvotes: 1
Views: 41
Reputation: 1
=IF(NOT(LEN(B1:B)), 1)
#fffffd
Upvotes: 2