I have a simpel query:
select field1, sum(VBACalc(field2,field3)) as thing, field 4
from table
groupby field1,thing, field4
seems to run fine, but always mutilplies the result by 4. I have edited my database table to have only 1 record. Stil multiplies by 4. I set a stop itneh VBACalc (which takes a date field and a number, finds a number based on the date field and multiplies the 2 numbers) and it cycles through 4 times. Not sure why...
select field1, sum(VBACalc(field2,field3)) as thing, field 4
from table
groupby field1,thing, field4
seems to run fine, but always mutilplies the result by 4. I have edited my database table to have only 1 record. Stil multiplies by 4. I set a stop itneh VBACalc (which takes a date field and a number, finds a number based on the date field and multiplies the 2 numbers) and it cycles through 4 times. Not sure why...