I want to check if in_str_FileAccum <> blank
I want to go then block
But data in_str_FileAccum have null
But process go to then block.

Please guide me for solve it.
I want to check if in_str_FileAccum <> blank
I want to go then block
But data in_str_FileAccum have null
But process go to then block.

Please guide me for solve it.
Hi @Stef_99
Try this condition in If:
Not String.IsNullOrEmpty(in_str_FileAccum) And Not String.IsNullOrWhiteSpace(in_str_FileAccum)
Regards
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.