同じセルで 2 つの別々のカウントを行うにはどうすればよいですか?
たとえば、セルに別々のカウントからの 2 つの値を持たせたいとします。
29 - 14
同じ細胞のようなもの。
同じセルで 2 つの別々のカウントを行うにはどうすればよいですか?
たとえば、セルに別々のカウントからの 2 つの値を持たせたいとします。
29 - 14
同じ細胞のようなもの。
You can calculate two separate counts and show them as text in the same cell. For example,
=COUNTA(D1:D100)&" - "&COUNTA(F1:F25)
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.