T
Tara
Hello,
I'm trying to create a formula for Z in which Z is equal to the entries of Y
multiplied together (instead of added as in the below example). I've tried
to change the word "sum" to "multiply" or "product" but without any luck!
SELECT Table5.X, Table5.Y, (SELECT sum(Y) AS Z
FROM Table5 AS Dupe
WHERE Dupe.X <= Table5.X) AS Z
FROM Table5
WITH OWNERACCESS OPTION;
Thank you for any help!
Tara
I'm trying to create a formula for Z in which Z is equal to the entries of Y
multiplied together (instead of added as in the below example). I've tried
to change the word "sum" to "multiply" or "product" but without any luck!
SELECT Table5.X, Table5.Y, (SELECT sum(Y) AS Z
FROM Table5 AS Dupe
WHERE Dupe.X <= Table5.X) AS Z
FROM Table5
WITH OWNERACCESS OPTION;
Thank you for any help!
Tara