S
saltnsnails
I need help on a Macro..see below...the problem is at the end getting the
macro to go to the next wks. Can anyone help me out?
Sub Macro1()
'
' Macro1 Macro
' Macro recorded 8/21/2008 by Kim Gable
'
'
Range("K7:K16").Select
With Selection.Validation
.Delete
.Add Type:=xlValidateList, AlertStyle:=xlValidAlertInformation, _
Operator:=xlBetween, Formula1:="TRUE"
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = "Activity Does Not Match List"
.InputMessage = ""
.ErrorMessage = _
"This activity does not match the pre-approved activity list.
Please verify that the data was entered correctly or that the description
meets prevocational definition standards."
.ShowInput = True
.ShowError = True
Next wks
End Sub
macro to go to the next wks. Can anyone help me out?
Sub Macro1()
'
' Macro1 Macro
' Macro recorded 8/21/2008 by Kim Gable
'
'
Range("K7:K16").Select
With Selection.Validation
.Delete
.Add Type:=xlValidateList, AlertStyle:=xlValidAlertInformation, _
Operator:=xlBetween, Formula1:="TRUE"
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = "Activity Does Not Match List"
.InputMessage = ""
.ErrorMessage = _
"This activity does not match the pre-approved activity list.
Please verify that the data was entered correctly or that the description
meets prevocational definition standards."
.ShowInput = True
.ShowError = True
Next wks
End Sub