You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For date column input, Returns a table that contains a column of all dates from the previous year, given the last date in the `dates` column, in the current context.
9
+
For date column input, returns a table that contains a column of all dates from the previous year, based on the first date in the `dates` column, in the current context.
10
10
11
-
For calendar input, returns all dates from the previous year, based on the first date in the current context. The table contains all primary tagged columns and all time related columns
11
+
For calendar input, returns all dates from the previous year, based on the first date in the current context. The table contains all primary tagged columns and all time related columns.
12
12
13
13
## Syntax
14
14
@@ -30,7 +30,7 @@ For calendar input, a table that contains all primary tagged columns and all tim
30
30
31
31
## Remarks
32
32
33
-
- This function returns all dates from the previous year given the latest date in the input parameter. For example, if the latest date in the `dates` argument refers to the year 2009, then this function returns all dates for the year of 2008, up to the specified `year_end_date`.
33
+
- This function returns all dates from the previous year based on the first date in the input parameter. For example, if the first date in the `dates` argument refers to the year 2009, then this function returns all dates for the year of 2008, up to the specified `year_end_date`.
34
34
35
35
- The `dates` argument can be any of the following:
Copy file name to clipboardExpand all lines: query-languages/dax/time-intelligence-functions-dax.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,11 +27,11 @@ Data Analysis Expressions (DAX) includes time-intelligence functions that enable
27
27
|[ENDOFYEAR](endofyear-function-dax.md)| Returns the last date of the year in the current context for the specified column of dates. |
28
28
|[FIRSTDATE](firstdate-function-dax.md)| Returns the first date in the current context for the specified column of dates. |
29
29
|[LASTDATE](lastdate-function-dax.md)| Returns the last date in the current context for the specified column of dates. |
30
-
|[NEXTDAY](nextday-function-dax.md)| 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. |
31
-
|[NEXTWEEK](nextweek-function-dax.md)| Returns a table that contains a column of all dates from the next week, based on the first date in the dates column in the current context. |
32
-
|[NEXTMONTH](nextmonth-function-dax.md)| 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. |
33
-
|[NEXTQUARTER](nextquarter-function-dax.md)| Returns a table that contains a column of all dates in the next quarter, based on the first date specified in the dates column, in the current context. |
34
-
|[NEXTYEAR](nextyear-function-dax.md)| Returns a table that contains a column of all dates in the next year, based on the first date in the dates column, in the current context. |
30
+
|[NEXTDAY](nextday-function-dax.md)| Returns a table that contains a column of all dates from the next day, based on the last date specified in the dates column in the current context. |
31
+
|[NEXTWEEK](nextweek-function-dax.md)| Returns a table that contains a column of all dates from the next week, based on the last date in the dates column in the current context. |
32
+
|[NEXTMONTH](nextmonth-function-dax.md)| Returns a table that contains a column of all dates from the next month, based on the last date in the dates column in the current context. |
33
+
|[NEXTQUARTER](nextquarter-function-dax.md)| Returns a table that contains a column of all dates in the next quarter, based on the last date specified in the dates column, in the current context. |
34
+
|[NEXTYEAR](nextyear-function-dax.md)| Returns a table that contains a column of all dates in the next year, based on the last date in the dates column, in the current context. |
35
35
|[OPENINGBALANCEWEEK](openingbalanceweek-function-dax.md)| Evaluates the expression at the first date of the week in the current context. |
36
36
|[OPENINGBALANCEMONTH](openingbalancemonth-function-dax.md)| Evaluates the expression at the first date of the month in the current context. |
37
37
|[OPENINGBALANCEQUARTER](openingbalancequarter-function-dax.md)| Evaluates the expression at the first date of the quarter, in the current context. |
@@ -41,7 +41,7 @@ Data Analysis Expressions (DAX) includes time-intelligence functions that enable
41
41
|[PREVIOUSWEEK](previousweek-function-dax.md)| Returns a table that contains a column of all dates representing the week that is previous to the first date in the dates column, in the current context. |
42
42
|[PREVIOUSMONTH](previousmonth-function-dax.md)| Returns a table that contains a column of all dates from the previous month, based on the first date in the dates column, in the current context. |
43
43
|[PREVIOUSQUARTER](previousquarter-function-dax.md)| Returns a table that contains a column of all dates from the previous quarter, based on the first date in the dates column, in the current context. |
44
-
|[PREVIOUSYEAR](previousyear-function-dax.md)| Returns a table that contains a column of all dates from the previous year, given the last date in the dates column, in the current context. |
44
+
|[PREVIOUSYEAR](previousyear-function-dax.md)| Returns a table that contains a column of all dates from the previous year, based on the first date in the dates column, in the current context. |
45
45
|[SAMEPERIODLASTYEAR](sameperiodlastyear-function-dax.md)| Returns a table that contains a column of dates shifted one year back in time from the dates in the specified dates column, in the current context. |
46
46
|[STARTOFWEEK](startofweek-function-dax.md)| Returns the first date of the week in the current context for the specified column of dates. |
47
47
|[STARTOFMONTH](startofmonth-function-dax.md)| Returns the first date of the month in the current context for the specified column of dates. |
0 commit comments