here i am extracting data using table extraction activity and saving to variable Extractdatatable.
my requirement is to check group “Jira-software–users” exist or not in column Group name.
if exist then say yes else say no. here it exists.
if your only requirement is to check that extracted data table contains “Jira-software–users”
Then use output data table activity to convert your extracted data table into String format.
And then simply use the if condition
StringExtracteddatatable.contains(“Jira-software–users”)
This will give you yes or no
Or let me know if your requirement is something different.
Since your variable is already Boolean, the IF can directly use the variable name. Using = True is unnecessary and sometimes leads to wrong evaluations if typed incorrectly. Just write JiraSoftwareUsersGroupExist in the IF condition.