我正在尝试在Spotfire中进行计算。我在下面的表情中尝试的地方,但是它给了我不同的结果。
formula:
Sum(case when [wip]=1 then 1 else 0 end) / Sum((case when [fpassed]=1 then 1 else 0 end) * 1.0) * 0.85) + (
Sum(case when [recover]=1 then 1 else 0 end) / Sum((case when [fpassed]=1 then 1 else 0 end) * 1.0) *
(Sum(case when [fpassed]=1 then 1 else 0 end) / Sum((case when [total_input]=1 then 1 else 0 end) * 1.0))) as [PROJECTED YIELD]
VALUES:
88.73= Sum(case when [wip]=1 then 1 else 0 end) / Sum((case when [mlb_passed]=1 then 1 else 0 end) * 1.0) * 0.85) + (
Sum(case when [fg_recovery]=1 then 1 else 0 end) / Sum((case when [mlb_passed]=1 then 1 else 0 end) * 1.0)
54.03 = Sum(case when [fpassed]=1 then 1 else 0 end) / Sum((case when [total_input]=1 then 1 else 0 end) * 1.0))
47.9 should be the projected yield but the result coming from the calculation is 49.0
有人可以在这里帮助我吗?谢谢。
答案 0 :(得分:0)
这是关闭的。刚刚对公式做了一些调整,它已经起作用了。