-1

同じセルで 2 つの別々のカウントを行うにはどうすればよいですか?

たとえば、セルに別々のカウントからの 2 つの値を持たせたいとします。

29 - 14同じ細胞のようなもの。

4

3 に答える 3

1

You can calculate two separate counts and show them as text in the same cell. For example,

=COUNTA(D1:D100)&" - "&COUNTA(F1:F25)

enter image description here

于 2013-06-26T03:57:21.293 に答える
0

You can, but that's very weird and will probably bring troubles.

Use text concatenation.

= formula1 & " - " & formula2

Where you read formula1, use any formula you want. Where you read formula2, use any other formula you want. The & symbol joins text. So the & " - " & adds the dash separating the two values.

于 2013-06-26T03:57:31.153 に答える