Skip to content

Commit 3ff57e0

Browse files
authored
Update summarizecolumns-function-dax.md
- updated names of columns in an example output to match the names defined in the corresponding example DAX code - changed a call of a DAX function in an example to upper case to match writing style used in that and other examples on this page
1 parent 9dc2670 commit 3ff57e0

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
@@ -102,14 +102,14 @@ All expression ignored,
102102
```dax
103103
SUMMARIZECOLUMNS(
104104
Sales[CustomerId], "Blank",
105-
IGNORE( Blank() ), "BlankIfTotalQtyIsNot5",
105+
IGNORE( BLANK() ), "BlankIfTotalQtyIsNot5",
106106
IGNORE( IF( SUM( Sales[Qty] )=5, 5 ) )
107107
)
108108
```
109109

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

112-
|CustomerId|TotalQty|BlankIfTotalQtyIsNot3|
112+
|CustomerId|Blank|BlankIfTotalQtyIsNot5|
113113
|--------------|------------|-------------------------|
114114
|A||5|
115115
|B|||

0 commit comments

Comments
 (0)