Percentage in a Report

CoachPhil

Registered User.
Local time
Today, 11:14
Joined
Jun 24, 2008
Messages
83
I am trying to relate a calulated amount in a report as a percentage. How possible is this from a text box in a report?

CoachPhil
 
As you are "Coach" Phil I assume this has to do with sport.

Personally, I would calculate this in the query that runs the report.

Create a new field in the query tittled "PCT"
PCT: ([gameswon]/[gamesplayed])
In the report you can set the properties to Percent.
 
if the textbox is bound to an expression or something, maybe change the "format" property of the data. if it is not, issue code behind the report when it is opened to get what you need...
Code:
me.textbox = me.textbox = [B]some calculation to get a percentage[/B]
 
Thanks Gents,

I got one and am working on the others.

CoachPhil(football)
 

Users who are viewing this thread

Back
Top Bottom