eazyBI - Show tickets created on Sundays only

Peter Bengov
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 26, 2015

Hello,

Is there a way to pull a list of tickets from a specific day of the week? Maybe using the Date Filters?

Was thinking of having the Issues Created measure as column and days in rows.

Thanks

1 answer

1 accepted

0 votes
Answer accepted
Lauma Cīrule
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 26, 2015

Hi Peter,

Yes, you can create a Time dimension calculated member that filters the days and only returns the week end days (or any other specific day) as follows 

Aggregate(Filter(
  [Time].[Day].Members,
    [Time].CurrentMember.get('Week day name') MATCHES
    'Saturday|Sunday'
  )
)

Then this calculated member can be used on rows and you can drill into it to see exact days. Here you can also add further time filter to only show it in some time period, e.g. between 3 months ago and today. 

Please see an example report of Issues created on WeekEnd days.

Kind regards,
Lauma / support@eazybi.com 

Peter Bengov
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 28, 2015

Thanks Lauma, works fast

Suggest an answer

Log in or Sign up to answer