Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a bar chart where the dimension is 'ENPS' (a number scale form 0-10) and two measures which count the number scores for this week and for last week;
count(if(weekstart(today()-1)=weekstart(Feedback_Day_Start),ENPS)) for 'this week'
count(if(weekstart(today()-8)=weekstart(Feedback_Day_Start),ENPS)) for 'last week'
Does anyone have an expression that would enable me to change the colours of the two bars.
I thought if(weekstart(today()-1)=weekstart(Feedback_Day_Start),rgb(10,174,255)) would colour the 'this week' bar and leave the other grey but it didnt work,
Thanks
Create ur 2 measures as master measures; and there u can assign a color to each measure.
In ur chart, use the newly created master measure and they'll be colored the way u want them to be
May be omarbensalem can help here
Create ur 2 measures as master measures; and there u can assign a color to each measure.
In ur chart, use the newly created master measure and they'll be colored the way u want them to be
Thank you both. This works well