过去 4 天内有多少个 1?
I would like to count or sum how many 1's in last four days (1/1 to 1/4) for each name (A, B, C, D) in Informatica Developer. Advise please!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需创建一个EXP转换和一个新的输出端口即可。公式应该像这样 -
现在,您说的所有时间*值*值可以被删除0或1,因此添加它们将为您提供1秒的数量。
如果您在这些字段中有零,则可以使用
iif(isnull(day1),0,Day1)
逻辑时。如果您有其他数字以外的0,1,那么,您需要使用类似的特定内容
simply create an exp transformation and a new output port. Formula should be like this-
Now, you said, all the day* values can be wither 0 or 1, so adding them will give you count of 1s.
If you have null in these fields, then you can use
IIF(isnull(day1),0,day1)
logic while adding.If you have some numbers other than 0,1, then, then you need to use something specific like this