If I understand correctly assuming you have values in a field [Num] with
values fo 2, 3, and 4 you would want a result of 2*3*4 or 24? If so, you
can create a totals query and use a calculation that uses Exp() against
the Sum() of the Log() of the Num
Exp(Sum(Log([Num])))
--
Duane Hookom
MS Access MVP
Job said:
Is it possible to do a SumProduct like function in Access?