Short of creating a datasheet form, can I directly open the table from a button using
And have it go to the last record. I tried
but that doesn't show the previous records. Even though the goal is to add new records, the comments are often the same or similar, so would like them to be visible. Reason for opening table directly was trying to keep it simple if don't need to add another form. It's not a big deal to manually go to the last record as I have been, but would be nice if the computer could do that step for me.
Code:
DoCmd.OpenTable "tblComments"
And have it go to the last record. I tried
Code:
DoCmd.OpenTable "tblComments", acViewNormal, acAdd
but that doesn't show the previous records. Even though the goal is to add new records, the comments are often the same or similar, so would like them to be visible. Reason for opening table directly was trying to keep it simple if don't need to add another form. It's not a big deal to manually go to the last record as I have been, but would be nice if the computer could do that step for me.