Alteryx设计器IF语句问题



任何人都能看到这个IF语句有问题吗。我在Alteryx中运行时出错。

如果!isull([期初余额合计](,然后是[期初结余合计]或

如果!IsNull([期末余额合计](然后[期末余额总计]else">

endif

"or"需要是"else",您还需要另一个Endif。。。以下是这些mod,也带有缩进,以使其更加清晰:

If !IsNull([Opening Balance Total]) then
[Opening Balance Total]
else 
if !IsNull([Closing Balance Total]) then
[Closing Balance Total]
else
""
endif
endif

相关内容

  • 没有找到相关文章

最新更新