I have a make-table query that generates a table called "TABLE" After the table is made, I would like to use the append method to add a field to the newly created table, called "EXTRA" that contains text. So the button code should look something like:
Button1 OnClick
docmd.runquery "MakeTABLE"
TABLE.append "EXTRA",text
end OnClick
I couldn't find anything usefull in the help section, does this sound right or am I missing something. Any help would be appreciated
Button1 OnClick
docmd.runquery "MakeTABLE"
TABLE.append "EXTRA",text
end OnClick
I couldn't find anything usefull in the help section, does this sound right or am I missing something. Any help would be appreciated