Skip to content

Commit f2183c1

Browse files
authored
docs: Update DAX API function reference (#9344)
Signed-off-by: Alex Qyoun-ae <[email protected]>
1 parent de10c23 commit f2183c1

File tree

1 file changed

+72
-1
lines changed

1 file changed

+72
-1
lines changed

docs/pages/product/apis-integrations/dax-api/reference.mdx

Lines changed: 72 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,24 @@ 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+
| [`AVERAGEA`](https://learn.microsoft.com/en-us/dax/averagea-function-dax) | Non-numeric values ||
30+
| [`AVERAGEX`](https://learn.microsoft.com/en-us/dax/averagex-function-dax) | Non-base table as input table ||
2931
| [`COUNT`](https://learn.microsoft.com/en-us/dax/count-function-dax) |||
3032
| [`COUNTA`](https://learn.microsoft.com/en-us/dax/counta-function-dax) |||
33+
| [`COUNTAX`](https://learn.microsoft.com/en-us/dax/countax-function-dax) | Non-base table as input table ||
34+
| [`COUNTBLANK`](https://learn.microsoft.com/en-us/dax/countblank-function-dax) |||
3135
| [`COUNTROWS`](https://learn.microsoft.com/en-us/dax/countrows-function-dax) || Disregards input table expression and always returns 1 |
36+
| [`COUNTX`](https://learn.microsoft.com/en-us/dax/countx-function-dax) | Non-base table as input table ||
3237
| [`DISTINCTCOUNT`](https://learn.microsoft.com/en-us/dax/distinctcount-function-dax) || Blanks are ignored |
38+
| [`DISTINCTCOUNTNOBLANK`](https://learn.microsoft.com/en-us/dax/distinctcountnoblank-function-dax) |||
3339
| [`MAX`](https://learn.microsoft.com/en-us/dax/max-function-dax) | 2 arguments | Blanks are disregarded instead of being treated as 0 |
40+
| [`MAXA`](https://learn.microsoft.com/en-us/dax/maxa-function-dax) |||
41+
| [`MAXX`](https://learn.microsoft.com/en-us/dax/maxx-function-dax) | Non-base table as input table ||
3442
| [`MIN`](https://learn.microsoft.com/en-us/dax/min-function-dax) | 2 arguments | Blanks are disregarded instead of being treated as 0 |
43+
| [`MINA`](https://learn.microsoft.com/en-us/dax/mina-function-dax) |||
44+
| [`MINX`](https://learn.microsoft.com/en-us/dax/minx-function-dax) | Non-base table as input table ||
3545
| [`SUM`](https://learn.microsoft.com/en-us/dax/sum-function-dax) |||
46+
| [`SUMX`](https://learn.microsoft.com/en-us/dax/sumx-function-dax) | Non-base table as input table ||
3647

3748
### Date and time functions
3849

@@ -47,7 +58,19 @@ of the DAX documentation.
4758
| Function | <nobr>Unsupported features</nobr> | Caveats |
4859
| --- | --- | --- |
4960
| [`DATE`](https://learn.microsoft.com/en-us/dax/date-function-dax) | Non-literal date parts ||
61+
| [`DAY`](https://learn.microsoft.com/en-us/dax/day-function-dax) | Text date input ||
62+
| [`HOUR`](https://learn.microsoft.com/en-us/dax/hour-function-dax) | Text date input ||
63+
| [`MINUTE`](https://learn.microsoft.com/en-us/dax/minute-function-dax) | Text date input ||
64+
| [`MONTH`](https://learn.microsoft.com/en-us/dax/month-function-dax) | Text date input ||
65+
| [`NOW`](https://learn.microsoft.com/en-us/dax/now-function-dax) || Returns datetime in UTC time zone |
66+
| [`QUARTER`](https://learn.microsoft.com/en-us/dax/quarter-function-dax) | Text date input ||
67+
| [`SECOND`](https://learn.microsoft.com/en-us/dax/second-function-dax) | Text date input ||
5068
| [`TIME`](https://learn.microsoft.com/en-us/dax/time-function-dax) | Non-literal date parts. Execution outside `DATE(...) + TIME(...)` expression ||
69+
| [`TODAY`](https://learn.microsoft.com/en-us/dax/today-function-dax) || Returns date in UTC time zone. Time is at 12:00:00 AM; contrary to documentation, Analysis Services returns that time |
70+
| [`UTCNOW`](https://learn.microsoft.com/en-us/dax/utcnow-function-dax) |||
71+
| [`UTCTODAY`](https://learn.microsoft.com/en-us/dax/utctoday-function-dax) || Time is at 12:00:00 AM; contrary to documentation, Analysis Services returns that time |
72+
| [`WEEKDAY`](https://learn.microsoft.com/en-us/dax/weekday-function-dax) | Text date input ||
73+
| [`YEAR`](https://learn.microsoft.com/en-us/dax/year-function-dax) | Text date input ||
5174

5275
### Filter functions
5376

@@ -91,9 +114,13 @@ of the DAX documentation.
91114

92115
| Function | <nobr>Unsupported features</nobr> | Caveats |
93116
| --- | --- | --- |
117+
| [`ISAFTER`](https://learn.microsoft.com/en-us/dax/isafter-function-dax) |||
94118
| [`ISBLANK`](https://learn.microsoft.com/en-us/dax/isblank-function-dax) || Blanks are treated as equivalent to nulls and vice versa |
119+
| [`ISEVEN`](https://learn.microsoft.com/en-us/dax/iseven-function-dax) |||
120+
| [`ISODD`](https://learn.microsoft.com/en-us/dax/isodd-function-dax) |||
95121
| [`ISONORAFTER`](https://learn.microsoft.com/en-us/dax/isonorafter-function-dax) |||
96122
| [`NONVISUAL`](https://learn.microsoft.com/en-us/dax/nonvisual-function-dax) || Doesn't modify behavior, silently ignored |
123+
| [`USERCULTURE`](https://learn.microsoft.com/en-us/dax/userculture-function-dax) || Always returns "en-US" |
97124

98125
### Logical functions
99126

@@ -108,8 +135,12 @@ of the DAX documentation.
108135
| Function | <nobr>Unsupported features</nobr> | Caveats |
109136
| --- | --- | --- |
110137
| [`AND`](https://learn.microsoft.com/en-us/dax/and-function-dax) |||
138+
| [`FALSE`](https://learn.microsoft.com/en-us/dax/false-function-dax) |||
139+
| [`IF`](https://learn.microsoft.com/en-us/dax/if-function-dax) | Variant data types ||
111140
| [`NOT`](https://learn.microsoft.com/en-us/dax/not-function-dax) |||
112141
| [`OR`](https://learn.microsoft.com/en-us/dax/or-function-dax) |||
142+
| [`SWITCH`](https://learn.microsoft.com/en-us/dax/switch-function-dax) |||
143+
| [`TRUE`](https://learn.microsoft.com/en-us/dax/true-function-dax) |||
113144

114145
### Math and trig functions
115146

@@ -121,7 +152,34 @@ of the DAX documentation.
121152

122153
</InfoBox>
123154

124-
No math and trig functions currently supported.
155+
| Function | <nobr>Unsupported features</nobr> | Caveats |
156+
| --- | --- | --- |
157+
| [`ABS`](https://learn.microsoft.com/en-us/dax/abs-function-dax) |||
158+
| [`ACOS`](https://learn.microsoft.com/en-us/dax/acos-function-dax) |||
159+
| [`ASIN`](https://learn.microsoft.com/en-us/dax/asin-function-dax) |||
160+
| [`ATAN`](https://learn.microsoft.com/en-us/dax/atan-function-dax) |||
161+
| [`CEILING`](https://learn.microsoft.com/en-us/dax/ceiling-function-dax) | Significance other than 1 ||
162+
| [`COS`](https://learn.microsoft.com/en-us/dax/cos-function-dax) |||
163+
| [`EXP`](https://learn.microsoft.com/en-us/dax/exp-function-dax) |||
164+
| [`FLOOR`](https://learn.microsoft.com/en-us/dax/floor-function-dax) | Significance other than 1 ||
165+
| [`INT`](https://learn.microsoft.com/en-us/dax/int-function-dax) |||
166+
| [`LN`](https://learn.microsoft.com/en-us/dax/ln-function-dax) |||
167+
| [`LOG`](https://learn.microsoft.com/en-us/dax/log-function-dax) | Base other than 10 ||
168+
| [`LOG10`](https://learn.microsoft.com/en-us/dax/log10-function-dax) |||
169+
| [`MOD`](https://learn.microsoft.com/en-us/dax/mod-function-dax) |||
170+
| [`MROUND`](https://learn.microsoft.com/en-us/dax/mround-function-dax) | Multiple other than 1 ||
171+
| [`PI`](https://learn.microsoft.com/en-us/dax/pi-function-dax) |||
172+
| [`POWER`](https://learn.microsoft.com/en-us/dax/power-function-dax) |||
173+
| [`QUOTIENT`](https://learn.microsoft.com/en-us/dax/quotient-function-dax) |||
174+
| [`RAND`](https://learn.microsoft.com/en-us/dax/rand-function-dax) |||
175+
| [`ROUND`](https://learn.microsoft.com/en-us/dax/round-function-dax) | Num digits other than 0 ||
176+
| [`ROUNDDOWN`](https://learn.microsoft.com/en-us/dax/rounddown-function-dax) | Num digits other than 0 ||
177+
| [`ROUNDUP`](https://learn.microsoft.com/en-us/dax/roundup-function-dax) | Num digits other than 0 ||
178+
| [`SIN`](https://learn.microsoft.com/en-us/dax/sin-function-dax) |||
179+
| [`SQRT`](https://learn.microsoft.com/en-us/dax/sqrt-function-dax) |||
180+
| [`SQRTPI`](https://learn.microsoft.com/en-us/dax/sqrtpi-function-dax) |||
181+
| [`TAN`](https://learn.microsoft.com/en-us/dax/tan-function-dax) |||
182+
| [`TRUNC`](https://learn.microsoft.com/en-us/dax/trunc-function-dax) | Num digits other than 0 ||
125183

126184
### Other functions
127185

@@ -215,7 +273,20 @@ of the DAX documentation.
215273

216274
| Function | <nobr>Unsupported features</nobr> | Caveats |
217275
| --- | --- | --- |
276+
| [`CONCATENATE`](https://learn.microsoft.com/en-us/dax/concatenate-function-dax) |||
277+
| [`EXACT`](https://learn.microsoft.com/en-us/dax/exact-function-dax) |||
278+
| [`FIND`](https://learn.microsoft.com/en-us/dax/find-function-dax) | Start num other than 1 and not found value other than 0 ||
279+
| [`LEFT`](https://learn.microsoft.com/en-us/dax/left-function-dax) |||
280+
| [`LEN`](https://learn.microsoft.com/en-us/dax/len-function-dax) |||
281+
| [`LOWER`](https://learn.microsoft.com/en-us/dax/lower-function-dax) |||
282+
| [`MID`](https://learn.microsoft.com/en-us/dax/mid-function-dax) |||
283+
| [`REPT`](https://learn.microsoft.com/en-us/dax/rept-function-dax) || Returns empty string when num times is 0 |
284+
| [`RIGHT`](https://learn.microsoft.com/en-us/dax/right-function-dax) |||
285+
| [`SUBSTITUTE`](https://learn.microsoft.com/en-us/dax/substitute-function-dax) | Instance number ||
218286
| [`SEARCH`](https://learn.microsoft.com/en-us/dax/search-function-dax) | Execution outside filter context functions ||
287+
| [`TRIM`](https://learn.microsoft.com/en-us/dax/trim-function-dax) | Trimming inner whitespace ||
288+
| [`UPPER`](https://learn.microsoft.com/en-us/dax/upper-function-dax) |||
289+
| [`VALUE`](https://learn.microsoft.com/en-us/dax/value-function-dax) |||
219290

220291
### Time intelligence functions
221292

0 commit comments

Comments
 (0)