Calculate OPEN CASES over time in Power BI | Part 2

Поділитися
Вставка
  • Опубліковано 29 січ 2025

КОМЕНТАРІ • 26

  • @HowtoPowerBI
    @HowtoPowerBI  4 роки тому +4

    if you try it let me know!

    • @xodrinker
      @xodrinker 3 роки тому

      Perfect, have an actual case I need this in - thanks!

  • @rachidachaib-j8n
    @rachidachaib-j8n 3 місяці тому

    Thank you sooo much the way you explain is Amazing

  • @ballofwax2586
    @ballofwax2586 4 роки тому +1

    great!!! very helpful... thanks so much. You do a great job at explaining how everything works and why.... easily one of my new favorite channels to learn with..
    I am using these two videos you made to show active subscriptions.. My next feat is to figure out the dates on which these users did not renew their subscription... or in the case of active employees.... the dates at which employees left, to see if there is a pattern.

  • @arvgdv
    @arvgdv 2 роки тому

    this was very helpful!

  • @charlieschmidt6478
    @charlieschmidt6478 2 роки тому +1

    This worked great but I am having trouble with getting slicers to interact with the visual correctly. Slicer/filter selected option does not affect the open case/active employee count. Any tips would be appreciated!

  • @yadukrishnankv5265
    @yadukrishnankv5265 2 роки тому +1

    Hi Bas, awesome video!
    I've got a question though. If I'm trying to forecast the number of employees for the next few years (I have their planned leaving date) what edits should I do to the DAX?
    With the CurrentDate as in the video, it is calculating only till today(as I have my last day in my calendar table set to today).
    But when I changed last day to dec 31 2040, the DAX is not working as expected.

  • @binilarussel
    @binilarussel 9 днів тому

    Hey Bas
    Thanks for this solution. I tried it however am struggling to get it to work for people who started in previous years. I have the month on x axis and year on legend. Any thoughts?

  • @MrScotee
    @MrScotee 3 роки тому

    Great explanation! What if i wanted to sum or avergae the total tenure of employees at each point in time? Is this possible?

  • @josefinagaccio2362
    @josefinagaccio2362 3 роки тому

    Hi! If I need for example to calculate the same but only for working days, how can I estimate that? For example open tickets for more than 30 working days

  • @jacodj5413
    @jacodj5413 Рік тому

    Hi Bas,
    Can this technique be adapted in some way to allow viewing the records (I.e. employee names) which make up the count? Thanks!

  • @agelikima4069
    @agelikima4069 Рік тому +1

    Simply explained and great job. Uppon this example would there be any way to calculate the percentile of days of open cases over time?
    thank you in advance

    • @HowtoPowerBI
      @HowtoPowerBI  Рік тому +1

      Pattern would be the same. You would need to exchange the employee count measure with the measure you want

    • @agelikima4069
      @agelikima4069 Рік тому

      @@HowtoPowerBI thank you very much :)

  • @lijunchen
    @lijunchen Рік тому

    Hello Bas, This is a great tutorial. I have racked my brains to figure out how this can be done with no success. This is the only solution I have found on youtube or elsewhere to the case for historical count of open cases by dynamically calculated tenure or age groups. But I do have a question or suggestion. I wonder instead of creating a measure for every tenure group, is it possible to create a measure for the tenure or age group and use it as a legend to create the chart of the number of active open cases across time by the dynamic age or tenure group. This will help a lot if there are more than one KPIs (active employees, their wages, sales, workload, etc) that will be displayed in the same chart using the field parameters.

  • @angelgutierrez2781
    @angelgutierrez2781 3 роки тому

    Awesome work!!!!! Would you be able to to average? Like in May there where 10 active and 5 where above 1 year. Average for may over 1 year is 50%

  • @daveschorah9174
    @daveschorah9174 3 роки тому +1

    Fantastic; adding time intelligence to my employee tracker has been the last thing that I had to accomplish and I've been tearing my hair out trying to work it out - thank you! The only thing I can't do is have the chart laid out by Qtr then year like in yours - I can only get the years 2014-2021 in the chart despite having date hierarchy in the axis field...?

    • @Westrackted
      @Westrackted Рік тому

      A bit late, but you have to turn off concatenate labels and drill all the way down.
      I assume that that's what you meant

  • @jaggyjut
    @jaggyjut 2 роки тому

    I have helpdesk data and trying to build a visual to show the open and close tickets in a given period like day, month or quarter. Im not sure how to count a ticket that was open and closed in the same day?

    • @celsodemetriojusto
      @celsodemetriojusto Рік тому

      Did you ever find out how to do this?

    • @jaggyjut
      @jaggyjut Рік тому

      @@celsodemetriojusto not yet in powerbi.

    • @adrianlock8484
      @adrianlock8484 3 місяці тому

      @@celsodemetriojusto basically just count Tickets which have same created & resolved Date. So you could use something like this for anyone else after similar
      _TurnedARoundinPeriod =
      CALCULATE (
      countrows(FACT_Faults),
      DATESBETWEEN (
      FACT_Faults[CreatedDate],
      MIN ( DIM_DateCalendar[Date] ),
      MAX ( DIM_DateCalendar[Date] )
      ),
      FORMAT (
      FACT_Faults[ResolvedDate],
      "mm,yy"
      )
      = FORMAT (
      FACT_Faults[CreatedDate],
      "mm,yy"
      )
      )

  • @lalitkaushik1812
    @lalitkaushik1812 Рік тому

    Pls share video on open tickets and close tickets on weekly basis in IT dept.

  • @conradoiiaustria5277
    @conradoiiaustria5277 3 роки тому

    Hey men, could you do a video if there is a rehire date on the same row of data

    • @HowtoPowerBI
      @HowtoPowerBI  3 роки тому +1

      wouldn't that be kinda the same thing,.. just extend the logic for the filter conditions?