I would like to rank a matrix by value (with corresponding name) per time period. Also, as the matrix will be a bit larger, I would like to indicate every person with a different color. That way one can easily see how each and everyone performed over time. So in the result, the background of Davis would be green for instance, Smith would be yellow and Jones red.
As an example:
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]Monday[/TD]
[TD]Tuesday[/TD]
[TD]Wednesday[/TD]
[/TR]
[TR]
[TD]Smith[/TD]
[TD]5[/TD]
[TD]9[/TD]
[TD]3[/TD]
[/TR]
[TR]
[TD]Jones[/TD]
[TD]6[/TD]
[TD]2[/TD]
[TD]8[/TD]
[/TR]
[TR]
[TD]Davis[/TD]
[TD]8[/TD]
[TD]7[/TD]
[TD]4[/TD]
[/TR]
</tbody>[/TABLE]
Desired result:
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]Monday[/TD]
[TD]Teusday[/TD]
[TD]Wednesday[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Davis
8[/TD]
[TD]Smith
9[/TD]
[TD]Jones
8[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Jones
6[/TD]
[TD]Davis
7[/TD]
[TD]Davis
4[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Smith
5[/TD]
[TD]Jones
2[/TD]
[TD]Smith
3[/TD]
[/TR]
</tbody>[/TABLE]
So far the best way for me to do this was by hand as I did above, although I would like automate this process as results may differ on a daily basis.
Also, thusfar I am not able to assign names to numbers and colors in the same (or different) cell.
I hope this is clear. I would greatly appreciate any help.
Thanks,
Floris
As an example:
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]Monday[/TD]
[TD]Tuesday[/TD]
[TD]Wednesday[/TD]
[/TR]
[TR]
[TD]Smith[/TD]
[TD]5[/TD]
[TD]9[/TD]
[TD]3[/TD]
[/TR]
[TR]
[TD]Jones[/TD]
[TD]6[/TD]
[TD]2[/TD]
[TD]8[/TD]
[/TR]
[TR]
[TD]Davis[/TD]
[TD]8[/TD]
[TD]7[/TD]
[TD]4[/TD]
[/TR]
</tbody>[/TABLE]
Desired result:
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]Monday[/TD]
[TD]Teusday[/TD]
[TD]Wednesday[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Davis
8[/TD]
[TD]Smith
9[/TD]
[TD]Jones
8[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Jones
6[/TD]
[TD]Davis
7[/TD]
[TD]Davis
4[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Smith
5[/TD]
[TD]Jones
2[/TD]
[TD]Smith
3[/TD]
[/TR]
</tbody>[/TABLE]
So far the best way for me to do this was by hand as I did above, although I would like automate this process as results may differ on a daily basis.
Also, thusfar I am not able to assign names to numbers and colors in the same (or different) cell.
I hope this is clear. I would greatly appreciate any help.
Thanks,
Floris