mwork
03-02-2008, 12:38 PM
Here is my code:
strSQL = "Select * FROM tblBuildingSize WHERE (length = '" & length & "') AND " & "(width = '" & width & "') AND " & "(height = '" & height & "');"
The values of length, width, and height will be something like 11'2". I think the quote sign(") is causing a problem but I'm not sure. Thanks to anyone that can help.
strSQL = "Select * FROM tblBuildingSize WHERE (length = '" & length & "') AND " & "(width = '" & width & "') AND " & "(height = '" & height & "');"
The values of length, width, and height will be something like 11'2". I think the quote sign(") is causing a problem but I'm not sure. Thanks to anyone that can help.