To combine words starting with < and using \ , use
=IF(AND(LEFT(A1,1)="<",RIGHT(A1,1)="\"),TRUE,FALSE)
To combine words starting with < and / or using \ , use
=IF(OR(LEFT(A1,1)="<",RIGHT(A1,1)="\"),TRUE,FALSE)
Cell A1 contains the word to check. This may be the basis of your conditional formatting test. If you want to display alternate text, replace TRUE and FALSE according to your personal taste, for example. IGNORE: HIDDEN FIELD and A1 respectively.
Bathsheba
source share