Forum Discussion
henry_s
2 years agoRegular Visitor
ENDOFMONTH function not working as expected
I created a simple date table as follows: DateTable =
DATATABLE(
"Date", DATETIME, {
{"14/2/2024"},
{"15/2/2024"},
{"16/2/2024"}
}
) Then I cr...
- 2 years ago
Hi henry_s ,
You are right.
The EOMONTH is a date function that returns the last date of the month irrespective of what dates are present in the date table.
The ENDOFMONTH is a time intelligence function that returns last date in the current context which means for the month and year that corresponds to the row. You can think of it like a max function on date column for the year-month combination.
In documentation, you will find EOMONTH under date and time functions, while ENDOFMONTH in time intelligence functions. Time intelligence functions require a date table to operate to their best efficiency while date and time functions don't necessarily need that.
henry_s
2 years agoRegular Visitor
Understood thanks govindarajan_d . Makes sense now, the name is quite misleading.