adp report sum()

  • Thread starter Thread starter Charlie
  • Start date Start date
C

Charlie

Access 2003 ADP Project

In my Access Report, I cannot use any aggregate functions, sum, avg in the
control source of textboxes unless the control source is a field from the
stored procedure linked to the form,

example, in the group footer I need this:
=Sum( [txt_Detail_Total] )
in the detail, '[txt_Detail_Total] ' exists and is simply quantity * price

I get Error messages like
"Column ???? does not exist in appropriate rowset"
or
"Aggregate Functions are only allowed on on output fields of the
recordsource"
 
you can still refer to form variables, but it can be a lil bit tricky
sometime.

i usally make functions in VBA to lookup most of the important equations
 
I though [txt_Detail_Total] was a form variable, can you post an example ?





you can still refer to form variables, but it can be a lil bit tricky
sometime.

i usally make functions in VBA to lookup most of the important equations


Charlie said:
Access 2003 ADP Project

In my Access Report, I cannot use any aggregate functions, sum, avg in the
control source of textboxes unless the control source is a field from the
stored procedure linked to the form,

example, in the group footer I need this:
=Sum( [txt_Detail_Total] )
in the detail, '[txt_Detail_Total] ' exists and is simply quantity * price

I get Error messages like
"Column ???? does not exist in appropriate rowset"
or
"Aggregate Functions are only allowed on on output fields of the
recordsource"
 
you make a function called fnFirstName

Public Function fnFirstName
fnFirstName = forms!frmHappy.txtFirstName
End function

I've found that this allows me to get around a lot of sore spots in ADP.

-hth

aaron


Charlie said:
I though [txt_Detail_Total] was a form variable, can you post an example ?





you can still refer to form variables, but it can be a lil bit tricky
sometime.

i usally make functions in VBA to lookup most of the important equations


Charlie said:
Access 2003 ADP Project

In my Access Report, I cannot use any aggregate functions, sum, avg in the
control source of textboxes unless the control source is a field from the
stored procedure linked to the form,

example, in the group footer I need this:
=Sum( [txt_Detail_Total] )
in the detail, '[txt_Detail_Total] ' exists and is simply quantity * price

I get Error messages like
"Column ???? does not exist in appropriate rowset"
or
"Aggregate Functions are only allowed on on output fields of the
recordsource"
 

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

Back
Top