G
Guest
I have created a query with a running sum that reurns a null value for the
sum. I have narrowed the problem down to the alphanumberic part number
compare for the field "part". I have changed the table to include only
numeric values in the field "part" and changed the attribute from 'text' to
'integer' and the query works fine. Unfortunately, I have aphanumeric parts
in the full table. What is the problem with the comparison using text fields?
SELECT Table2.item, Table2.part, Table2.Change,
DSum("Change","Table2","[item] = '" & [Item] & " ' and part<= ' " & [part] &
" ' ") AS InvLvl
FROM Table2;
sum. I have narrowed the problem down to the alphanumberic part number
compare for the field "part". I have changed the table to include only
numeric values in the field "part" and changed the attribute from 'text' to
'integer' and the query works fine. Unfortunately, I have aphanumeric parts
in the full table. What is the problem with the comparison using text fields?
SELECT Table2.item, Table2.part, Table2.Change,
DSum("Change","Table2","[item] = '" & [Item] & " ' and part<= ' " & [part] &
" ' ") AS InvLvl
FROM Table2;