Rolling Count Calculation
Hi, I am trying to get a rolling count of data over a week, 4 weeks, and 8 weeks period. This is the sql query I have in the transforms dataflow. Then in the analyzer, I would select Count of 'Rolling_Week', 'Rolling_4_Weeks', and 'Rolling_8_Weeks'. But I am getting 0 for everything, which is not accurate. Could anyone help me with this? Thank you!
SELECT *,
(SELECT `Dlvd_Dolls`
FROM `delivered_sales_location_data`
WHERE `Dlvd_Date` BETWEEN NOW() AND DATE_SUB(NOW(), INTERVAL 7 DAY)) AS Rolling_Week,
(SELECT `Dlvd_Dolls`
FROM `delivered_sales_location_data`
WHERE `Dlvd_Date` BETWEEN NOW() AND DATE_SUB(NOW(), INTERVAL 28 DAY)) AS Rolling_4_Weeks,
(SELECT `Dlvd_Dolls`
FROM `delivered_sales_location_data`
WHERE `Dlvd_Date` BETWEEN NOW() AND DATE_SUB(NOW(), INTERVAL 56 DAY)) AS Rolling_8_Weeks
FROM `delivered_sales_location_data`
Best Answer
-
Your BETWEEN statement needs to have the older date first, followed by the newer date, It should look like this, for example:
WHERE `Dlvd_Date` BETWEEN DATE_SUB(NOW(), INTERVAL 7 DAY) AND NOW()) AS Rolling_Week
**Check out my Domo Tips & Tricks Videos
**Make sure toany users posts that helped you.
**Please mark as accepted the ones who solved your issue.1
Answers
-
Your BETWEEN statement needs to have the older date first, followed by the newer date, It should look like this, for example:
WHERE `Dlvd_Date` BETWEEN DATE_SUB(NOW(), INTERVAL 7 DAY) AND NOW()) AS Rolling_Week
**Check out my Domo Tips & Tricks Videos
**Make sure toany users posts that helped you.
**Please mark as accepted the ones who solved your issue.1 -
That makes sense! Thank you so much!
0
Categories
- 10.5K All Categories
- 8 Connect
- 918 Connectors
- 250 Workbench
- 472 Transform
- 1.7K Magic ETL
- 69 SQL DataFlows
- 477 Datasets
- 202 Visualize
- 255 Beast Mode
- 2.1K Charting
- 12 Variables
- 17 Automate
- 354 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
- 181 Product Ideas
- 1.2K Ideas Exchange
- 12 Community Forums
- 27 Getting Started
- 14 Community Member Introductions
- 55 Community News
- 4.5K Archive