Forum Discussion

kranthi82's avatar
kranthi82
Helper I
7 years ago
Solved

Array formula

Hello, By using array formula ( {=B2-MIN(IF($A$2=$A$2:$A$51;$B$2:$B$51))}, where column A is ID and column B is date/time ), in excel I could plot values under a period of time, say 0 to 6 min  inst...
  • MFelix's avatar
    MFelix
    7 years ago

    Hi kranthi82 ,

     

    Try to use the following calculated column:

     

    Log_Dax_Based =
    'Table'[LogTime]
        - CALCULATE ( MIN ( 'Table'[LogTime] ); ALLEXCEPT ( 'Table'; 'Table'[ID] ) )

    You can also do it based on a query editor, check the PBIX file with both options.

     

    I also got a Logs Excel column so you can compared it with the results.

     

    Regards,

    MFelix