syntax?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have two columns in a report that I need to divide the results. I have a
column named New and it is summed up at the bottom of the column. The other
column is called Days Worked. It is also summed up at the bottom. What would
be the expression to divide the cum of new and the sum of the days worked?
 
=[sumoffield1]/[sumoffield2]

I think that that's what Wayne meant but he 'summed' it up again.

hth
 
I am assuming that the totals are in a footer. Create a textbox in the
footer and set it's controlsource to:

= Sum([New]) / Sum([Days Worked])

If your control names are different, make the appropriate substitutions.
 
ooops

ok - I promised last year but this year I "will" make a new year resolution
to read posts more carefully.

Drock-13 ignor my "sum" and use Maurice's "division"


--
Wayne
Manchester, England.



Maurice said:
=[sumoffield1]/[sumoffield2]

I think that that's what Wayne meant but he 'summed' it up again.

hth
--
Maurice Ausum


smeldawg said:
I have two columns in a report that I need to divide the results. I have a
column named New and it is summed up at the bottom of the column. The other
column is called Days Worked. It is also summed up at the bottom. What would
be the expression to divide the cum of new and the sum of the days worked?
 
Thanks for the help!
--
Drock-13


Arvin Meyer said:
I am assuming that the totals are in a footer. Create a textbox in the
footer and set it's controlsource to:

= Sum([New]) / Sum([Days Worked])

If your control names are different, make the appropriate substitutions.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com


smeldawg said:
I have two columns in a report that I need to divide the results. I have a
column named New and it is summed up at the bottom of the column. The
other
column is called Days Worked. It is also summed up at the bottom. What
would
be the expression to divide the cum of new and the sum of the days worked?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Excel Sumproduct 0
Percentage question 8
Creating a chart on a report 2
Sum Hours over 24 hours in Access Report 0
Expression in query 2
Averages 6
Multiple SUM's in a column 15
Expression in query 2

Back
Top