My bad again,
Sub Move_Date()
'Moves current inspection date and ratings
'to previous inspection date and rating columns
'Class 1
Dim NewInsp_1 As Range
Dim NewRating_1 As Range
Dim NewSent_1 As Range
Dim NewType_1 As Range
Dim NewAgency_1 As Range
Dim myCell_1a As Range
Dim myCell_1b As Range
Dim myCell_1c As Range
Set NewInsp_1 = Range("Current_Date1")
Set NewRating_1 = Range("Current_Rating1")
Set NewSent_1 = Range("Current_Report1")
Set NewType_1 = Range("Type1")
Set NewAgency_1 = Range("Inspector")
For Each myCell_1a In NewInsp_1.Cells
If myCell_1a.Value <> "" Then
myCell_1a.Copy myCell_1a.Offset(, -2)
myCell_1a.ClearContents
End If
Next myCell_1a
For Each myCell_1b In NewRating_1.Cells
If myCell_1b.Value <> "" Then
myCell_1b.Copy myCell_1b.Offset(, -3)
myCell_1b.ClearContents
End If
Next myCell_1b
For Each myCell_1c In NewSent_1.Cells
If myCell_1c.Value <> "" Then
myCell_1c.ClearContents
End If
Next myCell_1c
For Each myCell_1c In NewType_1.Cells
If myCell_1c.Value <> "" Then
myCell_1c.ClearContents
End If
Next myCell_1c
For Each myCell_1c In NewAgency_1.Cells
If myCell_1c.Value <> "" Then
myCell_1c.ClearContents
End If
Next myCell_1c
'Removes vailidation when moving new dates
Range("I:I").Select
With Selection.Validation
.Delete
.Add Type:=xlValidateInputOnly, AlertStyle:=xlValidAlertStop,
Operator _
:=xlBetween
.IgnoreBlank = True
.InCellDropdown = True
.ShowInput = True
.ShowError = True
End With
'reset drop down lists
Range("Current_Rating1").Select
With Selection.Validation
.Delete
.Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:= _
xlBetween, Formula1:="Condition_Rating"
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = ""
.InputMessage = ""
.ErrorMessage = ""
.ShowInput = True
.ShowError = True
End With
End Sub