|
| | |
| | |
| Activate by VBA Code Name | | |
| Activate by Index Position | | |
| | ActiveSheet.Next.Activate |
| | |
| | |
| | |
|
| | ActiveSheet.Name = “NewName” |
| | |
| | Sheets.Add.Name = “NewSheet” |
| | |
|
| | Sheets(“Sheet1”).Copy Before:=Sheets(“Sheet2”) |
| | Sheets(“Sheet1”).visible = False |
|
| Sheets(“Sheet1”).visible = xlSheetHidden |
| | Sheets(“Sheet1”).Visible = True |
|
| Sheets(“Sheet1”).Visible = xlSheetVisible |
| | Sheets(“Sheet1”).Visible = xlSheetVeryHidden |
| | |
| | Sheets(“Sheet1”).Cells.Clear |
| | Sheets(“Sheet1”).Unprotect |
| | Sheets(“Sheet1”).Unprotect “Password” |
| | |
| | Sheets(“Sheet1”).Protect “Password” |
| Protect but Allow VBA Access | | Sheets(“Sheet1”).Protect UserInterfaceOnly:=True |