Ok, back again. MS Access rug sizes are input as 10.1 x 13.5<br>etc. 45 rugs right now and 44 are different sizes (why the customer has some as 10.1 and 10.11 is a mystery). I got it to where it would search for the width of a rug, such as searching for 10 wide turns up all rugs that begin with 10 <br><br> <cfquery Datasource="donoghue1" Name="rugsize"><br>Select rug.itemno, rug.type, rug.description, rug.size, rug.price, rug.id, photo1, photo2<br>From rug<br> Where rug.size LIKE '#rugsize#%'<br></cfquery><br><br>but I would like it to search for 10 x 13 regardless what is after the decimal point in the database.<br>Since there are only 45 rugs at this time I can go in and eliminate the spaces before and after the x if that is a problem.<br>Any suggestions?<br>Kim