I don't know the best way of doing this; however, here are a couple of ideas:<br><br>This formula will return Yes if the first char in A1 is a "("<br><br>=IF(LEFT("A1",1)="(","Yes","No"

<br><br>This formula will return Yes if the last char in A1 is a "("<br><br>=IF(RIGHT("A1",1)="(","Yes","No"

<br><br>The next one returns Yes if there is a "(" anywhere in A1<br><br>=IF(FIND("(",A1)>0,"Yes","No"

<br><br>Finally this one returns yes if the first and last characters of A1 are "(" and "

" respectively.<br><br>=IF(AND(LEFT(A1,1)="(",RIGHT(A1,1)="

"

,"Yes","No"

<br><br>Hope you can do something with this lot<br><br>Jonathan <p> Jonathan<br><a href=mailto:j.w.george@virginnet.co.uk>j.w.george@virginnet.co.uk</a><br><a href= > </a><br>Working with: Visual Basic 6, Access 97, Visual Interdev 6, VBScript, Active Server Pages, SQL Server 6.5, Oracle 7