How can 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)
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top