如果我的专栏有文本和数字,如何给出真假条件

How to give true and false condition if my column have text and number

我的 A 列包含文本和数字

我想获取数据,如果我的 A 列包含文本,则为“0”,如果它是数字,则在 B 列中为“8”。我该怎么做?

问题 2:在 C 列的另一张图片中,我试图划分 A1/B1,但是当存在 text/numeric 时 - 它给出了一个错误。我想将该错误显示为 0,并且 numeric/numeric(4/8 =0.5) 值应该是正确的。

这样试试:

=ARRAYFORMULA(IF(ISNUMBER(A1:A5), 8, 0))