D
DAvid Hunt
I'm trying to make a recordset so that I can run an SQL
statement on said recordset. Confused with the syntax to
use...
'********** code below ************
Dim rcdst As New ADODB.Recordset
Dim conn As New ADODB.Connection
Dim SQL as String
Set SQL = "Select * from [Data], [Charges] _
where is NULL([Data].[Grand Total])"
Set conn = New ADODB.Connection
Set rcdst = New ADODB.Recordset
Set conn = CurrentProject.Connection
rcdst.Open SQL, conn, adOpenStatic, adLockOptimistic,
adCmdTable
************
This doeesn't look at all right?
statement on said recordset. Confused with the syntax to
use...
'********** code below ************
Dim rcdst As New ADODB.Recordset
Dim conn As New ADODB.Connection
Dim SQL as String
Set SQL = "Select * from [Data], [Charges] _
where is NULL([Data].[Grand Total])"
Set conn = New ADODB.Connection
Set rcdst = New ADODB.Recordset
Set conn = CurrentProject.Connection
rcdst.Open SQL, conn, adOpenStatic, adLockOptimistic,
adCmdTable
************
This doeesn't look at all right?