You bet. Another thing they added a couple weeks ago was a way to "pause". You can query an object, and if it doesn't have the value you want, you can pause for X seconds, and requery it (by connecting the pause task's arrow back to the query task) and when it has the value you want, you can have the "if" test move on to the "true" steps. Sure, you can end up with an infinite loop if the thing you're querying for never changes. I haven't figured out how to mitigate that case yet. (I could potentially check the workflow.startDateTime against now() and if it's over X seconds, send an email and stop)
... View more