I have a bar chart with some values and 2 dimensions. I put these 2 dimensions in a group.
Now I'd like to control the colors si I go in expression tab, click on the "+" and add a ondition for the background color.
This is the code I use to control the colors:
=if([Logo Fournisseur] = '2', RGB(215,146,93),
if([Logo Marque]='2', RGB(215,146,93),
if([Logo Fournisseur]='0',RGB(145,76,24),
if([Logo Marque]='0',RGB(145,76,24),
if([Logo Fournisseur]='1',RGB(182,109,53),
if([Logo Marque]='1',RGB(182,109,53),
))))))
It works BUT, when select the "2" value, and then I use the drill, all the values display in the drill are the color of the "2" value .(i.e. RGB(215,146,93) )
Can someone help me please? Sorry for my english, this is not my native language.