|
|
|
|
|
by anakic
1245 days ago
|
|
Thanks for trying it and replying back here. It looks like I was using a pre-release version of QueryStorm while I was writing the blog post. I just released that version so if you restart Excel you should get an "Update available" button in the QueryStorm ribbon in Excel. Could you update and post back if that fixed the problem? Another way of "fixing" it would be to replace the following line: (excel.Selection as Range).WriteTable(files, "myNewTable");
with this line: Write(files, "myNewTable");
The Write method is available globally (it's not a method that belongs to a class). This is a trick specific to C# scripts (would be illegal in regular C#).The documentation does lack detail in some areas, which I basically cover by answering questions via email. I do need to invest time every so often to update and extend it. |
|