0

我从spotfire开始,我有一个包含以下列的数据连接器,我想创建一个新列,指示在“LSTOR”设备中找到的对象是否在以后在“LSTOR”以外的另一个设备中找到'。

谢谢你的帮助

时间戳 设备 目的
2021 年 10 月 9 日 LSTOR 一个
2021 年 11 月 9 日 MUN3 C
2021 年 9 月 14 日 MUN3 F
2021 年 12 月 9 日 MUN3 一个
4

1 回答 1

0

I could do it for your sample dataset defining first a column LSTOR_TS as:

case  when [Equipement]='LSTOR' then Min([TimeStamp]) over ([Object]) end

then defining the target column as:

SN(case  when Max([LSTOR_TS]) over ([Object])<Max([TimeStamp]) over ([Object]) then True else False end,False)

the SN(..) being there to cater when there is no LSTOR value.

This solution would return False if there were LSTOR and another equipment on the same day.

于 2021-12-13T09:22:53.020 回答