houstonbill
Technical User
- Nov 6, 2006
- 92
The below SQL is the qry that makes up a form.
SELECT Date()-[SubDate] AS Age, tbl_Suggestions.SuggestionID, tbl_Suggestions.BadgeId, tbl_Suggestions.Idea, tbl_Suggestions.SuggestedAction,
tblEval.AckDate, tblEval.DecisionSent, tblEval.ClosedDate, tblEval.Decision, tblEval.ImpleDate
FROM tblEval RIGHT JOIN tbl_Suggestions ON tblEval.SuggID = tbl_Suggestions.SuggestionID;
What I want to do is have an event so that when the ClosedDate field is filled in it will stop the Age Date. I believe it will be an After Update event in the ClosedDate field that would read something like this:
Private Sub Closed_Date_AfterUpdate()
If Me![ClosedDate] = True Then Me![Age] = Number
End Sub
Will this stop the age based on the calculation I have set? I could wait until tomorrow to see if the number increases but thought I would verify if this event is formatted correctly now.
SELECT Date()-[SubDate] AS Age, tbl_Suggestions.SuggestionID, tbl_Suggestions.BadgeId, tbl_Suggestions.Idea, tbl_Suggestions.SuggestedAction,
tblEval.AckDate, tblEval.DecisionSent, tblEval.ClosedDate, tblEval.Decision, tblEval.ImpleDate
FROM tblEval RIGHT JOIN tbl_Suggestions ON tblEval.SuggID = tbl_Suggestions.SuggestionID;
What I want to do is have an event so that when the ClosedDate field is filled in it will stop the Age Date. I believe it will be an After Update event in the ClosedDate field that would read something like this:
Private Sub Closed_Date_AfterUpdate()
If Me![ClosedDate] = True Then Me![Age] = Number
End Sub
Will this stop the age based on the calculation I have set? I could wait until tomorrow to see if the number increases but thought I would verify if this event is formatted correctly now.