Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要创建一个全局报表变量来获取我的第一个表的变量,然后在我的最后一个表中使用它来进行计算。
我是 BIRT 的新手,没有找到指南。
有人可以解释我该怎么做吗?
我们在大纲视图的“变量”部分初始化一个全局报表变量:
然后我们可以从报告的任何地方设置和获取它的值:
myvalue=vars["myGlobalVariable"]; vars["myGlobalVariable"]=myvalue;
请注意,我们这样声明的全局变量也可以在表达式生成器中使用,这非常方便。