1: 2: 3: 4: 5: 6:
Set sht = ActiveSheet If MsgBox("Did you want to set Fatigue focus?", vbYesNo) = vbYes Then Call Value_Fatigue_Formula End If
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12:
Sub Carl() Dim shtNames, sht Dim wsname As String wsname = ActiveSheet.Name shtNames = Array("Sheet9", "Sheet11", "Sheet12") For Each sht In shtNames If sht <> wsname Then Sheets(sht).Activate Call value_Fatigue_Formula End If Next sht End Sub