web-dev-qa-db-ja.com

ピボットテーブルの外部で使用するExcelピボットテーブルの行数を取得するにはどうすればよいですか?

Excelに次の形式のピボットテーブルがあります。

Country      Server   Status
Australia      AU1      1
               AU2      1
               AU3      4
New Zealand    NZ1      4
               NZ2      1
Germany        DE1      1
               DE2      4
               DE3      1

表の上に、特定の基準に一致する行数と行数を示す要約情報を追加したいと思います。例:

Number of servers:        8
Servers with status 4:    3

ピボットテーブルの行を合計または一致基準でカウントするにはどうすればよいですか? GETPIVOTDATA関数を使用して調査しましたが、解決策が見つかりませんでした( https://support.office.com/en-us/article/GETPIVOTDATA-function-8c083b99-a922-4ca0-af5e-3af55960761fを参照 )。

2
Kendall Lister

通常のCount()、Counta()、またはCountif()関数を使用できます。

enter image description here

B1 =COUNTA(B4:B2000)
B2 =COUNTIF(C4:C2000,4)
4
teylyn