Issues created out of office hours

@pbenati

It must be the same timezone as provided in eazyBI import options page > Time zone section:
https://docs.eazybi.com/eazybi/data-import/data-from-jira#DatafromJira-Timedimension

And here you can find how to change the cell color:
https://docs.eazybi.com/eazybi/analyze-and-visualize/create-reports/conditional-cell-formatting

Martins / eazyBI

Martins,

Thanks! I appreciate all of you assistance via this thread!! Here’s my output…

1 Like

How should I change the Code to get only Tickets created between 7:30 am and 8:00 am `?

I set the Filter of last 60 days and need to know how many issues was created in this time period from 7:30am to 8:00am

Hi @steinerw

You could try asking such questions to MDX formula asssitant.

Try this code:

NonZero(
  Count(
    Filter(
      Descendants([Issue].CurrentMember, [Issue].[Issue]),
      DateInPeriod(
        [Issue].CurrentMember.Get('Created at'),
        [Time].CurrentHierarchyMember
      )
      AND
      (
        (
          Hour(DateParse([Issue].CurrentMember.Get('Created at'))) = 7
          AND Minute(DateParse([Issue].CurrentMember.Get('Created at'))) >= 30
        )
        OR
        (
          Hour(DateParse([Issue].CurrentMember.Get('Created at'))) = 8
          AND Minute(DateParse([Issue].CurrentMember.Get('Created at'))) = 0
        )
      )
      AND
      [Measures].[Issues created] > 0
    )
  )
)

Martins