The SQL field needs to be flagged as nullable. Ensure there is no value. When you use FinalBuilder to read it, it returns a “NULL” string, but none of the string compare functions regonise it as “NULL”.
The problem with the IF Then action, is that it is comparing strings (because it evaluates variable expressions, not variables). It does do some type coersion where it can, for example if both sides are integers it will do an integer comparison. But strings in FinalBuilder don’t understand null as such. In this case you might want to resort to using a condition on a group action. Conditions are a boolean expression that determines if the action is run or skipped :
I understand the challenge, but it’s very confusing as FinalBuilder outputs NULL in the log, which I assumed would be a string matchable. Even if the Execute SQL query returned empty string for NULL, that would be a lot better.