DAX Function Guide
NEXTMONTH
Sam McKay
CEO & Founder
How does the NEXTMONTH work?
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