Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

data visualization & complex dax measurements

Greetings again to all the members of the community. Again I am here requesting your appreciated help. I have the following data that represents the changes of a service ticket from a help desk. e...
  • v-yuta-msft's avatar
    7 years ago

    Hi ccastelb,

     

    For the additional question, would you please clarify more details? For exmaple, which column do you want to calculate the average value of it? What's the logic?

     

    Also, does "the days between transfers" mean that the max date intervals for each ticket and each transfer? If right, you may try measure below and check if it can meet your requirement:

     

    Interval =
    CALCULATE (
        MAX ( Table[fecha] ) - MIN ( Table[fecha] ),
        ALLEXCEPT ( Table, Table[Ticket], Table[from], Table[to] )
    )
    

    Regards,

    Jimmy Tao