Forum Discussion

shamim20's avatar
shamim20
New Member
6 years ago
Solved

Calculated column based on two other column

Hello altruists,  Need some help here. I have 3 columns of data with millions of rows ( File, record and Time). Each file may have multiple records. Would like to create 4 new columns calculating t...
  • parry2k's avatar
    6 years ago

    shamim20 add four measures, here is example of 0 - 1

     

    Diff 0 to 1 = 
    VAR __filter = ALLEXCEPT ( 'Table', 'Table'[File] )
    VAR __valStart = CALCULATE ( [Sum], __filter, 'Table'[Record] = 0 )
    VAR __valEnd = CALCULATE ( [Sum], __filter, 'Table'[Record] = 1 )
    RETURN
    __valStart  - __valStart