Memo Field and Total

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 ???
 
How could you can aggregate memo's. If you do a totals query, each row would represent severals rows from the original table(correct?), from which record would the memo data come from?

Can you post a sample?

???
ken
 

Users who are viewing this thread

Back
Top Bottom