Workflow Current Item Boolean does not work

﹥>﹥吖頭↗ 提交于 2019-12-06 07:02:08
jeff

I have a very long 2010 SPD workflow with tons of Boolean IF logic. The workflow worked beautifully as I was developing it, but at some point the Boolean logic stopped behaving correctly. I have no idea why.

MY SOLUTION I changed my If statements to test for the opposite condition and they all worked. So, for example if I wanted to test if a SharePoint List Yes/No variable was "Yes":

INSTEAD OF - If Current Item:YourColumn equals Yes

I USE - If Current Item:YourColumn not equals No

Everything now works as long as I can keep my head on straight as I work my way through the logic.

I faced the same issue. Assigning the field value to a variable, then using the variable in the "if" condition, worked for me. (Solution suggested in the comments)

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