SkipVought
Programmer
I have a table with 4 columns. I want to add 3 additional columns and then update the values in those columns for each row in the table.
I cannot get past creating the 3 new fields...
Code:
With rsDSC
.Open "tAll_DSC_Active_Inactive", cnn, adOpenDynamic, adLockOptimistic, adCmdTable
With .Fields
If .Count = 4 Then
'add 3 columns for Category, RQ Qty and RESP
'Collection.Append Object
'fields.Append Name, Type, DefinedSize, Attrib, FieldValue
.Append "Cat", adChar
.Append "RQ_QTY", adInteger
.Append "RESP", adChar
.Update
End If
End With
End With
Skip,
Just traded in my old subtlety...
for a NUANCE!