Sign in to join the conversation:
Is there a way to take the average of the RYG colors and roll it up to an overall summary for a section and then the overall section to the overall project summary? I've included a snapshot of what I'm talking about.
Hi Frank,
Yes, it is. You'd need to decide on the rules for when it should be R,, Y or G.
What are your criteria?
Hope that helps!
Have a fantastic week!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
The end users decided an selects based on the task if it is red-at risk, green - on track, yellow in between on track and at risk. Some fields might be blank if it is not filled in but we would like to take the average of the colors and assign the overall status. I hope this makes sense.
Try something like this.
Add the formula to all parents in the status column.
=IF(AND(COUNTIF(CHILDREN(); "Green") > COUNTIF(CHILDREN(); "Yellow"); COUNTIF(CHILDREN(); "Green") > COUNTIF(CHILDREN(); "Red")); "Green"; IF(AND(COUNTIF(CHILDREN(); "Red") > COUNTIF(CHILDREN(); "Green"); COUNTIF(CHILDREN(); "Red") > COUNTIF(CHILDREN(); "Yellow")); "Red"; "Yellow"))
The same version but with the below changes for your and others convenience.
=IF(AND(COUNTIF(CHILDREN(), "Green") > COUNTIF(CHILDREN(), "Yellow"), COUNTIF(CHILDREN(), "Green") > COUNTIF(CHILDREN(), "Red")), "Green", IF(AND(COUNTIF(CHILDREN(), "Red") > COUNTIF(CHILDREN(), "Green"), COUNTIF(CHILDREN(), "Red") > COUNTIF(CHILDREN(), "Yellow")), "Red", "Yellow"))
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Would that work?
Andrée
Hello, I have a form for our team to complete each week to obtain a pulse check. I am trying to tally the responses from the team to show in a table on the dashboard, however, I cannot get it to display how I would like for it to. I want the horizontal axis to show the categories (columns) and for the vertical axis to be…
This discussion was created from comments split from: Change Permissions for Specific Items in Workspace.
Hi! I have a sheet that has two form that feed into it. This is to report on Closures due to Staffing, Weather, and Facilities. One team submits closures for Staffing and Weather, while another team only submits Facilities. When I created this set up I have it so the one team gets asked "Reason?" then they can select…