Forum Discussion
Anonymous
7 years agoNot applicable
Summarized columns value
I have a column timespent_inSeconds. Which is a Text field with a value. I have created a column Minuten (minutes) with the following Query: Minuten = VAR TimeSecs = ( IncidentTimeRegistrations[tim...
- Anonymous7 years ago
I found the solution:
i created a new column and put in the following dax formula:
Time = FORMAT((IncidentTimeRegistrations[timeSpent_inSeconds]/3600)/24; "HH:mm:ss")pointing to the timespent which is formatted as a number. This new Time Column is formatted as a time column in the notation HH:mm:ssAfter that i create a new measure based on this column with the following DAX formula:Meting = SUM(IncidentTimeRegistrations[Time])i formatted this measure as date/time with notation HH:mm. I don't need the seconds.
Anonymous
7 years agoNot applicable
Now
Ticket Number Short Description Engineer Hours Minutes
xx Blabla Me 1 95
Should be
Ticket Number Short Description Engineer Hours Minutes
xx Blabla Me 2 35
Hours and Minutes are summaries of different lines which have the same ticket number.
- Anonymous7 years agoNot applicable
I found the solution:
i created a new column and put in the following dax formula:
Time = FORMAT((IncidentTimeRegistrations[timeSpent_inSeconds]/3600)/24; "HH:mm:ss")pointing to the timespent which is formatted as a number. This new Time Column is formatted as a time column in the notation HH:mm:ssAfter that i create a new measure based on this column with the following DAX formula:Meting = SUM(IncidentTimeRegistrations[Time])i formatted this measure as date/time with notation HH:mm. I don't need the seconds.