I would like to be able to run a VBA command in an Excel workbook that will open a saved, existing workbook at a specified location (Desktop\ThisBook.xlsx
).
After opening the ThisBook.xlsx
, the command will take numerical values from specified cells in the VBA workbook (A1), add them to an existing cell in ThisBook.xlsx
(something like ThisBook.xlsx A1 = ThisBook.xlsx A1 + ActiveDocument A1
) and save them where the ThisBook.xlsx data
was.
Finally, overwrite the previous save file for ThisBook.xlsx
and overwrite the new data.