I need to create a formula that flags whether certain text is included in a cell, but only if that text occurs by itself, not embedded as part of a larger text string -- but it's ok if it occurs by itself and also embedded in a larger string.
For example, the cell contains a list of grades such as "K, 1, 2". I need to return a TRUE if it contains 1, either by itself or along with other grades, but not if 1 only occurs within 10, 11 or 12.
Below is an example of the results I need to generate:
K, 1, 2 - TRUE
9, 10, 11 - FALSE
K, 1, 2, 10, 11 - TRUE
Thanks for your help.
-Jonathan
For example, the cell contains a list of grades such as "K, 1, 2". I need to return a TRUE if it contains 1, either by itself or along with other grades, but not if 1 only occurs within 10, 11 or 12.
Below is an example of the results I need to generate:
K, 1, 2 - TRUE
9, 10, 11 - FALSE
K, 1, 2, 10, 11 - TRUE
Thanks for your help.
-Jonathan