SQL string error in excel vba

krice1974

Active Member
Joined
Jul 3, 2008
Messages
422
Hi. I'm trying to execute a SQL command to pull an access query into excel. The select query works perfectly in access, and I've pasted the SQL into the procedure below. When running it I'm getting "syntax error in FROM clause." Any ideas? Thanks in advance... Kevin

Code:
'Set the SQL string.
sSQL = "SELECT tblStocksPricingVol.Symbol, tblStocksPricingVol.PricingVolDate, tblStocksPricingVol.Volume, " & _
    "tblStocksPricingVol.HighPrice, tblStocksPricingVol.ClosePrice, [HighPrice]-[ClosePrice] AS " & _
    "DiffBetwClAndHigh, FormatPercent([DiffBetwClAndHigh]/[HighPrice]) AS PctClFromHigh FROM " & _
    "tblStocksPricingVol WHERE (((tblStocksPricingVol.PricingVolDate)=(SELECT Max(T2.PricingVolDate)" & _
    "FROM tblStocksPricingVol AS T2 WHERE T2.Symbol = tblStocksPricingVol.Symbol)) AND " & _
    "((tblStocksPricingVol.Volume)>=850000));"
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
You need a space at the end of this line...

"tblStocksPricingVol WHERE (((tblStocksPricingVol.PricingVolDate)=(SELECT Max(T2.PricingVolDate)" & _

should look like this...

"tblStocksPricingVol WHERE (((tblStocksPricingVol.PricingVolDate)=(SELECT Max(T2.PricingVolDate) " & _

Hope that helps.
 
Upvote 0
try replacing your code with this
Code:
'Set the SQL string.
sSQL = ""
sSQL = sSQL & "SELECT " & vbCrLf
sSQL = sSQL & "    t1.Symbol, " & vbCrLf 
sSQL = sSQL & "    t1.PricingVolDate, " & vbCrLf 
sSQL = sSQL & "    t1.Volume, " & vbCrLf
sSQL = sSQL & "    t1.HighPrice, " & vbCrLf 
sSQL = sSQL & "    t1.ClosePrice, " & vbCrLf 
sSQL = sSQL & "    t1.[HighPrice] - t1.[ClosePrice] AS DiffBetwClAndHigh, " & vbCrLf
sSQL = sSQL & "    (t1.[HighPrice] - t1.[ClosePrice]) / t1.[HighPrice] AS PctClFromHigh " & vbCrLf
sSQL = sSQL & "FROM " & vbCrLf
sSQL = sSQL & "    tblStocksPricingVol as t1 " & vbCrLf
sSQL = sSQL & "WHERE " & vbCrLf
sSQL = sSQL & "( " & vbCrLf
sSQL = sSQL & "    ( " & vbCrLf
sSQL = sSQL & "        t1.PricingVolDate = " & vbCrLf
sSQL = sSQL & "        ( " & vbCrLf
sSQL = sSQL & "            SELECT " & vbCrLf
sSQL = sSQL & "                Max(T2.PricingVolDate)" & vbCrLf
sSQL = sSQL & "            FROM " & vbCrLf
sSQL = sSQL & "                tblStocksPricingVol AS T2 " & vbCrLf
sSQL = sSQL & "             WHERE " & vbCrLf
sSQL = sSQL & "                 T2.Symbol = t1.Symbol " & vbCrLf
sSQL = sSQL & "        ) " & vbCrLf
sSQL = sSQL & "    ) " & vbCrLf 
sSQL = sSQL & "    AND " & vbCrLf 
sSQL = sSQL & "    ( " & vbCrLf
sSQL = sSQL & "        t1.Volume >= 850000 " & vbCrLf
sSQL = sSQL & "    ) " & vbCrLf
sSQL = sSQL & ") " & vbCrLf

debug.print sSQL

msgbox sSQL
 
Upvote 0
Same error. I very much appreciate that effort though... But, "syntax error in FROM clause" still.
 
Upvote 0
so let's try this
Code:
sSQL = sSQL & "        t1.PricingVolDate = #01/01/2009# " & vbCrLf
and take out the inner sql just to see if it works
</pre>
 
Upvote 0
Try amending your original from this:


Code:
"FROM tblStocksPricingVol AS T2 WHERE T2.Symbol = tblStocksPricingVol.Symbol)) AND " & _
to this:

Code:
"FROM tblStocksPricingVol AS T2 WHERE T2.Symbol = '" & tblStocksPricingVol.Symbol & "')) AND " & _
Denis
 
Upvote 0

Forum statistics

Threads
1,215,150
Messages
6,123,312
Members
449,094
Latest member
Chestertim

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