Hello guys..
I am trying to create this VBA for our database,, I have one textbox (for date Issue resolved) and a checkbox (issue)
So basically when we receive a loan, and we can't assign them out yet, we check the checkbox to say that there's an issue with the loan, and it won't show up to the analysts queue of loans to complete. However, when we have already resolved the issue, we put an issue resolved date (textbox) to have records when it was resolved, but we still need to uncheck the checkbox for it to show up to the analyst's queue. Manually unchecking it could cause it being overlooked at and won't show up to the anaylst's queue.
I tried creating this VBA but it gives errors:
Any help is appreciated.
thanks
I am trying to create this VBA for our database,, I have one textbox (for date Issue resolved) and a checkbox (issue)
So basically when we receive a loan, and we can't assign them out yet, we check the checkbox to say that there's an issue with the loan, and it won't show up to the analysts queue of loans to complete. However, when we have already resolved the issue, we put an issue resolved date (textbox) to have records when it was resolved, but we still need to uncheck the checkbox for it to show up to the analyst's queue. Manually unchecking it could cause it being overlooked at and won't show up to the anaylst's queue.
I tried creating this VBA but it gives errors:
Code:
Private Sub DateInitialReceiptIssueResolved_AfterUpdate()
Dim a As Date
Dim b As Boolean
a = DateInitialReceiptIssueResolved
b = InitialReceiptDocumentIssue
If a Is Not Null Then
b = False
End If
End Sub
Any help is appreciated.
thanks