Hi,
I would like to compare a list of values in column B against a list of values on every row in column M contained within a single comma delimited cell. There are somewhere in the region of 3000 rows so i want to avoid manually transposing a row at a time to find duplicates.
What i'm looking to do is match each of the comma delimited values in column M against the individual values on every row in column B.
For every row where all values in Column M are matched against values in column B i want a to return a TRUE value in column O. If any values are not found in column B i want to return a FALSE value in column O.
[TABLE="width: 500"]
<TBODY>[TR]
[TD]Colum B[/TD]
[TD]Column M[/TD]
[TD]Column O[/TD]
[/TR]
[TR]
[TD]Peter[/TD]
[TD]Peter, David, Claire[/TD]
[TD]FALSE[/TD]
[/TR]
[TR]
[TD]David[/TD]
[TD]Paul, Peter, David, Claire, Thomas[/TD]
[TD]TRUE[/TD]
[/TR]
[TR]
[TD]Paul[/TD]
[TD]Thomas[/TD]
[TD]FALSE[/TD]
[/TR]
[TR]
[TD]Thomas[/TD]
[TD]Thomas, Claire, Peter[/TD]
[TD]FALSE[/TD]
[/TR]
[TR]
[TD]Claire[/TD]
[TD]Peter[/TD]
[TD]FALSE[/TD]
[/TR]
</TBODY>[/TABLE]
Any help very much appreciated.
I would like to compare a list of values in column B against a list of values on every row in column M contained within a single comma delimited cell. There are somewhere in the region of 3000 rows so i want to avoid manually transposing a row at a time to find duplicates.
What i'm looking to do is match each of the comma delimited values in column M against the individual values on every row in column B.
For every row where all values in Column M are matched against values in column B i want a to return a TRUE value in column O. If any values are not found in column B i want to return a FALSE value in column O.
[TABLE="width: 500"]
<TBODY>[TR]
[TD]Colum B[/TD]
[TD]Column M[/TD]
[TD]Column O[/TD]
[/TR]
[TR]
[TD]Peter[/TD]
[TD]Peter, David, Claire[/TD]
[TD]FALSE[/TD]
[/TR]
[TR]
[TD]David[/TD]
[TD]Paul, Peter, David, Claire, Thomas[/TD]
[TD]TRUE[/TD]
[/TR]
[TR]
[TD]Paul[/TD]
[TD]Thomas[/TD]
[TD]FALSE[/TD]
[/TR]
[TR]
[TD]Thomas[/TD]
[TD]Thomas, Claire, Peter[/TD]
[TD]FALSE[/TD]
[/TR]
[TR]
[TD]Claire[/TD]
[TD]Peter[/TD]
[TD]FALSE[/TD]
[/TR]
</TBODY>[/TABLE]
Any help very much appreciated.