This one doesn't make sense to me....
I have the following recordsource of a report:
I get the following error:
"The field is too small to accept the amount of data you attempted to add. Try inserting or pasting less data."
My question, since when did a select query add anything to anything, and where is it trying to add data to? I have no idea where this is coming from.
Any help is appreciated.
"God is a comedian playing to an audience too afraid to laugh."
-- Francois Marie Arouet (Voltaire)
I have the following recordsource of a report:
Code:
SELECT part.partNumber, part.partDesc, part.qtyPerCrate, part.stockLvl, qrySlatNeeds.need
FROM part LEFT JOIN qrySlatNeeds ON part.partID = qrySlatNeeds.partIDNeed
WHERE (((part.partType)=21));
I get the following error:
"The field is too small to accept the amount of data you attempted to add. Try inserting or pasting less data."
My question, since when did a select query add anything to anything, and where is it trying to add data to? I have no idea where this is coming from.
Any help is appreciated.
"God is a comedian playing to an audience too afraid to laugh."
-- Francois Marie Arouet (Voltaire)