Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear All,
When i'm trying to display total time spent in hrs with a specific colour as the above chart in the image shared when greater than 8 hrs.
can any one help me to acheive this.
Could you share your sample qvw?
Hi,
try to extract the hour from your TIME field and do this:
if( Hour([time spent] > 9, yellow(), green() )
What is the measure?
Hi Tresesco,
PFA.
Try:
if(hour([Time Spent])>8,Yellow(),Green())
Thank you Tresesco.