Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Gents,
I used this piece of coding in a chart to alter the background colour (on expression) of a pie but all turns into black.
if(GetCurrentField(#TEST) = 'R', rgb(0,128,0),
if(GetCurrentField(#TEST) = 'A', rgb(255,255,0));
has onyone an idea how to get the right colours?
BR
M.
Hi,
Try this.
if(#TEST = 'R', rgb(0,128,0),
if(#TEST = 'A', rgb(255,255,0));
Regards,
Kaushik Solanki
Hi,
Try this.
if(#TEST = 'R', rgb(0,128,0),
if(#TEST = 'A', rgb(255,255,0));
Regards,
Kaushik Solanki
is #Test is your field name? and 'R' , 'A' are the values of the field #TEST...?
Try this
if(GetFieldSelections(#TEST) = 'R', rgb(0,128,0),
if(GetFieldSelections(#TEST) = 'A', rgb(255,255,0));
HTH
Sushil
Thx Gents!!
All working now...