【发布时间】:2019-05-08 11:01:21
【问题描述】:
我想在一列的所有单元格中显示一个箭头图标 (▶)。对于单个单元格,我使用=char(HEX2DEC("25B6"))。如何将其作为数组公式输入?
【问题讨论】:
标签: google-sheets array-formulas google-sheets-formula
我想在一列的所有单元格中显示一个箭头图标 (▶)。对于单个单元格,我使用=char(HEX2DEC("25B6"))。如何将其作为数组公式输入?
【问题讨论】:
标签: google-sheets array-formulas google-sheets-formula
对我来说,现有的答案不起作用,但这确实有效:
=ArrayFormula(if(row(A1:A),char(9654),))
【讨论】: