G
grant2684
Hi,
I have a main form with a "status" field. On the after update procedure, i
would like an auto populated note adding to the next record in a tabular form
(subform) - see below.
I have started the code, but this only populates the first record in the
subform. I have tried adding the FindNext command but it doesn't seem to work?
I have started the code as follows:
Private Sub Status_Change()
If [Status] = "New" Then [NotesForm]![Notes] = "New case added"
If [Status] = "Completed" Then [NotesForm]![Notes] = "Case completed"
If [Status] = "Pending" Then [NotesForm]![Notes] = "Case pending"
End Sub
Any help would be much appreciated.
Kind regards,
Grant
I have a main form with a "status" field. On the after update procedure, i
would like an auto populated note adding to the next record in a tabular form
(subform) - see below.
I have started the code, but this only populates the first record in the
subform. I have tried adding the FindNext command but it doesn't seem to work?
I have started the code as follows:
Private Sub Status_Change()
If [Status] = "New" Then [NotesForm]![Notes] = "New case added"
If [Status] = "Completed" Then [NotesForm]![Notes] = "Case completed"
If [Status] = "Pending" Then [NotesForm]![Notes] = "Case pending"
End Sub
Any help would be much appreciated.
Kind regards,
Grant