Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub nextSheet()
For i = 1 To Sheets.Count - 1
If Sheets(i).CodeName = ActiveSheet.CodeName Then
Sheets(i + 1).Activate
Exit For
End If
Next
End Sub
Sub nextSheet()
If ActiveSheet.Index = Sheets.Count Then Exit Sub
Sheets(ActiveSheet.Index + 1).Activate
End Sub
For Each ws In ActiveWorkbook.WorkSheets
' ws is sheet object, to be used in processing
' processing code here
Next