Skip to content

Commit 469257f

Browse files
authored
Merge pull request #668 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/query-docs (branch main)
2 parents 6bd4576 + 532ef32 commit 469257f

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

query-languages/dax/summarizecolumns-function-dax.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,14 @@ All expression ignored,
9393
```dax
9494
SUMMARIZECOLUMNS(
9595
Sales[CustomerId], "Blank",
96-
IGNORE( Blank() ), "BlankIfTotalQtyIsNot5",
96+
IGNORE( BLANK() ), "BlankIfTotalQtyIsNot5",
9797
IGNORE( IF( SUM( Sales[Qty] )=5, 5 ) )
9898
)
9999
```
100100

101101
Even though both expressions return blank for some rows, they're included since there are no unignored expressions which return blank.
102102

103-
|CustomerId|TotalQty|BlankIfTotalQtyIsNot3|
103+
|CustomerId|Blank|BlankIfTotalQtyIsNot5|
104104
|--------------|------------|-------------------------|
105105
|A||5|
106106
|B|||
@@ -197,7 +197,7 @@ Returns the following table,
197197
### Example with multiple subtotals
198198

199199
```dax
200-
SUMMARIZECOUMNS (
200+
SUMMARIZECOLUMNS (
201201
Regions[State], ROLLUPADDISSUBTOTAL ( Sales[CustomerId], "IsCustomerSubtotal" ),
202202
ROLLUPADDISSUBTOTAL ( Sales[Date], "IsDateSubtotal"), "Total Qty", SUM( Sales[Qty] )
203203
)

query-languages/dax/window-function-dax.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ WINDOW ( from[, from_type], to[, to_type][, <relation>][, <orderBy>][, <blanks>]
2121
|from_type |Modifies behavior of the \<from> parameter. Possible values are ABS (absolute) and REL (relative). Default is REL.|
2222
|to|Same as \<from>, but indicates the end of the window. The last row is included in the window.|
2323
|to_type|Same as \<from_type>, but modifies the behavior of \<to>.|
24-
|relation|(Optional) A table expression from which the output row is returned. </br>If specified, all columns in \<partitionBy> must come from it or a related table. </br>If omitted: </br>- \<orderBy> must be explicitly specified.</br>- All \<orderBy> and \<partitionBy> expressions must be fully qualified column names and come from a single table. </br>- Defaults to ALLSELECTED() of all columns in \<orderBy> and \<partitionBy>.|
24+
|relation|(Optional) A table expression from which the output rows are returned. </br>If specified, all columns in \<partitionBy> must come from it or a related table. </br>If omitted: </br>- \<orderBy> must be explicitly specified.</br>- All \<orderBy> and \<partitionBy> expressions must be fully qualified column names and come from a single table. </br>- Defaults to ALLSELECTED() of all columns in \<orderBy> and \<partitionBy>.|
2525
|orderBy|(Optional) An ORDERBY() clause containing the expressions that define how each partition is sorted. </br>If omitted: </br>- \<relation> must be explicitly specified. </br>- Defaults to ordering by every column in \<relation> that is not already specified in \<partitionBy>.|
2626
|blanks|(Optional) An enumeration that defines how to handle blank values when sorting. </br>This parameter is reserved for future use. </br>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.|
2727
|partitionBy|(Optional) A PARTITIONBY() clause containing the columns that define how \<relation> is partitioned. If omitted, \<relation> is treated as a single partition.|

query-languages/m/list-removefirstn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ List.RemoveFirstN(<b>list</b> as list, optional <b>countOrCondition</b> as any)
1515
Returns a list that removes the first element of list `list`. If `list` is an empty list an empty list is returned. This function takes an optional parameter, `countOrCondition`, to support removing multiple values as listed below.
1616

1717
* If a number is specified, up to that many items are removed.
18-
* If a condition is specified, the returned list begins with the first element in `list` that meets the criteria. Once an item fails the condition, no further items are considered.
18+
* If a condition is specified, the returned list begins with the first element in `list` that doesn't meet the criteria. Once an item fails the condition, no further items are considered.
1919
* If this parameter is null, the default behavior is observed.
2020

2121
## Example 1

query-languages/m/list-skip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ List.Skip(<b>list</b> as list, optional <b>countOrCondition</b> as any) as list
1515
Returns a list that skips the first element of list `list`. If `list` is an empty list an empty list is returned. This function takes an optional parameter, `countOrCondition`, to support skipping multiple values as listed below.
1616

1717
* If a number is specified, up to that many items are skipped.
18-
* If a condition is specified, the returned list begins with the first element in `list` that meets the criteria. Once an item fails the condition, no further items are considered.
18+
* If a condition is specified, the returned list begins with the first element in `list` that doesn't meet the criteria. Once an item fails the condition, no further items are considered.
1919
* If this parameter is null, the default behavior is observed.
2020

2121
## Example 1

0 commit comments

Comments
 (0)