Forum Discussion

vsinne's avatar
vsinne
Frequent Visitor
8 years ago
Solved

Merge rows contain different time values

Hello,   I have this database where all the agents are filling their time as and when they perform any task in the given ID #. This is resulting in duplication of ID# as shown below and their uniqu...
  • Anonymous's avatar
    Anonymous
    8 years ago

    Or are you trying to get the following results vsinne?

     

     

    TableName = 
    
        SUMMARIZE (
            sourceTable,
            sourceTable[ID],
            sourceTable[Agent Name],
           "Total Time", SUMX(DISTINCT(sourceTable),sourceTable[Time in Seconds] )
        )