DAX Function Guide

NEXTMONTH
Empty image or helper icon

Sam McKay

CEO & Founder

How does the NEXTMONTH work?
The NEXTMONTH function (DAX) returns a table that contains a column of all dates from the next month, based on the first date in the dates column in the current context.
NEXTMONTH Formula Syntax

NEXTMONTH(
     <dates>
)

How do you use the NEXTMONTH?

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 for the month of July, 2009.

Related Blog Posts

Loading

Considerations when using the NEXTMONTH?

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 NEXTMONTH

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

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

= CALCULATE ([Total Sales], NEXTMONTH(Calendar[Date]))

Related Courses

Loading