DAX Function Guide
ENDOFQUARTER
Sam McKay
CEO & Founder
How does the ENDOFQUARTER work?
The ENDOFQUARTER function (DAX) returns the last date of the quarter in the current context for the specified column of dates.
ENDOFQUARTER Formula Syntax
ENDOFQUARTER(
<dates>
)
How do you use the ENDOFQUARTER?
The ENDOFQUARTER function is used to filter <Dates> into a 1-row, 1-column table that shows only the latest date, in the entire <Dates> column devoid of all filters, that is in the same year and quarter as the latest visible date in <Dates>.
Related Blog Posts
Loading
Considerations when using the ENDOFQUARTER?
- A reference to a date/time column. Only in this case a context transition applies because the column reference is replaced by CALCULATETABLE ( DISTINCT ( <Dates> ) )
- A table expression that returns a single column of date/time values.
- A Boolean expression that defines a single-column table of date/time values (when used in a CALCULATE filter argument).
Related Video Tutorials
Loading
Formula examples using the ENDOFQUARTER
=ENDOFQUARTER(DateTime[DateKey])
ENDOFQUARTER ( ‘Date'[date] )
= ENDOFQUARTER (Sales [Date])
Related Courses
Loading