Newbies iain42 Posted July 18, 2007 Newbies Posted July 18, 2007 I have this report layout built for one of the Doctor's I work for but I am stuck. Most of the report fields are averages but for margin% field he wants a percentage from margin field. The margin field data is either a 0 or a 1. I thought this would be simple enough. I want a total of all the records in the database. Then add up all the 1's in the margin field. Divide the record count by total of 1's in the margin field to populate the margin% field. This sounds simple but I rarely have to do a calc of this nature and it is making me crazy. Am I making this harder than it should be? Any advice appreciated. I am still trudging through the fmpro help files.
Brian C Posted July 18, 2007 Posted July 18, 2007 The margin field data is either a 0 or a 1. I want a total of all the records in the database. Then add up all the 1's in the margin field. Divide the record count by total of 1's in the margin field to populate the margin% field. Lets assume your Table is called "Data" for the sake of this example. Create a calc field called "Rec1" that just contains a 1. In the relationships graph duplicate your Data TO and call the second TO "Data Self" create a relationship from one TO to the other using the Rec1 field. Now create a calculation field called "MarginPrcnt" containing: get(totalrecordcount) / sum(Data Self::Margin)
comment Posted July 18, 2007 Posted July 18, 2007 How about a summary field defined as average of Margin?
Newbies iain42 Posted July 19, 2007 Author Newbies Posted July 19, 2007 Thanks guys it took me a while to figure it out and your comments helped greatly.
Recommended Posts
This topic is 6338 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now