I want to multiply all records of a single field in Access 2010.
I tried mult(Field name)
and product(field name)
to no avail.
Can anyone help me is there any function in Access to do so?
Example:
I have a table having the field S1
S1
---
557
560
563
566
569
572
575
578
581
and the output should be in another table having the field result
Result
--------
6.25E+24
Unfortunately, there is no
PRODUCT()
function in Access SQL that would allow you to doHowever, you can use VBA to "roll your own"
DProduct()
domain aggregate function, similar to the built-inDSum()
function:Testing with the sample data in your question