doran_doran
Registered User.
- Local time
- Today, 05:42
- Joined
- Aug 15, 2002
- Messages
- 349
I am using a query for a report. But the query is total and memo field is not allowed in the total query.
Method1: NOT WORKING
I used left function on memo field.
Notes: Left([note],255), even if i change the 255 to 99999 it only picks up first 255 characters.
Method2: NOT WORKING
I can't even do a dlookup on my report so i can display the memo field with full length.
None is working
=DLookUp("([Note])","tblNotes","[txtNotesAutoID] = '" & [NotesAutoID] & "'")
OR
=DLookUp("([Note])","tblNotes","[txtNotesAutoID] = '" & Reports![rptPlanNotesTop10]!NotesAutoID & "'")
Anything I am missing ???
Method1: NOT WORKING
I used left function on memo field.
Notes: Left([note],255), even if i change the 255 to 99999 it only picks up first 255 characters.
Method2: NOT WORKING
I can't even do a dlookup on my report so i can display the memo field with full length.
None is working
=DLookUp("([Note])","tblNotes","[txtNotesAutoID] = '" & [NotesAutoID] & "'")
OR
=DLookUp("([Note])","tblNotes","[txtNotesAutoID] = '" & Reports![rptPlanNotesTop10]!NotesAutoID & "'")
Anything I am missing ???