nanscombe
Registered User.
- Local time
- Today, 02:48
- Joined
- Nov 12, 2011
- Messages
- 1,081
Yes the "Note" field could have been placed in the table in this case.
However, yes there always seems to be a however from me, on other systems I have split the notes into a separate table. The ability to add notes (in memo fields) was required on several different places.
What I did was create a single entry form, accessed from a button, and pass it the PK of the parent record and a value to represent what "type" of note it was, eg "A" - note on a person, "B" - note on a transaction etc.
The form would then automatically populate a pair of non-visible fields with values that had been passed to it, as well as its own generated Primary key, as the record was saved.
When it came to reporting I used a couple of queries, based on tbl_Notes, which filtered out the type of note I was interested in at the time.
However, yes there always seems to be a however from me, on other systems I have split the notes into a separate table. The ability to add notes (in memo fields) was required on several different places.
What I did was create a single entry form, accessed from a button, and pass it the PK of the parent record and a value to represent what "type" of note it was, eg "A" - note on a person, "B" - note on a transaction etc.
The form would then automatically populate a pair of non-visible fields with values that had been passed to it, as well as its own generated Primary key, as the record was saved.
When it came to reporting I used a couple of queries, based on tbl_Notes, which filtered out the type of note I was interested in at the time.