ピボット テーブルで IF ステートメントを使用する数式を導出しようとしています。
目標は、存在しない値に対して IF 関数を実行することです。これまでのところ、次のものがあります。
=IF(GETPIVOTDATA("PO Outstanding Units",$A$2,"PO Horizon",0)=0,GETPIVOTDATA("PO Outstanding Units",$A$2,"PO Horizon","Past Due"),IF(GETPIVOTDATA("PO Outstanding Units",$A$2,"PO Horizon","Past Due")=0,GETPIVOTDATA("PO Outstanding Units",$A$2,"PO Horizon",0),(GETPIVOTDATA("PO Outstanding Units",$A$2,"PO Horizon",0)+GETPIVOTDATA("PO Outstanding Units",$A$2,"PO Horizon","Past Due"))/1000))
数式の目的は、IF "this pivot data" DOES NOT exist
その後"Insert true value"
、IF "this DIFFERENT pivot data" DOES NOT EXIST
その後"Insert true value"
、そして、最後の偽のステートメントは であることを確認することif both pivot data DO exist
です。
基本的に、ピボットテーブルの値が存在するかどうかを示す数式を作成するにはどうすればよいですか?