Spotfire IF Statement in Custom Expression [closed]

风流意气都作罢 提交于 2019-12-02 20:08:36

问题


If(Len([case_SPEC]> 0),[case_SPEC],[case_type])

When I tried above formula I receive an error

'>' as invalid operator

Could someone help in fixing this.


回答1:


Try this

If(Len([THROUGHPUT_SPEC]) > 0,[THROUGHPUT_SPEC],[SUB_TYPE])

You omitted the closing bracket in Len([THROUGHPUT_SPEC])



来源:https://stackoverflow.com/questions/38589178/spotfire-if-statement-in-custom-expression

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!