I am having trouble with a VBA calculation that if a sample is recieved after 12:00 (noon), then +1 day is added to Date_received. If the sample is received before 12 (noon), then Date_Received is unchanged or the original date. The code below seems to do the first part, but not the second and I am unsure what to do. Thanks.
Code:
If Me.Test = "LR" And Me.Time_Received > #12:00:00 PM# Then
Me.Date_Received = [Date_Received] + 1
End If