Skip to content

Commit 4ab1af9

Browse files
authored
docs: Update DAX API reference (#10154)
Signed-off-by: Alex Qyoun-ae <[email protected]>
1 parent 258be19 commit 4ab1af9

File tree

1 file changed

+48
-1
lines changed

1 file changed

+48
-1
lines changed

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

Lines changed: 48 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ of the DAX documentation.
5757

5858
| Function | <nobr>Unsupported features</nobr> | Caveats |
5959
| --- | --- | --- |
60+
| [`CALENDAR`](https://learn.microsoft.com/en-us/dax/calendar-function-dax) | Non-literal dates ||
6061
| [`DATE`](https://learn.microsoft.com/en-us/dax/date-function-dax) | Non-literal date parts ||
62+
| [`DATEVALUE`](https://learn.microsoft.com/en-us/dax/datevalue-function-dax) | Non-ISO date formats ||
6163
| [`DAY`](https://learn.microsoft.com/en-us/dax/day-function-dax) |||
6264
| [`HOUR`](https://learn.microsoft.com/en-us/dax/hour-function-dax) |||
6365
| [`MINUTE`](https://learn.microsoft.com/en-us/dax/minute-function-dax) |||
@@ -66,10 +68,12 @@ of the DAX documentation.
6668
| [`QUARTER`](https://learn.microsoft.com/en-us/dax/quarter-function-dax) |||
6769
| [`SECOND`](https://learn.microsoft.com/en-us/dax/second-function-dax) |||
6870
| [`TIME`](https://learn.microsoft.com/en-us/dax/time-function-dax) | Non-literal date parts ||
71+
| [`TIMEVALUE`](https://learn.microsoft.com/en-us/dax/timevalue-function-dax) | Non-ISO time formats ||
6972
| [`TODAY`](https://learn.microsoft.com/en-us/dax/today-function-dax) || Time zone may depend on data warehouse settings |
7073
| [`UTCNOW`](https://learn.microsoft.com/en-us/dax/utcnow-function-dax) || Time zone may depend on data warehouse settings |
7174
| [`UTCTODAY`](https://learn.microsoft.com/en-us/dax/utctoday-function-dax) || Time zone may depend on data warehouse settings |
7275
| [`WEEKDAY`](https://learn.microsoft.com/en-us/dax/weekday-function-dax) |||
76+
| [`WEEKNUM`](https://learn.microsoft.com/en-us/dax/weeknum-function-dax) | Non-Monday return types ||
7377
| [`YEAR`](https://learn.microsoft.com/en-us/dax/year-function-dax) |||
7478

7579
### Filter functions
@@ -85,10 +89,13 @@ of the DAX documentation.
8589
| Function | <nobr>Unsupported features</nobr> | Caveats |
8690
| --- | --- | --- |
8791
| [`ALL`](https://learn.microsoft.com/en-us/dax/all-function-dax) |||
92+
| [`ALLCROSSFILTERED`](https://learn.microsoft.com/en-us/dax/allcrossfiltered-function-dax) |||
93+
| [`ALLNOBLANKROW`](https://learn.microsoft.com/en-us/dax/allnoblankrow-function-dax) |||
8894
| [`CALCULATE`](https://learn.microsoft.com/en-us/dax/calculate-function-dax) || Adds to the filter context but does not override it |
8995
| [`CALCULATETABLE`](https://learn.microsoft.com/en-us/dax/calculatetable-function-dax) |||
9096
| [`FILTER`](https://learn.microsoft.com/en-us/dax/filter-function-dax) |||
9197
| [`KEEPFILTERS`](https://learn.microsoft.com/en-us/dax/keepfilters-function-dax) |||
98+
| [`REMOVEFILTERS`](https://learn.microsoft.com/en-us/dax/removefilters-function-dax) |||
9299

93100
### Financial functions
94101

@@ -134,11 +141,26 @@ of the DAX documentation.
134141

135142
| Function | <nobr>Unsupported features</nobr> | Caveats |
136143
| --- | --- | --- |
144+
| [`CONTAINSSTRINGEXACT`](https://learn.microsoft.com/en-us/dax/containsstringexact-function-dax) |||
137145
| [`ISAFTER`](https://learn.microsoft.com/en-us/dax/isafter-function-dax) |||
138146
| [`ISBLANK`](https://learn.microsoft.com/en-us/dax/isblank-function-dax) |||
147+
| [`ISBOOLEAN`](https://learn.microsoft.com/en-us/dax/isboolean-function-dax) |||
148+
| [`ISCURRENCY`](https://learn.microsoft.com/en-us/dax/iscurrency-function-dax) |||
149+
| [`ISDATETIME`](https://learn.microsoft.com/en-us/dax/isdatetime-function-dax) |||
150+
| [`ISDECIMAL`](https://learn.microsoft.com/en-us/dax/isdecimal-function-dax) |||
151+
| [`ISDOUBLE`](https://learn.microsoft.com/en-us/dax/isdouble-function-dax) |||
152+
| [`ISEMPTY`](https://learn.microsoft.com/en-us/dax/isempty-function-dax) || Always returns FALSE |
139153
| [`ISEVEN`](https://learn.microsoft.com/en-us/dax/iseven-function-dax) |||
154+
| [`ISINT64`](https://learn.microsoft.com/en-us/dax/isint64-function-dax) |||
155+
| [`ISINTEGER`](https://learn.microsoft.com/en-us/dax/isinteger-function-dax) |||
156+
| [`ISLOGICAL`](https://learn.microsoft.com/en-us/dax/islogical-function-dax) |||
157+
| [`ISNONTEXT`](https://learn.microsoft.com/en-us/dax/isnontext-function-dax) |||
158+
| [`ISNUMBER`](https://learn.microsoft.com/en-us/dax/isnumber-function-dax) |||
159+
| [`ISNUMERIC`](https://learn.microsoft.com/en-us/dax/isnumeric-function-dax) |||
140160
| [`ISODD`](https://learn.microsoft.com/en-us/dax/isodd-function-dax) |||
141161
| [`ISONORAFTER`](https://learn.microsoft.com/en-us/dax/isonorafter-function-dax) |||
162+
| [`ISSTRING`](https://learn.microsoft.com/en-us/dax/isstring-function-dax) |||
163+
| [`ISTEXT`](https://learn.microsoft.com/en-us/dax/istext-function-dax) |||
142164
| [`NONVISUAL`](https://learn.microsoft.com/en-us/dax/nonvisual-function-dax) |||
143165
| [`USERCULTURE`](https://learn.microsoft.com/en-us/dax/userculture-function-dax) || Always returns "en-US" |
144166

@@ -155,6 +177,11 @@ of the DAX documentation.
155177
| Function | <nobr>Unsupported features</nobr> | Caveats |
156178
| --- | --- | --- |
157179
| [`AND`](https://learn.microsoft.com/en-us/dax/and-function-dax) |||
180+
| [`BITAND`](https://learn.microsoft.com/en-us/dax/bitand-function-dax) |||
181+
| [`BITLSHIFT`](https://learn.microsoft.com/en-us/dax/bitlshift-function-dax) |||
182+
| [`BITOR`](https://learn.microsoft.com/en-us/dax/bitor-function-dax) |||
183+
| [`BITRSHIFT`](https://learn.microsoft.com/en-us/dax/bitrshift-function-dax) |||
184+
| [`COALESCE`](https://learn.microsoft.com/en-us/dax/coalesce-function-dax) |||
158185
| [`FALSE`](https://learn.microsoft.com/en-us/dax/false-function-dax) |||
159186
| [`IF`](https://learn.microsoft.com/en-us/dax/if-function-dax) || Coerces results to common type |
160187
| [`NOT`](https://learn.microsoft.com/en-us/dax/not-function-dax) |||
@@ -176,12 +203,22 @@ of the DAX documentation.
176203
| --- | --- | --- |
177204
| [`ABS`](https://learn.microsoft.com/en-us/dax/abs-function-dax) |||
178205
| [`ACOS`](https://learn.microsoft.com/en-us/dax/acos-function-dax) |||
206+
| [`ACOSH`](https://learn.microsoft.com/en-us/dax/acosh-function-dax) |||
207+
| [`ACOT`](https://learn.microsoft.com/en-us/dax/acot-function-dax) |||
208+
| [`ACOTH`](https://learn.microsoft.com/en-us/dax/acoth-function-dax) |||
179209
| [`ASIN`](https://learn.microsoft.com/en-us/dax/asin-function-dax) |||
210+
| [`ASINH`](https://learn.microsoft.com/en-us/dax/asinh-function-dax) |||
180211
| [`ATAN`](https://learn.microsoft.com/en-us/dax/atan-function-dax) |||
212+
| [`ATANH`](https://learn.microsoft.com/en-us/dax/atanh-function-dax) |||
181213
| [`CEILING`](https://learn.microsoft.com/en-us/dax/ceiling-function-dax) | Significance other than 1 ||
182214
| [`CONVERT`](https://learn.microsoft.com/en-us/dax/convert-function-dax) |||
183215
| [`COS`](https://learn.microsoft.com/en-us/dax/cos-function-dax) |||
216+
| [`COSH`](https://learn.microsoft.com/en-us/dax/cosh-function-dax) |||
217+
| [`COT`](https://learn.microsoft.com/en-us/dax/cot-function-dax) |||
218+
| [`COTH`](https://learn.microsoft.com/en-us/dax/coth-function-dax) |||
219+
| [`DEGREES`](https://learn.microsoft.com/en-us/dax/degrees-function-dax) |||
184220
| [`DIVIDE`](https://learn.microsoft.com/en-us/dax/divide-function-dax) |||
221+
| [`EVEN`](https://learn.microsoft.com/en-us/dax/even-function-dax) |||
185222
| [`EXP`](https://learn.microsoft.com/en-us/dax/exp-function-dax) |||
186223
| [`FLOOR`](https://learn.microsoft.com/en-us/dax/floor-function-dax) | Significance other than 1 ||
187224
| [`INT`](https://learn.microsoft.com/en-us/dax/int-function-dax) |||
@@ -190,17 +227,23 @@ of the DAX documentation.
190227
| [`LOG10`](https://learn.microsoft.com/en-us/dax/log10-function-dax) |||
191228
| [`MOD`](https://learn.microsoft.com/en-us/dax/mod-function-dax) |||
192229
| [`MROUND`](https://learn.microsoft.com/en-us/dax/mround-function-dax) | Multiple other than 1 ||
230+
| [`ODD`](https://learn.microsoft.com/en-us/dax/odd-function-dax) |||
193231
| [`PI`](https://learn.microsoft.com/en-us/dax/pi-function-dax) |||
194232
| [`POWER`](https://learn.microsoft.com/en-us/dax/power-function-dax) |||
195233
| [`QUOTIENT`](https://learn.microsoft.com/en-us/dax/quotient-function-dax) |||
234+
| [`RADIANS`](https://learn.microsoft.com/en-us/dax/radians-function-dax) |||
196235
| [`RAND`](https://learn.microsoft.com/en-us/dax/rand-function-dax) |||
236+
| [`RANDBETWEEN`](https://learn.microsoft.com/en-us/dax/randbetween-function-dax) |||
197237
| [`ROUND`](https://learn.microsoft.com/en-us/dax/round-function-dax) | Num digits other than 0 ||
198238
| [`ROUNDDOWN`](https://learn.microsoft.com/en-us/dax/rounddown-function-dax) | Num digits other than 0 ||
199239
| [`ROUNDUP`](https://learn.microsoft.com/en-us/dax/roundup-function-dax) | Num digits other than 0 ||
240+
| [`SIGN`](https://learn.microsoft.com/en-us/dax/sign-function-dax) |||
200241
| [`SIN`](https://learn.microsoft.com/en-us/dax/sin-function-dax) |||
242+
| [`SINH`](https://learn.microsoft.com/en-us/dax/sinh-function-dax) |||
201243
| [`SQRT`](https://learn.microsoft.com/en-us/dax/sqrt-function-dax) |||
202244
| [`SQRTPI`](https://learn.microsoft.com/en-us/dax/sqrtpi-function-dax) |||
203245
| [`TAN`](https://learn.microsoft.com/en-us/dax/tan-function-dax) |||
246+
| [`TANH`](https://learn.microsoft.com/en-us/dax/tanh-function-dax) |||
204247
| [`TRUNC`](https://learn.microsoft.com/en-us/dax/trunc-function-dax) | Num digits other than 0 ||
205248

206249
### Other functions
@@ -254,6 +297,7 @@ of the DAX documentation.
254297
| Function | <nobr>Unsupported features</nobr> | Caveats |
255298
| --- | --- | --- |
256299
| [`SAMPLE`](https://learn.microsoft.com/en-us/dax/sample-function-dax) || Doesn't evenly distribute rows, taking top N instead (acts as the `TOPN` function) |
300+
| [`SAMPLECARTESIANPOINTSBYCOVER`](https://learn.microsoft.com/en-us/dax/samplecartesianpointsbycover-function-dax) || Acts as the `TOPN` function |
257301

258302
### Table manipulation functions
259303

@@ -282,6 +326,7 @@ of the DAX documentation.
282326
| [`SUBSTITUTEWITHINDEX`](https://learn.microsoft.com/en-us/dax/substitutewithindex-function-dax) |||
283327
| [`SUMMARIZE`](https://learn.microsoft.com/en-us/dax/summarize-function-dax) |||
284328
| [`SUMMARIZECOLUMNS`](https://learn.microsoft.com/en-us/dax/summarizecolumns-function-dax) |||
329+
| [Table constructor](https://learn.microsoft.com/en-us/dax/table-constructor) |||
285330
| [`TOPN`](https://learn.microsoft.com/en-us/dax/topn-function-dax) || Complex N values are planned as `50000` |
286331
| [`TREATAS`](https://learn.microsoft.com/en-us/dax/treatas-function-dax) | Non-literal tables as table expressions ||
287332
| [`UNION`](https://learn.microsoft.com/en-us/dax/union-function-dax) |||
@@ -299,6 +344,7 @@ of the DAX documentation.
299344

300345
| Function | <nobr>Unsupported features</nobr> | Caveats |
301346
| --- | --- | --- |
347+
| [`COMBINEVALUES`](https://learn.microsoft.com/en-us/dax/combinevalues-function-dax) |||
302348
| [`CONCATENATE`](https://learn.microsoft.com/en-us/dax/concatenate-function-dax) |||
303349
| [`EXACT`](https://learn.microsoft.com/en-us/dax/exact-function-dax) |||
304350
| [`FIND`](https://learn.microsoft.com/en-us/dax/find-function-dax) | Start num other than 1 and not found value other than 0 ||
@@ -308,9 +354,10 @@ of the DAX documentation.
308354
| [`MID`](https://learn.microsoft.com/en-us/dax/mid-function-dax) |||
309355
| [`REPT`](https://learn.microsoft.com/en-us/dax/rept-function-dax) || Returns empty string when num times is 0 |
310356
| [`RIGHT`](https://learn.microsoft.com/en-us/dax/right-function-dax) |||
357+
| [`SEARCH`](https://learn.microsoft.com/en-us/dax/search-function-dax) | Start num other than 1 and not found value other than 0; wildcards | Case-sensitive |
311358
| [`SUBSTITUTE`](https://learn.microsoft.com/en-us/dax/substitute-function-dax) | Instance number ||
312-
| [`SEARCH`](https://learn.microsoft.com/en-us/dax/search-function-dax) | Execution outside filter context functions ||
313359
| [`TRIM`](https://learn.microsoft.com/en-us/dax/trim-function-dax) | Trimming inner whitespace ||
360+
| [`UNICHAR`](https://learn.microsoft.com/en-us/dax/unichar-function-dax) |||
314361
| [`UPPER`](https://learn.microsoft.com/en-us/dax/upper-function-dax) |||
315362
| [`VALUE`](https://learn.microsoft.com/en-us/dax/value-function-dax) |||
316363

0 commit comments

Comments
 (0)