Forum Discussion
llyons
5 years agoFrequent Visitor
call center duration
Hello, I have Excel data type Custom Column Number h:nn:ss from a power pivot that I have imported into Power BI. The field with duration imports as ABC 123 with data showing as 12/31/1899 12:00:01 ...
llyons
5 years agoFrequent Visitor
what are the formulas to do the steps you prepose,excluding the charts
MauriceMecowe
Resolver II
5 years agoIn order to keep the right 5 characters of a column:
RIGHT(Column, 5)
This will get you the time in seconds.
Column = MINUTE(Table[date time])*60+SECOND(Table[date time])
Divide this by 60 in order to get minutes etc.