Experts,
I have a table: import_excel
I have a query built off of this table: qryDuplicates_Removed (that removes duplicates)
Why would the qry truncated the field [Deliverable] whereas this same exact field in the table import_excel is not truncated?
thanks
SELECT First(Import_Excel.ID) AS OneID, Import_Excel.Deliverable, Import_Excel.Frequency, Import_Excel.[Section Referenced], Import_Excel.Timing, Import_Excel.[End or Start Date comments], Import_Excel.Agreement, Import_Excel.Comments, Import_Excel.[Area of Responsibility], Import_Excel.Description, Import_Excel.Receivor
FROM Import_Excel
GROUP BY Import_Excel.Deliverable, Import_Excel.Frequency, Import_Excel.[Section Referenced], Import_Excel.Timing, Import_Excel.[End or Start Date comments], Import_Excel.Agreement, Import_Excel.Comments, Import_Excel.[Area of Responsibility], Import_Excel.Description, Import_Excel.Receivor;