My code imports data and creates a table to store it in. I need to set up a relation and to do this i first need to set the primary key automatically in the code. I have been playing around with two different solutions but neither work.
The first:
DoCmd.RunSQL = CREATE INDEX ind ON [Data Conversion]([Primary Key]) With Primary
highlights INDEX and returns the error 'expected end of statement'
The Second:
Public Function Test()
Dim ind As DAO.Index
Dim tdf As DAO.TableDef
Dim db As DAO.Database
Dim rel As DAO.Relation
Dim fld As DAO.Field
'Initialize
Set db = CurrentDb()
Set tdf = db.TableDefs("Data Conversion")
Set ind = tdf.CreateIndex("Primary Key")
With ind
.Fields.Append.CreateField ("Primary Key")
.Primary = True
End With
tdf.Indexes.Append (ind)
End Function
Highlights the .fields line with the error 'invalid arguement'
I'm pretty new still to vba so i'm guessing that i've missed something obvious but any help with either (or both!) solution would be greatly appreciated.
The first:
DoCmd.RunSQL = CREATE INDEX ind ON [Data Conversion]([Primary Key]) With Primary
highlights INDEX and returns the error 'expected end of statement'
The Second:
Public Function Test()
Dim ind As DAO.Index
Dim tdf As DAO.TableDef
Dim db As DAO.Database
Dim rel As DAO.Relation
Dim fld As DAO.Field
'Initialize
Set db = CurrentDb()
Set tdf = db.TableDefs("Data Conversion")
Set ind = tdf.CreateIndex("Primary Key")
With ind
.Fields.Append.CreateField ("Primary Key")
.Primary = True
End With
tdf.Indexes.Append (ind)
End Function
Highlights the .fields line with the error 'invalid arguement'
I'm pretty new still to vba so i'm guessing that i've missed something obvious but any help with either (or both!) solution would be greatly appreciated.