FIND("ABC", {Comments 2}, 1) will return a 0 if ABC is not contained in {Comments 2}. If it is contained, it will return the position of the A, which will be a number higher than 0.

The "1" parameter tells it to search the whole field. If you put a higher number there, it will only search from that position on.

Steve

PS - Thanks to Leigh for teaching me this a few days ago, I haven't had a chance yet to forget it!