Sub ExtendDataValid()
'
' Extend the Data Validation for another LRPlus rows
LRwBot = Range("B65536").End(xlUp).Row
LRPlus = LRwBot + 20 'Number of rows to add
'Arrival Time (AT)
Range(Cells(LRwBot, 2), Cells(LRPlus, 2)).Select
With Selection.Validation
.Delete
.Add Type:=xlValidateTime, AlertStyle:=xlValidAlertStop, Operator:= _
xlBetween, Formula1:="12:00:00 AM", Formula2:="11:59:00 PM"
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = ""
.InputMessage = "hh:mm{sp}AM"
.ErrorMessage = ""
.ShowInput = True
.ShowError = True
End With
Range(Cells(LRwBot, 3), Cells(LRPlus, 3)).Select
'Travel Time (TT)
With Selection.Validation
.Delete
.Add Type:=xlValidateTime, AlertStyle:=xlValidAlertStop, Operator:= _
xlBetween, Formula1:="12:00:00 AM", Formula2:="11:59:00 PM"
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = ""
.InputMessage = "hh:mm{sp}PM"
.ErrorMessage = ""
.ShowInput = True
.ShowError = True
End With
Range(Cells(LRwBot, 5), Cells(LRPlus, 5)).Select
'Doctor Time (DT)
With Selection.Validation
.Delete
.Add Type:=xlValidateTime, AlertStyle:=xlValidAlertStop, Operator:= _
xlBetween, Formula1:="12:00:00 AM", Formula2:="11:59:00 PM"
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = ""
.InputMessage = "hh:mm{sp}PM"
.ErrorMessage = ""
.ShowInput = True
.ShowError = True
End With
Range(Cells(LRwBot, 7), Cells(LRPlus, 7)).Select
'List of Doctors******
With Selection.Validation
.Delete
.Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:= _
xlBetween, Formula1:="=OFFSET($V$2,0,0,COUNTA(V:V)-1)"
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = ""
.InputMessage = "Select Doctor"
.ErrorMessage = ""
.ShowInput = True
.ShowError = True
End With
Range(Cells(LRwBot, 8), Cells(LRPlus, 8)).Select
'Days of the Week******
With Selection.Validation
.Delete
.Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:= _
xlBetween, Formula1:="=$W$2:$W$9"
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = ""
.InputMessage = "Select DAY"
.ErrorMessage = ""
.ShowInput = True
.ShowError = True
End With
Range(Cells(LRwBot, 9), Cells(LRPlus, 9)).Select
'Date***********
With Selection.Validation
.Delete
.Add Type:=xlValidateDate, AlertStyle:=xlValidAlertStop, Operator:= _
xlGreater, Formula1:="=TODAY()-30" 'Allows up to 30 days prior to current date
'xlGreater, Formula1:="=TODAY()-1" 'Only allows 1 day before current date
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = ""
.InputMessage = "Enter Date"
.ErrorMessage = ""
.ShowInput = True
.ShowError = True
End With
End Sub