View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Angus Angus is offline
external usenet poster
 
Posts: 81
Default Use Excel to update Access tables

hmmm...

I am not quite understand. Would you elaborate more...?

Should I add:

dim strSQL as string
....etc?

"vqthomf" wrote:

Hi Angus
I use an sql string something like this by sending the record number from
column A
HTH
Charles

Sub Deactivate(RcdID As Integer)
'
strSQL = "Select Active"
strSQL = strSQL & " From " & GetFromIniFile("QueriesTables", "Data",
strIniFile)
strSQL = strSQL & " Where id=" & RcdID & ";"

cnn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source= " &
GetFromIniFile("dBPath", "dBBudget", strIniFile) & GetFromIniFile("dBNames",
"dBReviseBudget", strIniFile)
rst.Open strSQL, cnn, adOpenStatic, adLockOptimistic

On Error Resume Next
rst.Fields(0).Value = False
rst.Update
cnn.Close
Set rst = Nothing
Set cnn = Nothing
On Error GoTo 0


"Angus" wrote:

I got a query which extract data from Access table. Column A is a
auto-created key from Access table:

Column A Column B
123
124
125
126

How do I update data in column B and update the data in column B to Access
table, according to key in column A?

Thanks all.