Trimming and converting a Date/Time Field
Best Answer
-
You can use the HOUR function to return a value between 0 and 23 to filter on (in your case 9-17).
CASE WHEN HOUR(`Timestamp`) BETWEEN 9 AND 17 THEN 'Keep' ELSE 'Exclude' END
If you want to convert the times in a 12 hour format you can use the DATE_FORMAT function with a specific format string
DATE_FORMAT(`Timestamp`, '%Y-%m-%d %r')
%Y - 4 digit year
%m - 2 digit month
%d - 2 digit day
%r - Time, 12-hour (hh:mm:ss followed by AM or PM)
For more information on the different formatting options for the format string you can reference https://domo-support.domo.com/s/article/360043429953?language=en_US
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**2
Answers
-
You can use the HOUR function to return a value between 0 and 23 to filter on (in your case 9-17).
CASE WHEN HOUR(`Timestamp`) BETWEEN 9 AND 17 THEN 'Keep' ELSE 'Exclude' END
If you want to convert the times in a 12 hour format you can use the DATE_FORMAT function with a specific format string
DATE_FORMAT(`Timestamp`, '%Y-%m-%d %r')
%Y - 4 digit year
%m - 2 digit month
%d - 2 digit day
%r - Time, 12-hour (hh:mm:ss followed by AM or PM)
For more information on the different formatting options for the format string you can reference https://domo-support.domo.com/s/article/360043429953?language=en_US
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**2
Categories
- 10.5K All Categories
- 8 Connect
- 918 Connectors
- 250 Workbench
- 473 Transform
- 1.7K Magic ETL
- 69 SQL DataFlows
- 478 Datasets
- 209 Visualize
- 257 Beast Mode
- 2.1K Charting
- 12 Variables
- 18 Automate
- 355 APIs & Domo Developer
- 89 Apps
- 3 Workflows
- 20 Predict
- 5 Jupyter Workspaces
- 15 R & Python Tiles
- 247 Distribute
- 63 Domo Everywhere
- 243 Scheduled Reports
- 21 Manage
- 42 Governance & Security
- 183 Product Ideas
- 1.2K Ideas Exchange
- 11 Community Forums
- 27 Getting Started
- 14 Community Member Introductions
- 55 Community News
- 4.5K Archive