So I've built an add-in so I can access some of my favorite macros from the ribbon, and I'm loving it.
However, my add-in has a worksheet that contains a table I use as a dictionary of sorts.
Occasionally I need to amend my dictionary, and since add-in worksheets aren't directly visible, I copy it into the active workbook, a la
That all works great. However, when I'm done amending the dictionary, I want to copy it BACK into the add-in and save it for posterity. I wrote the following code, but it hangs up at wbSource.Sheets("CompTypesDictionary").Copy Before:=wbTarget.Sheets(1) with a Runtime error 1004 "Copy method of Worksheet class failed".
What am I doing wrong?
Thanks!
Nathaniel
Bookmarks