BRIOレポートからレポートベースの計算を抽出する方法は? たとえば、複数のリクエスト
このタスクを実行するために利用できるパブリック API はありますか?
クエリの処理が終了した後、非表示にするフィールドを [結果] セクションから削除するコードを入力します。例えば:
// Eliminate fields from the drill path
ActiveDocument.Sections["Results"].Columns["State"].Remove()
ActiveDocument.Sections["Results"].Columns["Date Ordered"].Remove()
5) Now select the OnPreProcess event and enter code to put the fields back into the Results
section just before processing the query. That way, any dependent computed items will be
properly refreshed. The corresponding code for the current example would be:
// Add the "hidden" fields so computed items can be recalced
ActiveDocument.Sections["Results"].Columns.Add("Date Ordered")
ActiveDocument.Sections["Results"].Columns.Add("State")
計算項目を追加/削除できるAPIを取得しましたが、計算項目の既存の列式を取得できません.列式を取得するAPIさえありますか?