Jump to content
Server Maintenance This Week. ×

Multiple series help please!


lorivol

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

Recommended Posts

I have a project where I'd like to create chart layouts that have multiple series. I know I need to add items to the y-axis and write a calculation, but I can't figure out how to write the calculation. Here is the situation:

I have a group of applicants to a program (all applicants)

Within this, I can search for the accepted applicants (accepted)

and the applicants who were denied (denied)

There is other information about each applicant in all of their records, for example, the state they're from.

I want a bar chart where the x-axis is count of people and y-axis is their state of residence. I can do this.

The tricky part is adding more series to the chart. I want to end up with the count of all applicants by state, all accepted by state, and all denied by state, I just can't figure out how to write a calculation that will pull up only the accepted, and only the denied applicants.

I've attached an example excel chart with what I'm looking for (where A, B, and C would be the states of the applicants in this example).

Any help is much appreciated!

post-103053-0-62852200-1312303846_thumb.

Link to comment
Share on other sites

I have a group of applicants to a program

How many programs do you have?

all applicants by state, all accepted by state, and all denied by state

How is the accepted/denied status recorded? Are there any applicants that have not been accepted nor denied?

Link to comment
Share on other sites

Hello!

Just one program in this instance.

Accepted and denied applicants are in a field where they are labeled as "yes" or "no."

Currently every applicant has been set to yes or no, but during the acceptance process they are left blank until we make a decision.

Please let me know if you need more information. Thanks!

Link to comment
Share on other sites

First, I would suggest you either change the accepted/denied status field to a Number field using 1 for accepted and 0 for denied, or define a calculation field that returns such result - see also:

http://fmforums.com/forum/topic/47570-set-a-field-based-on-portal-content/page__view__findpost__p__222189

Next, define three summary fields:

• sCount = Count of ApplicantID (or any other field that cannot be empty);

• sTotalStatus = Sum of Status ("Status" being the Number field above);

• sCountStatus = Count of Status

Set the chart as follows:

X Axis: Applicants::State

Y Axis:

• Applicants::sCount

• Applicants::sTotalStatus

• GetSummary ( Applicants::sCountStatus ; Applicants::Category ) - GetSummary ( Applicants::sTotalStatus ; Applicants::Category )

Use data from: Current Found Set

Show data points for groups of record when sorted

Place the chart in a header part of a layout of the Applicants table. Before showing the chart, sort the records by State and by Status, descending.

Link to comment
Share on other sites

This topic is 4652 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.