I have a sheet of indicators that pulls info from another sheet to process the correct indicator. I now need to set an overall status in the same row from the other indicators
Here is the sheet and it will always look like this just one row
So the second column Program needs to have a formula that looks at all the other items in the row to set the indicator,
If any of them are red the program status should be red, if any are yellow the program status should be yellow or it is green.
Since this was one row I did not thing a count function applied,
If was writing code I would say
If Schedule or Scope or Budget or .... is Red than Red
Else If Schedule or Scope or Budget or .... is Yellow than Yellow
Else Green.
Can I define this like this
If([Schedule] Or [Scope] Or..... = Red, Red, IF([Schedule] Or [Scope] Or..... = yellow, Yellow, Green))
Caroline