I want an arrow icon (▶) in all cells in a column. For a single cell I use =char(HEX2DEC("25B6")). How do I enter this as an array formula?
=char(HEX2DEC("25B6"))
For me the existing answer does not work, but this does:
=ArrayFormula(if(row(A1:A),char(9654),))
=ARRAYFORMULA(SUBSTITUTE(A1:A10&CHAR(HEX2DEC("25B6")), 0, ))
alternatives:
=ARRAYFORMULA(IF(ROW(A1:A10), "▶", ))
=TRANSPOSE(SPLIT(REPT("♀▶", 10), "♀"))