Looking at the cell, it looks like they are separated with lines. You can split cell values with the newline, so that you have a collection of all teh lines.
- Split both the cell values with Environment.Newline → 2 collection
Refer this post to split How to split text by newline code "/n"? - #6 by akila93 - Create bool isNotMatching = false
- For each item in Collection1
if(Not Collection2.contains(item)
isNotMatching = true;
If(isNotMatching )
Items not matching
else
Items matching
Cheers!