This issue has been resolved elsewhere, but thanks go to plog for his help and insight.
I'm trying to run a query as a rowsource in a combo box as
If I remove 'sum()' then the box shows the first results from Field2, but as soon as I add 'sum()' it returns Field1 instead, I assume this is because Field2 returns null.
Can anyone help me with this?
I'm trying to run a query as a rowsource in a combo box as
Code:
SELECT Table.[Field1], Sum(Table.Field2) AS Total_Sum
FROM Table
WHERE (((Table.[Field3])=[Number]));
Can anyone help me with this?
Last edited: