I am trying to calculate something to me put into a field called 'finalRptCycleTime_BeforeUpdate'. I want to take the 'auditEndDate' box to be subtracted from the current date and the answer to be put into the 'finalRptCycleTime' field.
Here's what I have in the finalRptCycleTime before update:
Here's what I have in the finalRptCycleTime before update:
Private Sub finalRptCycleTime_BeforeUpdate(Cancel As Integer)
Me![finalRptCycleTime].Value = Date - [auditEndDate]
End Sub
Me![finalRptCycleTime].Value = Date - [auditEndDate]
End Sub