This code is meant to iterate over all of my sheets, but it is skipping some. Can anyone help me figure out why?
Code:
Sub BuildIntegration()
'Setup Variables
Dim NextRow As Integer
Dim intSheet As Integer
Dim WkshCount As Integer
WkshCount = ActiveWorkbook.Worksheets.Count
'Turn off screen refresh
'Application.ScreenUpdating = False
'Select first sheet of workbook
Sheet1.Select
'Unhide Cells
For intSheet = 0 To WkshCount - 1
intSheet = intSheet + 1
Sheets(intSheet).Select
Columns("K:X").Select
Selection.EntireColumn.Hidden = False
'MsgBox "continue..."
Next intSheet
Comment