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.
我在 TIBCO spotfire 中打开了一个数据表(1 个月的数据),我有日期、用户 ID 和缺陷率列。我想要一个计算列,它只会平均从现在开始的最后 15 天的缺陷率。
有人可以帮我写计算列公式吗?
您可以在视觉对象中使用数据限制表达式
[日期] >= dateadd('dd',-15,DateTimeNow())
对于计算列,它在 sum if 语句中
Sum(if( [Date] <= dateadd('dd',-15,DateTimeNow()), 1,null))