July 18, 200718 yr Newbies 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.
July 18, 200718 yr 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)
July 19, 200718 yr Author Newbies Thanks guys it took me a while to figure it out and your comments helped greatly.
Create an account or sign in to comment