Using Parenthesis in VBA

jo15765

Well-known Member
Joined
Sep 23, 2011
Messages
591
I want to run this statement in VBA (which I know is a valid statement)
Code:
''''''Begin & Finish are input boxes that are receiving values as dates...
WHERE tblnew.partName = 'Muffler' AND (tblnew.partEnteredDate Between " & Begin & " And " & Finish & ") 
And tblnew.supervisorCheck IS NOT NULL AND tblnew.OrderDate IS NOT NULL AND tblnew.Ordered IS NOT NULL"

The statement runs fine, but it doesn't return any results and if I run the query in SQL Server it returns results. That being said, I am thinking that I am missing some parenthesis around pieces of the Where clause....can someone assist?
 
That looks more like SQL than VBA to me and when I copy it into the VBE it turns that nice red colour, with a touch of green for the comment.

Is this part of other code?
 
Upvote 0
You are correct Norie, it is running SQL in VBA. I know it is a valid SQL statement in VBA I guess should have been a better way to have worded that (I know this becuase I am running the VERY similar code for about 4 different clients, and it works flawlessly on the other sites. Also, the code executes fine before I add in the WHERE clause. And yes it is part of another code, I'll give full code:
Code:
Public Sub SQLPull()
    
    Begin = Application.InputBox(Prompt:="Please Enter an Start Date.", Title:="Begin Date")
    Finish = Application.InputBox(Prompt:="Please Enter an End Date.", Title:="End Date")

varConn = "ODBC;DBQ=M:\New\"TestingDatabase.mdb;Driver={Driver do Microsoft Access (*.mdb)}"

    varSQL = "SELECT tblnew.custfirstName, tblnew.custlastName, tblnew.custaddress, tblnew.custphone, tblnew.custemail FROM tblnew WHERE tblnew.partName = 'Muffler' AND (tblnew.partEnteredDate Between " & Begin & " And " & Finish & ") And tblnew.supervisorCheck IS NOT NULL AND tblnew.OrderDate IS NOT NULL AND tblnew.Ordered IS NOT NULL"
        With ActiveSheet.QueryTables.Add(Connection:=varConn, Destination:=Range("A1"))
             .CommandText = varSQL
             .Name = "Query14456"
             .RefreshStyle = xlInsertDeleteCells
             .FieldNames = True
             .PreserveColumnInfo = True
             .PreserveFormatting = True
             .AdjustColumnWidth = True
             .PreserveColumnInfo = True
             .Refresh BackgroundQuery:=True
        End With
End Sub
 
Last edited:
Upvote 0
You aren't missing any parentheses but the dates might be in the wrong format.

I'll need to check it out in the morning.
 
Upvote 0
Hmm, you mention SQL server, but your connection string is for an access database, which are you trying to query? The syntax is different for each, SQL server requires dates passed enclosed in single quotation marks, access enclosed in hash tags. You've included norther of these in your statement.

You should also really be formatting your dates as yyyy-mm-DD since without doing this you can't be sure how the date will be interpreted.
 
Upvote 0
It's an access query. When I input the date for both of the input boxes if I run a message box, the date shows as the proper syntax (example 9/01/2012) which is exactly how I would enter it if, I was running the query in Access itself into the input box (9/01/2012).
 
Upvote 0
That's because access corrects it for you, it won't when you're doing it like this. You need to pass the dates formatted correctly a above, so in that format and if they're stored as dates wrap them in hashes
 
Upvote 0
Can I format the date in my actual SQL Statement similar to this formatting:
Code:
(tblnew.partEnteredDate Between & "#" & Begin & " & # & And & "#" & Finish & "#" & ")

Or do i have to format the date before it is ever passed to the statement in order for it to be recognized?
 
Upvote 0

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top