In Power Bi, I have a table that contains Name
and TimeSpent
by user in seconds.
I want to convert total seconds spent by all users into duration format (hh:mm)
When I am getting seconds in hh:mm format for each user from database query, the values are coming up like these 12:63
etc. After importing these values into power bi, I tried to set its datatype to DateTime
format but power bi shows an error saying that it is not a valid value. If I set the datatype of the column as string
then strings dont add up.
What can be the ideal way to do it?