Skip to content

Commit 909275d

Browse files
author
Owen Duncan
authored
Merge pull request #149 from brandonpires/patch-1
Update summarizecolumns-function-dax.md
2 parents 89a7349 + 3ff57e0 commit 909275d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 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|||

0 commit comments

Comments
 (0)