masterelaichi
New Member
- Joined
- Sep 29, 2014
- Messages
- 49
Hi,
I am trying to create a traffic light kind of a report using excel. There are three different attributes based on which the performance of a project is assessed - Cost, Time, and Quality. These attributes can take one of three Status (R)ed, (A)mber, or (G)reen. What I am trying to create is a column called Overall Status which takes the status of the highest value of the other three columns i.e R>A>G
The table below is what I am trying to arrive at
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]Project[/TD]
[TD]cost[/TD]
[TD]time[/TD]
[TD]quality[/TD]
[TD]Overall Status[/TD]
[/TR]
[TR]
[TD]Project1[/TD]
[TD]A[/TD]
[TD]G[/TD]
[TD]R[/TD]
[TD]R[/TD]
[/TR]
[TR]
[TD]Project2[/TD]
[TD]G[/TD]
[TD]G[/TD]
[TD]A[/TD]
[TD]A[/TD]
[/TR]
[TR]
[TD]Project3[/TD]
[TD]R[/TD]
[TD]A[/TD]
[TD]G[/TD]
[TD]R[/TD]
[/TR]
</tbody>[/TABLE]
I tried to give a score to each value and tried using vlookup, but couldn't figure it out
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]Status[/TD]
[TD]Value[/TD]
[/TR]
[TR]
[TD]R[/TD]
[TD]1[/TD]
[/TR]
[TR]
[TD]A[/TD]
[TD]0[/TD]
[/TR]
[TR]
[TD]G[/TD]
[TD]-1[/TD]
[/TR]
</tbody>[/TABLE]
I also want to include a check to see if one of the values in the column is something other than R, A,or G and return a message if true. Eg- Overall status is Blank indicates one of the attributes has a missing value
Any help will be appreciated. Thanks!
I am trying to create a traffic light kind of a report using excel. There are three different attributes based on which the performance of a project is assessed - Cost, Time, and Quality. These attributes can take one of three Status (R)ed, (A)mber, or (G)reen. What I am trying to create is a column called Overall Status which takes the status of the highest value of the other three columns i.e R>A>G
The table below is what I am trying to arrive at
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]Project[/TD]
[TD]cost[/TD]
[TD]time[/TD]
[TD]quality[/TD]
[TD]Overall Status[/TD]
[/TR]
[TR]
[TD]Project1[/TD]
[TD]A[/TD]
[TD]G[/TD]
[TD]R[/TD]
[TD]R[/TD]
[/TR]
[TR]
[TD]Project2[/TD]
[TD]G[/TD]
[TD]G[/TD]
[TD]A[/TD]
[TD]A[/TD]
[/TR]
[TR]
[TD]Project3[/TD]
[TD]R[/TD]
[TD]A[/TD]
[TD]G[/TD]
[TD]R[/TD]
[/TR]
</tbody>[/TABLE]
I tried to give a score to each value and tried using vlookup, but couldn't figure it out
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]Status[/TD]
[TD]Value[/TD]
[/TR]
[TR]
[TD]R[/TD]
[TD]1[/TD]
[/TR]
[TR]
[TD]A[/TD]
[TD]0[/TD]
[/TR]
[TR]
[TD]G[/TD]
[TD]-1[/TD]
[/TR]
</tbody>[/TABLE]
I also want to include a check to see if one of the values in the column is something other than R, A,or G and return a message if true. Eg- Overall status is Blank indicates one of the attributes has a missing value
Any help will be appreciated. Thanks!