S
Steve
I have a table that has $ totals in it by location. I am trying to divide
each separate total by the sum of the totals to get a percentage in a report
and I get the following statement.
“The expression On Open you entered as the event property setting produced
the following error: The object doesn’t contain the Automation object
‘Total’.â€
I am using this expression in my report to calc the percentage:
=Total!County_Total/Sum([Total]([County_Total]))*100
I had wanted to calc the percentage in my query where I get my totals but am
not sure how to do this.
The query reads in SQL: SELECT Fin_Asst.County, Sum(Fin_Asst.Granted) AS
County_Total INTO Total
FROM Fin_Asst
GROUP BY Fin_Asst.County;
Any ideas?
each separate total by the sum of the totals to get a percentage in a report
and I get the following statement.
“The expression On Open you entered as the event property setting produced
the following error: The object doesn’t contain the Automation object
‘Total’.â€
I am using this expression in my report to calc the percentage:
=Total!County_Total/Sum([Total]([County_Total]))*100
I had wanted to calc the percentage in my query where I get my totals but am
not sure how to do this.
The query reads in SQL: SELECT Fin_Asst.County, Sum(Fin_Asst.Granted) AS
County_Total INTO Total
FROM Fin_Asst
GROUP BY Fin_Asst.County;
Any ideas?