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.
如图所示,我在 SAP Webi 中有一个包含 3 列的表。
在“每周平均值”列中,我想动态计算“计数”列的每周平均值(从周一到周日)。
可以用变量来做吗?如果没有,有什么建议如何用其他方法做到这一点?
谢谢。
是的,这是可以做到的。两个步骤:首先创建一个变量来定义每周的单个值,然后另一个返回这些值的平均值。
对于第 1 步,使用以下定义创建一个新变量(“日期周”):
=LastDayOfWeek([Date])
然后,在报告块(您的“每周平均值”列所在的位置)中,创建以下公式:
=Average([Count]) in ([Date Week])
这应该会产生您想要的结果。