Forum Discussion
messyjesse_
8 years agoFrequent Visitor
Converting true time value into duration in seconds
Hello, I have searched for a topic closely resembling the problem I'm encountering but haven't had much luck. Background: I'm connecting to a folder of Excel workbooks and combining them. A new f...
- 8 years ago
Hi messyjesse_,
The Query Editor just detects the type of the columns. You can change the display format in the Data pane.
Best Regards,
Dale
GregPBI
3 years agoFrequent Visitor
I had that issue and I fixed it by adding a new columns like this :
duration = HOUR([Workflow_time])*3600 + MINUTE([Workflow_time])*60 + SECOND([Workflow_time])