Building an SSIS EXPRESSION to test if a variable is empty

Deepak picture Deepak · Jul 22, 2015 · Viewed 9.1k times · Source

I am building an expression in expression builder to do the following, but this gives me an error:

@User::AccountID != ''

Answer

V2k picture V2k · Jul 22, 2015

Use this

!ISNULL(@[User::AccountID])

Does it solve your problem?