If cell begins with x, y, or z
To test if a cell contains x, y, or z, you can create a logical test with the OR function and use the IF function to evaluate the result. In the example shown, the formula in C5 is: =IF(OR(LEFT(B5)={"x","y","z"}),"x","") The result in cell D5 is "x" …Read more