Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Need your help-
In the attached file i have created details tabluar chart-
I want to mark colour based on some condition-
1. If the Resolution time is greater than KPI time then mark it RED
2. if the resolution time less than KPI time then mark it green
3. NO -SLA- keept it Green
Recreate your TableBox and make a StraightTable instead: letting every field including DT2 become Dimensions and make the rest into Expressions. Then you can use the "Background Color" property of the Expression for the "Resolution Time" have an If() as expression to give the right background color:
Resolution Time is in Time Format and KPI is in which format?
How you want to compare them?
Hi Suman,
There at the Resolution expression ,Right Click on it ,
you will find text color and Back ground Color ,
Then should right the expression like this,
=if([Resolution Time]<[Network Day Solved],green(),
if([Resolution Time]>[Network Day Solved],Red(),White()))
Thanks,
Bunny
Here i have query that what should we compare 'KPI time' Means??
resolution time hh:mi:ss
kpi time-hh
Time provided to resolve the ticket
You can use below expression in BackGround color..
IF(DurationStefan > Time#(KPI_TIME,'h'), Red(), Green())
I am not able to find -Resolution expression..Please help
i .e Network Day solved right ?? !
Here you can see in the attached app of yours.
Thanks,
Bunny