excel vba, my workbook produce a new daily worksheet every day, witch it is ok, my question is, in VBA, how can refer to the new created sheet as a reference, tab name and sheet number changes everyday
thank you for your answer, but the problem is that i would like to copy to a new sheet any work order that have a follow-up status but in my code i don't know how to name the sheet that already have today date, everyday i will make a new worksheet, i need something else but not "Sheet1 as a reference where from where to copy
i was thinking something like " sheets("sheetName"). Activate"
Dim ws As Worksheet
Set ws = Sheets(Sheets.Count - 7)
Set statusCol = ws.Range("E2:E14")