Converting Decimels Numbers into Hours, Minutes, Seconds
I currently have a column that has decimel numberic values and I need to convert these values into a time format. Please note that the column containing this data is not a Date/Time column. A beastmode or and ETL transformation will work for me.
Example:
Column contains 2.25, I would like for it to display as 2:15 or 00:02:15. I will take either format.
Best Answer
-
Domo Support was able to create a beastmode to do this.
Example:
To get the Average Abandoned Time take = (SUM(`abntime`)/SUM(`abncalls`))/60.
To convert mintues and fractions of a minutes this beastmode was created
concat(floor(IFNULL(((SUM(`abntime`)/NULLIF(SUM(`abncalls`),0))/60),0)),'.',
-- 1.8 = time in min --
RIGHT(CONCAT('0', ROUND((
(IFNULL(((SUM(`abntime`)/NULLIF(SUM(`abncalls`),0))/60),0)) * 60 -- converts it to seconds
- FLOOR((IFNULL(((SUM(`abntime`)/NULLIF(SUM(`abncalls`),0))/60),0))) * 60)-- converts whole min to seconds (min + seconds) - (min)
,0)),2) -- Get rid of decimal for concat() --
)*10
Answers
-
There is a function called SEC_TO_TIME() that would probably work for you.
Are your values in minutes? Try this : SEC_TO_TIME(2.25*60) -> 00:02:15
Are your values in hours? Try this : SEC_TO_TIME(2.25*3600) -> 02:15:00
Aaron
MajorDomo @ Merit Medical
**Say "Thanks" by clicking the heart in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"2 -
Thanks for the response Aaron. I have already tried sec_to_time. All get is the column changes to a text format and a value of 1.
0 -
That's pretty strange @ShaneB.
I know you mentioned your value column is a number. Can you double check that maybe?
How are you displaying the output of the beast mode? Can you try a table and verify that the raw value is being calculated correctly? Maybe send a screenshot.
Aaron
MajorDomo @ Merit Medical
**Say "Thanks" by clicking the heart in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"0 -
Domo Support was able to create a beastmode to do this.
Example:
To get the Average Abandoned Time take = (SUM(`abntime`)/SUM(`abncalls`))/60.
To convert mintues and fractions of a minutes this beastmode was created
concat(floor(IFNULL(((SUM(`abntime`)/NULLIF(SUM(`abncalls`),0))/60),0)),'.',
-- 1.8 = time in min --
RIGHT(CONCAT('0', ROUND((
(IFNULL(((SUM(`abntime`)/NULLIF(SUM(`abncalls`),0))/60),0)) * 60 -- converts it to seconds
- FLOOR((IFNULL(((SUM(`abntime`)/NULLIF(SUM(`abncalls`),0))/60),0))) * 60)-- converts whole min to seconds (min + seconds) - (min)
,0)),2) -- Get rid of decimal for concat() --
)*10 -
@ShaneB - just wondering, was the chart type used in the card a table or some type of bar chart where Domo Support was able to create a beast mode that allowed you to show the average in real time, not a decimal/numeric format and minutes as a percentage? Thanks!
0 -
Use following formula:
CONCAT(FLOOR((round((sum((`hours worked`))),2)*60)/60),' h ', round(MOD((round((sum((`hours worked`))),2)*60),60),2),' m')
where `hours worked` is a column containing values like 1.77 hours.
Here we are converting these decimal hours into minutes and then getting output in form of 'X h Y m'.
You may change the beast mode in case your data resides in one row for each day(or time period) which would require removing sum and if you want to see ':' you may as well remove h and m and put any delimiter instead.
Thanks. Happy DOMOing
0
Categories
- All Categories
- 1.7K Product Ideas
- 1.7K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 292 Workbench
- 4 Cloud Amplifier
- 8 Federated
- 2.8K Transform
- 95 SQL DataFlows
- 605 Datasets
- 2.1K Magic ETL
- 3.7K Visualize
- 2.4K Charting
- 696 Beast Mode
- 43 App Studio
- 39 Variables
- 660 Automate
- 170 Apps
- 442 APIs & Domo Developer
- 42 Workflows
- 6 DomoAI
- 33 Predict
- 13 Jupyter Workspaces
- 20 R & Python Tiles
- 388 Distribute
- 111 Domo Everywhere
- 271 Scheduled Reports
- 6 Software Integrations
- 113 Manage
- 110 Governance & Security
- 9 Domo University
- 31 Product Releases
- Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 98 Community Announcements
- Domo Community Gallery
- 4.8K Archive