Hi All
I have field in sharepoint list that i store these values its not a multi choice field but a single line of text
The values look like this a;b;c;d
I have split the values below
split(variables('var_splitCatEquip'),';')
and the output is this
["a","b","c","d","]
and also adding it to an array

For now i would like to compare using a condition

The top string gets the first index of the array (Also how can i dynamically loop through each values here like a for each in JavaScript?)

The above is just the values of all the arrays e.g [a;b;c;d]
But when i test the flow it is always returning false...
Not sure why?I'm probably missing something
Thanks in advance