I have the following that cycles through sheet tabs but I need it to skip a tab if tab is named "Debt" and then continue to cycle through remaining sheets.
If ActiveSheet.Name <> "Data" Then
Do Until ActiveSheet.Name = "Data"
How do I tell it to skip that tab but continue to reaching the "Data" tab.
If ActiveSheet.Name <> "Data" Then
Do Until ActiveSheet.Name = "Data"
How do I tell it to skip that tab but continue to reaching the "Data" tab.