Hi guys, one question: I have a table with 8 row, each row a different value like this:
ita 85
fra 83
usa 80
ger 70
chi 55
now I would like to set the background different for ita (first, yellow), fra (second silver) and usa (third bronze). I tried with
=Switch(
Fields!bac.Value = max(Fields!bac.Value), "yellow", "white"
)
just for the first but it doesn't work. It happens nothing, every cell keep the background colour white.
Any suggestion?
Thanks a lot.