DAX Function Guide

NEXTDAY
Empty image or helper icon

Sam McKay

CEO & Founder

How does the NEXTDAY 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?

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

Loading

Considerations when using the NEXTDAY?

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

Loading

Formula examples using the NEXTDAY

=CALCULATE(SUM(InternetSales_USD[SalesAmount_USD]), NEXTDAY(‘DateTime'[DateKey]))

= CALCULATE ( SUM (Sales [Sales Amount]), NEXTDAY (Sales [Date]) )

NEXT_DAY(’01-Aug-03′, ‘TUESDAY’)

Related Courses

Loading