This code might get you where you need to go:
Private Sub CommandButton1_Click()
Dim wk As Workbook
Set wk = Workbooks.Add
Windows(wk.Name).Activate
With wk.Sheets("Sheet1").Range("A1:A10").Validation
.Delete
.Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:= _
xlBetween, Formula1:="WorkRequest,ProblemStudy,Recovery,Other"
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = ""
.InputMessage = ""
.ErrorMessage = ""
.ShowInput = True
.ShowError = True
End With
wk.Sheets("Sheet1").Range("A1").Select
End Sub
Bookmarks