Jump to content

building a report layout calc field?


iain42

This topic is 6119 days old. Please don't post here. Open a new topic instead.

Recommended Posts

  • 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.

Link to comment
Share on other sites

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)

Link to comment
Share on other sites

This topic is 6119 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.