Hi all,
I have a single table database.
The main form links to a subform.
Both forms only display data from the table "main".
I have a "Button" on each line of the continous subform which when clicked should set the [main].[group]=[main].[id].
This update should occur for the single record ONLY and not the entire table.
There is a unique index on the table [ID].
So have do I finish the syntax below..??
DoCmd.RunSQL "update main set [main].[group]= [main].[File_bar] where ..... "
I have a single table database.
The main form links to a subform.
Both forms only display data from the table "main".
I have a "Button" on each line of the continous subform which when clicked should set the [main].[group]=[main].[id].
This update should occur for the single record ONLY and not the entire table.
There is a unique index on the table [ID].
So have do I finish the syntax below..??
DoCmd.RunSQL "update main set [main].[group]= [main].[File_bar] where ..... "