I am attempting to copy a linked Global Address List table to a local table with a click of a button.
I am just using some simple code to transfer like I have done in the past with regular tables but when it copies it create/converts the local table there into another linked table just like the "Global Address List" which is what I do not want.
How can I copy that GAL into a Local Table with a button?
I am just using some simple code to transfer like I have done in the past with regular tables but when it copies it create/converts the local table there into another linked table just like the "Global Address List" which is what I do not want.
How can I copy that GAL into a Local Table with a button?
Code:
DoCmd.CopyObject , "tblNames", acTable, "Global Address List"
Comment