HI Team,
I am trying to calculate the Hours spent in different ranges like <1hr,>=2h and <=8h etc.
But i am not able to find how to write ranges in new calculated measures.
Can you
please help me here?
Hi,
In this case, you could use eazyBI advanced settings to define a new calculated custom field using Javascript.
Then you could import this field as a separate dimension and use it in your reports.
Try this Javascript:
[jira.customfield_hsgr] name = "Hours spent interval" data_type = "decimal" scale = 4 dimension = true javascript_code = ''' var timesp = issue.fields.timespent if (timesp){ issue.fields.customfield_hsgr = timesp } ''' time_unit = "seconds" time_interval = "duration" intervals = "1,2,8" interval_unit = "hours"
Martins / eazyBI team.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.