DOMO - Timestamp
Hello,
I have data coming in from SQL with a timestamp from previous day. So the date in the table will be current date -1. I want to separate this data into 3 different tables,
Table 1 - 7 AM to 3 PM
Table 2 - 3 Pm - 11 PM
Table 3 - 11 PM to 7 AM.
How can I add a formula in the filter for tile to filter the rows by that?
More specifically I am struggling with getting the time stamps to compare.
Below is what I was trying to do. But I get a "Operator + cannot be applied to types date and timestamp"
`Time_From_Column` BETWEEN
ADDTIME(CURRENT_DATE()-1 ,STR_TO_DATE('00:06:66','%h:%i:%s'))
AND
ADDTIME(CURRENT_DATE()-1, STR_TO_DATE('00:07:05','%h:%i:%s'))
Thanks.
Answers
-
Instead of using STR_TO_DATE just use your time string you're wanting to add to your current date
`Time_From_Column` BETWEEN ADDTIME(CURRENT_DATE() , '00:06:66') AND ADDTIME(CURRENT_DATE(), '00:07:05')
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**1 -
But I want the time portion of time stamp to be 00:00:00
Can I set that?
0 -
Another alternative is to use the HOUR function on your timestamp and put it in the corresponding bucket:
CASE WHEN HOUR(`Time_From_Column`) >= 7 AND HOUR(`Time_From_Column`) < 15 THEN '7 AM to 3 PM' WHEN HOUR(`Time_From_Column`) >= 15 AND HOUR(`Time_From_Column`) < 23 THEN '3 PM to 11 PM' ELSE '11 PM to 7 AM' END
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**1
Categories
- All Categories
- 1.9K Product Ideas
- 1.9K Ideas Exchange
- 1.6K Connect
- 1.3K Connectors
- 302 Workbench
- 6 Cloud Amplifier
- 9 Federated
- 2.9K Transform
- 104 SQL DataFlows
- 637 Datasets
- 2.2K Magic ETL
- 3.9K Visualize
- 2.5K Charting
- 762 Beast Mode
- 65 App Studio
- 42 Variables
- 704 Automate
- 182 Apps
- 458 APIs & Domo Developer
- 53 Workflows
- 11 DomoAI
- 39 Predict
- 16 Jupyter Workspaces
- 23 R & Python Tiles
- 401 Distribute
- 116 Domo Everywhere
- 277 Scheduled Reports
- 8 Software Integrations
- 133 Manage
- 130 Governance & Security
- 8 Domo Community Gallery
- 38 Product Releases
- 12 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 111 Community Announcements
- 4.8K Archive