Hello -
A quick overview: I have a Table1 which reports on accounts that had a varrience. I have a Table2 which reports on accounts that managed their account online.
I want to add a column to Table1 called eCommerce, and if they exist in Table2, put "Online" in that field in Table1.
Table1 is created through a long process they don't want to change, Table2 I created through a query. Then both have acct. #s to match on.
I did one small change and added: DoCmd.RunSQL "ALTER TABLE Table1 ADD eCommerce STRING" to at least create the column, which now comes up blank.
But - how do I populate that field if it exists in Table2? Note that Table1 & Table2 can have some matching records or no matching records.
Thanks!!!
A quick overview: I have a Table1 which reports on accounts that had a varrience. I have a Table2 which reports on accounts that managed their account online.
I want to add a column to Table1 called eCommerce, and if they exist in Table2, put "Online" in that field in Table1.
Table1 is created through a long process they don't want to change, Table2 I created through a query. Then both have acct. #s to match on.
I did one small change and added: DoCmd.RunSQL "ALTER TABLE Table1 ADD eCommerce STRING" to at least create the column, which now comes up blank.
But - how do I populate that field if it exists in Table2? Note that Table1 & Table2 can have some matching records or no matching records.
Thanks!!!