Excel VBA function that returns all data to a new sheet
How can开发者_如何学Go I create a function that will apply predefined filters etc, and then generate a new sheet with that data?
I just need the create new sheet part. Thank you.
Use a predefined template sheet and make a copy:
Dim wb as Workbook
Set wb = '... (set the workbook here where you want your new sheet to be copied)
ThisWorkbook.Sheets("NameOfYourTemplate").Copy _
after:=wb.Sheets(wb.Sheets.Count)
精彩评论