- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2024 03:48 AM
Hi All,
I am working with flow and I have an item where I have Lookup Select Box which looks like:
It has been created like that cause in variable I need values from field 'Operating system'
But now I have an issue cause I need to add in flow condition like:
If value from this variable contains XYZ then create the task, but because this variable is Lookup Select Box then I don't have operator 'contains'. There is only 'is'...
Is it some way to achieve condition which I need with 'contains'?
Thanks in advance for help
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2024 03:57 AM
@Kasia5 In this case you can define a string type flow variable inside the flow. Set this flow variable with the value of Operating system field and use contain check on it via an if block.
Here is an example.
Hope this helps.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2024 03:57 AM
@Kasia5 In this case you can define a string type flow variable inside the flow. Set this flow variable with the value of Operating system field and use contain check on it via an if block.
Here is an example.
Hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2024 04:02 AM
Hi @Kasia5 ,
For your info , list collector always returns comma seprated list of items. which with flow you cannot compare if the value exists or not.
What you can do is, use script to check using .indexOf(); to see if it finds anything in string or use for loop to iterate with all the items from list collector to see if the match is found...
☑️ Please mark responses as HELPFUL or ACCEPT SOLUTION to assist future users in finding the right solution....