web-dev-qa-db-ja.com

両方の条件が真の場合にカウントしたい論理的にANDでカウントします

2つの列があり、どちらもカテゴリ列です。お気に入り Age_groupおよびEngagement_category。そして、私はカウント番号を取得したいです。各Age_groupの各engagement_categoryの。

| Engagement_category | Age_group |
|:-------------------:|:---------:|
| Nearly Engaged      | 21-26     |
| Not Engaged         | 31-36     |
| Disengaged          | 36-41     |
| Nearly Engaged      | 21-26     |
| Engaged             | 21-26     |
| Engaged             | 26-31     |

そして出力として

| Age_group | Engaged | Nearly Engaged | Not Engagaged | Disengaged |
|:---------:|:-------:|----------------|---------------|------------|
| 21-26     | 1       |                |               |            |
| 26-31     |         |                |               |            |
| 31-36     |         |                |               |            |
| 36-41     |         |                |               |            |
| 41-46     |         |                |               |            |
| 46-51     |         |                |               |            |

あなたの時間と配慮していただきありがとうございます。

3
Maqsud Inamdar

ピボットテーブルを使用できます。

  • Age_Group-> Rows
  • Engagement_category-> Columns
  • Engagement_category-> ValuesデフォルトでCountオプションになります
  • 必要に応じてフォーマットおよび名前変更

データ

enter image description here

ピボットテーブルフィールドの設定

enter image description here

ピボットテーブル

enter image description here

1
Ron Rosenfeld

COUNTIFSを使用できます。

=COUNTIFS($A:$A,E$1,$B:$B,$D2)

enter image description here

ここで重要なのは、絶対参照/相対参照を正しく使用することです。

4
Máté Juhász