P
Paul
I am trying to divide 2 columns to create a new one from the output. Both
columns are stored in two different selection queries. Is it even possible
for the division to happen? The help menu hasn't shown me anything that
proves yes or no. Here what my code looks like:
SELECT Query1.Column1 AS UniqueNumber,
[Query1.IndividualItems]/[Query2.TotalItemsByIndividual] AS NewColumn
FROM Query1, Query2
GROUP BY Query1.Column1;
columns are stored in two different selection queries. Is it even possible
for the division to happen? The help menu hasn't shown me anything that
proves yes or no. Here what my code looks like:
SELECT Query1.Column1 AS UniqueNumber,
[Query1.IndividualItems]/[Query2.TotalItemsByIndividual] AS NewColumn
FROM Query1, Query2
GROUP BY Query1.Column1;