Hello -
Im trying to calculate a total % for my employees production. I have one table (TechProduction ) that contains 2 columns (Production) and (Fails)and in my report I'd like to be able to see a percentage for total production, attached is a picture to give a better understanding. The formula I currently am using is
However it is not working.. Ideally, I'd like to just use the numbers generated from the two text boxes to the furthest left of the ones showing the formulas i've tried, the name of those boxes is (Prod)and (Text41). Those text boxes are the totals of production and fails generated from the sum of the production and fails in the report. However, everytime i have tried to do a sum(prod)\(text 41) it delivers a pop up that i manually have to enter the numbers upon running the report. Please let me know if i need to explain a bit further.
Thanks in advance,
Daniel
[IMGNOTHUMB]http://bytes.com/attachments/attachment/7779d1406223193/error.jpg[/IMGNOTHUMB]
Im trying to calculate a total % for my employees production. I have one table (TechProduction ) that contains 2 columns (Production) and (Fails)and in my report I'd like to be able to see a percentage for total production, attached is a picture to give a better understanding. The formula I currently am using is
Code:
=FORMATPERCENT(DCOUNT("[ID]","[TechProduction]","[Production]")/[Fails],2)
Thanks in advance,
Daniel
[IMGNOTHUMB]http://bytes.com/attachments/attachment/7779d1406223193/error.jpg[/IMGNOTHUMB]
Comment