This is regarding the following VBA:
Public Sub NewSheet()
ActiveSheet.Copy after:=Worksheets(Worksheets.Count)
Worksheets(Worksheets.Count).Name = Format(Date, "m.d.yy")
Worksheets(Worksheets.Count).Range("A1") = Date
Worksheets(Worksheets.Count - 1).Visible = xlSheetHidden
End Sub
I have been using this VBA in excel to help duplicate sheets and hide sheets dynamically. But we have decided to use Google Sheets because it is more iOS friendly and it is easier to use across multiple users.
Now I am at a loss as to how to use (convert) this VBA code to Google Script. Any help would be appreciated.
_/ \ _