Forum Discussion
Anonymous
5 years agoNot applicable
Google Analytics Duration in PowerBI
Hi I've pulled some GA data and selected 'time on page' to pull into the query editor. This automatically gets assigend 'duration' as the data type in the query editor which is correct, however when...
- Anonymous5 years ago
Thanks, I ended up splitting the values out as they were 0.00:00:00 so I could work with minutes and seconds indivually by transforming them.
Thanks again for your help
Gabriel_Walkman
Continued Contributor
5 years agoI converted duration to minutes in power query. I did not have to take seconds into consideration. New custom column =
Duration.Hours( [duration] ) * 60 + Duration.Minutes( [duration] )
Anonymous
5 years agoNot applicable
Thanks, I ended up splitting the values out as they were 0.00:00:00 so I could work with minutes and seconds indivually by transforming them.
Thanks again for your help