Delete the formula from column R and place the following code on Round One Sheet Module.
The code will place the amount in N77 into the correct cell in column R as per the date selected in cell K8.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
Dim r As Long
If Target.Column = 5 Then
If UCase(Target.Value) = "FULL-TIME" Then
Target.Offset(0, 1).Value = 2080
Target.Offset(0, 2).Value = 260
Target.Offset(0, 3).Value = 52
End If
End If
If Target.Address(0, 0) = "K8" Then
r = Application.Match(CDbl(Range("K8").Value), Range("P:P"), 0)
Range("R" & r).Value = Range("N77").Value
End If
End Sub
Is this what you are trying to achieve?
Bookmarks