The Add method of the Workbooks object exhibits some behavior that’s new to me. Normally when you supply the Template argument, you get a copy of the template with a “1″ appended to the name. For instance,
Workbooks.Add "Sales.xls"
opens a workbook named Sales1. However, this code
Workbooks.Add "Sales.csv"
Opens the CSV as read-only. That’s not how I expected [...] Read More...