How can I do two separate counts in the same cell?
For example, I want to have cell to have two values from separate counts.
Something like 29 - 14
in the same cell.
How can I do two separate counts in the same cell?
For example, I want to have cell to have two values from separate counts.
Something like 29 - 14
in the same cell.
您可以计算两个单独的计数并将它们显示为同一单元格中的文本。例如,
=COUNTA(D1:D100)&" - "&COUNTA(F1:F25)
根据您的说法,我了解到单个单元格中有两个数字,由连字符 (-) 分隔,例如 29-32 或 10-12。您想将这些数字中的每一个都作为计数。最简单的方法是使用以下公式,其中只有两个由连字符分隔的值(如 29-42)或单个值(如 42): =IF(ISERROR(FIND("-",A1,1)),1,2 ) 值 29-42 在单元格 A1 中。我在单元格 B1 中输入了上述公式。此公式查找是否有连字符。如果有连字符,则返回 2,否则如果由于缺少连字符而出现错误,则返回 1。
你可以,但这很奇怪,可能会带来麻烦。
使用文本连接。
= formula1 & " - " & formula2
在您阅读的地方formula1
,使用您想要的任何公式。在您阅读的地方formula2
,使用您想要的任何其他公式。&
符号连接文本。因此,& " - " &
添加了分隔两个值的破折号。