Forum Discussion
vsinne
8 years agoFrequent Visitor
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...
- Anonymous8 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] ) )
Anonymous
8 years agoNot applicable
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] )
)
vsinne
8 years agoFrequent Visitor
Yes, this is the result i am expecting to yield. how can i merge those rows that has just the duplicate values? thank you so much for your help.
- Anonymous8 years agoNot applicable
vsinne, in Data view click on (1)create a New Table from the Modeling ribbon then (2)use the DAX formula I provided on my previous post.