laquer09
MIS
- Mar 14, 2003
- 10
I am trying to get the sum of multiple fields in a table. The query listed below will get the sum of each of the 2 fields (total_1 and total_2) in the query.
How can I get the sum for both columns in 1 field (e.g. sum_total)?
How can I continue to include additional fields?
SELECT Sum(Projects.[8-Est$-Pre2002]) AS total_1,
Sum(Projects.[8-2004$-OrigEst]) AS total_2
FROM Projects;
Thanks
How can I get the sum for both columns in 1 field (e.g. sum_total)?
How can I continue to include additional fields?
SELECT Sum(Projects.[8-Est$-Pre2002]) AS total_1,
Sum(Projects.[8-2004$-OrigEst]) AS total_2
FROM Projects;
Thanks