Hello,
I am trying to Collect Data via email generated from a Query.
The query is based off of a single table, and a few IS NULL Criteria to weed out data not in need of updating.
Code:
SELECT tbl_Axes.AxisNumber, tbl_Axes.AxisName, tbl_Axes.LowerSoftPosition, tbl_Axes.UpperSoftPosition, tbl_Axes.AxisNumberofLines
FROM tbl_Axes
WHERE (((tbl_Axes.LowerSoftPosition) Is Null)) OR (((tbl_Axes.UpperSoftPosition) Is Null)) OR (((tbl_Axes.AxisNumberofLines) Is Null))
ORDER BY tbl_Axes.AxisNumber;
The query runs great, returning exactly the information I need (about 20 records)
But when I run the Collect Data via Email wizard, it sends an email with only 1 blank record.
What am I doing wrong?
I can run the wizard on the table with those specific fields, but it sends an email with all record, 75 of which do not need updating?
Thank you for any and all help!