Private Sub Billing_Reconciled_Click()
If [Billing_Reconciled] = True Then
[Billing_Date] = Date
End If
If [Billing_Reconciled] = False Then
[Billing_Date] = Null
End If
End Sub
Simple code but I am having issue with other users that are being rejected when access this code. Can this be cleanned up?
Thanks
If [Billing_Reconciled] = True Then
[Billing_Date] = Date
End If
If [Billing_Reconciled] = False Then
[Billing_Date] = Null
End If
End Sub
Simple code but I am having issue with other users that are being rejected when access this code. Can this be cleanned up?
Thanks