如何从 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 甚至可以检索列公式