Domo Ideas Exchange - Beast Modes - First / Last Days of the Month / Week
Problem:
How Do I calculate the start or end date of the week or month?
Solution:
Last Day of the Month:
This is fairly simple as we can use utilize the LAST_DAY
function which will return the last day of the month for the provided date.
LAST_DAY(`dt`)
First Day of the Month:
For this we can do some simple math to subtract a specific number of days. We need to get back to day one. The DAYOFMONTH
function will return the day number of the supplied date. We just need to subtract one less from the date's day number
-- Author: -- Created: -- Last Modified: -- Description: Subtract the number of days of the date (except one) to get the first of the month -- 24-(24-1) => day 24 - 23 days = day 1 DATE_SUB(`dt`, INTERVAL (DAYOFMONTH(`dt`) - 1) DAY)
Last Day of the Week:
Similar to the first day of the month we can utilize math to add a specific number of days to get to Saturday. There is a function called DAYOFWEEK
which will return a number between 1 (Sunday) and 7 (Saturday). We simply need to calculate the difference from the given date to Saturday and add that number of days.
-- Author: -- Created: -- Last Modified: -- Description: Get the last day of the week. -- This is done by getting the day of the week (1-7) and adding the number -- of days needed to equal 7 (Saturday) DATE_ADD(`dt`, INTERVAL (7- DAYOFWEEK(`dt`)) DAY)
First Day of the Week:
For the First day of the week we do the opposite of the Last Day of the Week and subtract days until we get to day 1 of the week.
-- Author: -- Created: -- Last Modified: -- Description: Get the first day of the week -- This is done by subtracting the day number (1-7) from the given date. -- 5 (Thursday) - (5-1) days => 5 - 4 = 1 (Sunday) DATE_SUB(`dt`, INTERVAL (DAYOFWEEK(`dt`) - 1) DAY)
**Did this solve your problem? Accept it as a solution!**
Comments
-
@GrantSmith What if you would like to have Monday as the first day of the week?
0 -
Hi @Derreck
You can just add a day to the date:
DATE_ADD(DATE_SUB(`dt`, INTERVAL (DAYOFWEEK(`dt`) - 1) DAY), INTERVAL 1 DAY)
End of the week:
DATE_ADD(`dt`, INTERVAL (7- DAYOFWEEK(`dt`) + 1) DAY)
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**2 -
2
-
How to get a last day of the next month?
0 -
LAST_DAY(DATE_ADD(`dt`, INTERVAL 1 MONTH))
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**1 -
Thanks Grant! This was very helpful.
0 -
Hi Grant (or anyone else who can assist),
I'm running into an issue attempting to change day of week to Monday when I do the following (per your instructions above):
- DATE_ADD(DATE_SUB(`Create Date`, INTERVAL (DAYOFWEEK(`Create Date') - 1) DAY), INTERVAL 1 DAY)
It does appear to work, but my corresponding rows don't change. It's as if I'm changing what shows for that cell to be this date, but the actual data hasn't changed. I can tell this if I also show the full date next to it, it loops in previous week's days into that current week that I'm setting it as. You can see this in the screenshot below (created date is the same data used in week start date).
Please help.
0 -
Hi
Hopefully this is helpful...
I riffed on some of the other answers provided and came up with this which works for me to create a week commencing monday field
-- Author: -- Created: -- Last Modified: -- Description: Returns the previous monday date -- Use case for creating week commencing on Monday weeks CASE WHEN DAYOFWEEK(`Date`) >= 3 THEN DATE_SUB(`Date`, INTERVAL (DAYOFWEEK(`Date`) -2) DAY) WHEN DAYOFWEEK(`Date`) = 2 THEN `Date` WHEN DAYOFWEEK(`Date`) = 1 THEN DATE_SUB(`Date`, INTERVAL 6 DAY) ELSE -1 END
1 -
Maybe I'm missing something or rules have changed in Domo since this was posted …
For first of the month, I don't think there's a need for the
date_sub
fanciness, just a simpledate
>concat
.date(
concat(
year(date_col
), '-',
month(date_col
), '-01' ) )0 -
Thanks for sharing @DHo. That is another way to get the first of the month. Either one will work, I think it’s just a matter of preference. Yours is probably more clear than how I wrote mine. I was in a more arithmetic mindset when I wrote my version. Appreciate the input!
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**0
Categories
- All Categories
- 1.8K Product Ideas
- 1.8K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 297 Workbench
- 6 Cloud Amplifier
- 8 Federated
- 2.9K Transform
- 100 SQL DataFlows
- 614 Datasets
- 2.2K Magic ETL
- 3.8K Visualize
- 2.5K Charting
- 729 Beast Mode
- 53 App Studio
- 40 Variables
- 677 Automate
- 173 Apps
- 451 APIs & Domo Developer
- 45 Workflows
- 8 DomoAI
- 34 Predict
- 14 Jupyter Workspaces
- 20 R & Python Tiles
- 394 Distribute
- 113 Domo Everywhere
- 275 Scheduled Reports
- 6 Software Integrations
- 121 Manage
- 118 Governance & Security
- Domo Community Gallery
- 32 Product Releases
- 10 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 108 Community Announcements
- 4.8K Archive