Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.
Hi All,
I’m using below code snippet in my flow service. The condition xyz != $null and abc != $null works only is xyz and abc fields are missing. If these field are coming with empty values then this sequence is not executed. How can we achieve both of this. Please suggest.
Thanks, Monica
Try %a%=$null || %a%=‘’ for checking null or empty. You can also use regex to check the same.
You can use the below regEx to check if the value is not null or empty.
%xyz% = /\S+/