I have created a workflow where the workflow waits for a single line field not NOT be empty. When this occurs the workflow should continue.
I have two columns:
- WebinarTitle - This is a single line field that is initially empty
- WebinarTitleCalc - This is a calculated field that is of type YES/NO. The calulation is
=ISBLANK([WebinarTitle])
I have an action: "Wait for WebinarTitleCalc to equal NO"
When this happens the workflow should move on. The Webinar Title is updated by an end user.
When I enter some text into WebinarTitle I expect the workflow to continue as the condition is met, but it never goes past this line.
Also, when I enter the calculation =ISBLANK([WebinarTitle]) in the SharePoint site and click save and then open the WebinarTitleCalc column again, the square brackets are always missing. So it looks like this =ISBLANK(WebinarTitle)
Do you know why these two things are happening and could the missing square brackets be the cause of the workflow never advancing?

