Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Query not picking up all the memo detail - Help Please

Status
Not open for further replies.

101287

MIS
Apr 8, 2006
189
US
Have the following query but the LastOfLastOfSDNote_Note is not picking up all the information. Would like to be able to retrieve all the detail information that is in that memo field.

Suggestion will be greatly appreciated.


SELECT qrySubNotes.SDNote_Supplier_ID, Last(qrySubNotes.SDNote_Date) AS LastOfSDNote_Date1, Last(qrySubNotes.LastOfSDNote_Date) AS LastOfLastOfSDNote_Date, Last(qrySubNotes.LastOfSDNote_Note) AS LastOfLastOfSDNote_Note
FROM qrySubNotes
GROUP BY qrySubNotes.SDNote_Supplier_ID;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top