I was tring to modify a formula DATEADD({Start Date},13,‘days’) to find the end of the month but since months have differing amounts of days I wasn’t sure how I could do that. Bascially, I want the formula look at the start date and then output the last date in that month. So a start of 9/1/22 would equal 9/31/22, etc. Thanks in advance!
Solved
Pay schedule calculating dates
Best answer by TheTimeSavingCo
Hey @Erik_Peterson, this should do what you’re looking for I think:
DATEADD(
DATEADD(
DATETIME_PARSE(
DATETIME_FORMAT(
Date,
"01 MM YYYY"
),
"DD MM YYYY"
),
1,
'months'
),
-1,
'days'
)

Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

