From 2c9afa1bf35ed47e2f5569a06ac0976374ce2149 Mon Sep 17 00:00:00 2001 From: Christian Lajouanie <95001399+datastronaut@users.noreply.github.com> Date: Mon, 6 Nov 2023 17:27:06 +0100 Subject: [PATCH] Update window-function-dax.md --- query-languages/dax/window-function-dax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/query-languages/dax/window-function-dax.md b/query-languages/dax/window-function-dax.md index e3908f632..80cff4443 100644 --- a/query-languages/dax/window-function-dax.md +++ b/query-languages/dax/window-function-dax.md @@ -21,7 +21,7 @@ WINDOW ( from[, from_type], to[, to_type][, ][, ][, ] |from_type |Modifies behavior of the \ parameter. Possible values are ABS (absolute) and REL (relative). Default is REL.| |to|Same as \, but indicates the end of the window. The last row is included in the window.| |to_type|Same as \, but modifies the behavior of \.| -|relation|(Optional) A table expression from which the output row is returned.
If specified, all columns in \ must come from it or a related table.
If omitted:
- \ must be explicitly specified.
- All \ and \ expressions must be fully qualified column names and come from a single table.
- Defaults to ALLSELECTED() of all columns in \ and \.| +|relation|(Optional) A table expression from which the output rows are returned.
If specified, all columns in \ must come from it or a related table.
If omitted:
- \ must be explicitly specified.
- All \ and \ expressions must be fully qualified column names and come from a single table.
- Defaults to ALLSELECTED() of all columns in \ and \.| |orderBy|(Optional) An ORDERBY() clause containing the expressions that define how each partition is sorted.
If omitted:
- \ must be explicitly specified.
- Defaults to ordering by every column in \ that is not already specified in \.| |blanks|(Optional) An enumeration that defines how to handle blank values when sorting.
This parameter is reserved for future use.
Currently, the only supported value is DEFAULT, where the behavior for numerical values is blank values are ordered between zero and negative values. The behavior for strings is blank values are ordered before all strings, including empty strings.| |partitionBy|(Optional) A PARTITIONBY() clause containing the columns that define how \ is partitioned. If omitted, \ is treated as a single partition.|