NEXTDAY Function (DAX)
How does the NEXTDAY function (DAX) work?
The NEXTDAY function (DAX) returns a table that contains a column of all dates from the next day, based on the first date specified in the dates column in the current context.
NEXTDAY Formula Syntax
NEXTDAY(
<dates>
)
How do you use the NEXTDAY function?
This function returns all dates from the next day to the first date in the input parameter. For example, if the first date in the dates argument refers to June 10, 2009; then this function returns all dates equal to June 11, 2009.
Related Blog Posts
Related Support Forum Posts
Comparing New vs Lost vs Steady Customers over Multiple Years – Customer Churn Examples – Advanced DAX
Prior Year 12 Month Rolling
Learning summit August 2018 – Attrition Analytics Question
Considerations when using the NEXTDAY function
The dates argument can be any of the following:
- A reference to a date/time column.
- 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.
Related Video Tutorials
Formula examples using the NEXTDAY function
=CALCULATE(SUM(InternetSales_USD[SalesAmount_USD]), NEXTDAY(‘DateTime'[DateKey]))
= CALCULATE ( SUM (Sales [Sales Amount]), NEXTDAY (Sales [Date]) )
NEXT_DAY(’01-Aug-03′, ‘TUESDAY’)