@@ -26,8 +26,10 @@ of the DAX documentation.
2626| Function | <nobr >Unsupported features</nobr > | Caveats |
2727| --- | --- | --- |
2828| [ ` AVERAGE ` ] ( https://learn.microsoft.com/en-us/dax/average-function-dax ) | — | — |
29- | [ ` COUNT ` ] ( https://learn.microsoft.com/en-us/dax/count-function-dax ) | — | Counts all rows instead of only non-blank ones |
29+ | [ ` COUNT ` ] ( https://learn.microsoft.com/en-us/dax/count-function-dax ) | — | — |
30+ | [ ` COUNTA ` ] ( https://learn.microsoft.com/en-us/dax/counta-function-dax ) | — | — |
3031| [ ` COUNTROWS ` ] ( https://learn.microsoft.com/en-us/dax/countrows-function-dax ) | — | Disregards input table expression and always returns 1 |
32+ | [ ` DISTINCTCOUNT ` ] ( https://learn.microsoft.com/en-us/dax/distinctcount-function-dax ) | — | Blanks are ignored |
3133| [ ` MAX ` ] ( https://learn.microsoft.com/en-us/dax/max-function-dax ) | 2 arguments | Blanks are disregarded instead of being treated as 0 |
3234| [ ` MIN ` ] ( https://learn.microsoft.com/en-us/dax/min-function-dax ) | 2 arguments | Blanks are disregarded instead of being treated as 0 |
3335| [ ` SUM ` ] ( https://learn.microsoft.com/en-us/dax/sum-function-dax ) | — | — |
@@ -91,6 +93,7 @@ of the DAX documentation.
9193| --- | --- | --- |
9294| [ ` ISBLANK ` ] ( https://learn.microsoft.com/en-us/dax/isblank-function-dax ) | — | Blanks are treated as equivalent to nulls and vice versa |
9395| [ ` ISONORAFTER ` ] ( https://learn.microsoft.com/en-us/dax/isonorafter-function-dax ) | — | — |
96+ | [ ` NONVISUAL ` ] ( https://learn.microsoft.com/en-us/dax/nonvisual-function-dax ) | — | Doesn't modify behavior, silently ignored |
9497
9598### Logical functions
9699
@@ -189,7 +192,7 @@ of the DAX documentation.
189192| <nobr >[ ` DISTINCT ` ] ( https://learn.microsoft.com/en-us/dax/distinct-table-function-dax ) (table)</nobr > | Filter context for table expressions | — |
190193| [ ` IGNORE ` ] ( https://learn.microsoft.com/en-us/dax/ignore-function-dax ) | 2+ arguments | Doesn't modify filter context, silently ignored |
191194| [ ` NATURALLEFTOUTERJOIN ` ] ( https://learn.microsoft.com/en-us/dax/naturalleftouterjoin-function-dax ) | — | — |
192- | [ ` ROLLUPADDISSUBTOTAL ` ] ( https://learn.microsoft.com/en-us/dax/rollupaddissubtotal-function-dax ) | ` grandtotalFilter ` , ` groupLevelFilter ` | — |
195+ | [ ` ROLLUPADDISSUBTOTAL ` ] ( https://learn.microsoft.com/en-us/dax/rollupaddissubtotal-function-dax ) | ` grandtotalFilter ` | — |
193196| [ ` ROLLUPGROUP ` ] ( https://learn.microsoft.com/en-us/dax/rollupgroup-function-dax ) | — | — |
194197| [ ` ROW ` ] ( https://learn.microsoft.com/en-us/dax/row-function-dax ) | — | — |
195198| [ ` SELECTCOLUMNS ` ] ( https://learn.microsoft.com/en-us/dax/selectcolumns-function-dax ) | Optional aliases (currently mandatory) | — |
0 commit comments