Forum Discussion
HH:MM:SS to integer
Hi,
Need help on converting HH:MM:SS to Integer in power bi report builder.
1. using SQL Query, created Data source and Data sets in Power Bi report builder.
2. have column HH:MM:SS (01:00:00) need to convert to the decimal number as we do in excel. (example .343444)
Please le me know if you need further details,
Regards
- Anonymous5 years ago
Anonymous
What unit do you want it to display? Hours, minutes or seconds?You can just convert time to integer using sql.
How to convert hh:mm:ss to seconds in SQL Server with more than 24 hours - Stack OverflowHow to display a time span of seconds in hh:mm:ss format in Reporting Services - Stack Overflow
If you want to calculate in report builder. You will need to sum the field using split. Please refer to the split expressions in reply, just sum the hours*3600+minute*60+seconds.
Totalling HHMMSS in SSRS (microsoft.com)
Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.
2 Replies
- FowmySuper User
Anonymous
Check if this works:New Column = HOUR([TimeColumn]) + MINUTE([TimeColumn])/60 + SECOND([TimeColumn])/60/60 - AnonymousNot applicable
Anonymous
What unit do you want it to display? Hours, minutes or seconds?You can just convert time to integer using sql.
How to convert hh:mm:ss to seconds in SQL Server with more than 24 hours - Stack OverflowHow to display a time span of seconds in hh:mm:ss format in Reporting Services - Stack Overflow
If you want to calculate in report builder. You will need to sum the field using split. Please refer to the split expressions in reply, just sum the hours*3600+minute*60+seconds.
Totalling HHMMSS in SSRS (microsoft.com)
Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.