Skip to content

Commit 6621bc7

Browse files
committed
2 parents 034241b + cf2a85c commit 6621bc7

1,236 files changed

Lines changed: 20310 additions & 11423 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.openpublishing.build.ps1

Lines changed: 0 additions & 17 deletions
This file was deleted.

.openpublishing.redirection.json

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,86 @@
4949
"source_path": "query-languages/m/table-onerror.md",
5050
"redirect_url": "/m/function-values",
5151
"redirect_document_id": false
52+
},
53+
{
54+
"source_path": "query-languages/dax/crossfilter-function.md",
55+
"redirect_url": "/dax/containsrow-function-dax",
56+
"redirect_document_id": false
57+
},
58+
{
59+
"source_path": "query-languages/dax/datatable-function.md",
60+
"redirect_url": "/dax/datatable-function-dax",
61+
"redirect_document_id": false
62+
},
63+
{
64+
"source_path": "query-languages/dax/error-function.md",
65+
"redirect_url": "/dax/error-function-dax",
66+
"redirect_document_id": false
67+
},
68+
{
69+
"source_path": "query-languages/dax/generateseries-function.md",
70+
"redirect_url": "/dax/generateseries-function-dax",
71+
"redirect_document_id": false
72+
},
73+
{
74+
"source_path": "query-languages/dax/selectedvalue-function.md",
75+
"redirect_url": "/dax/selectedvalue-function-dax",
76+
"redirect_document_id": false
77+
},
78+
{
79+
"source_path": "query-languages/dax/treatas-function.md",
80+
"redirect_url": "/dax/treatas-function-dax",
81+
"redirect_document_id": false
82+
},
83+
{
84+
"source_path": "query-languages/dax/networkdays-dax.md",
85+
"redirect_url": "/dax/networkdays-function-dax",
86+
"redirect_document_id": false
87+
},
88+
{
89+
"source_path": "query-languages/dax/norm-dist-dax.md",
90+
"redirect_url": "/dax/norm-dist-function-dax",
91+
"redirect_document_id": false
92+
},
93+
{
94+
"source_path": "query-languages/dax/norm-inv-dax.md",
95+
"redirect_url": "/dax/norm-inv-function-dax",
96+
"redirect_document_id": false
97+
},
98+
{
99+
"source_path": "query-languages/dax/norm-s-dist-dax.md",
100+
"redirect_url": "/dax/norm-s-dist-function-dax",
101+
"redirect_document_id": false
102+
},
103+
{
104+
"source_path": "query-languages/dax/norm-s-inv-dax.md",
105+
"redirect_url": "/dax/norm-s-inv-function-dax",
106+
"redirect_document_id": false
107+
},
108+
{
109+
"source_path": "query-languages/dax/t-dist-2t-dax.md",
110+
"redirect_url": "/dax/t-dist-2t-function-dax",
111+
"redirect_document_id": false
112+
},
113+
{
114+
"source_path": "query-languages/dax/t-dist-dax.md",
115+
"redirect_url": "/dax/t-dist-function-dax",
116+
"redirect_document_id": false
117+
},
118+
{
119+
"source_path": "query-languages/dax/t-dist-rt-dax.md",
120+
"redirect_url": "/dax/t-dist-rt-function-dax",
121+
"redirect_document_id": false
122+
},
123+
{
124+
"source_path": "query-languages/dax/t-inv-2t-dax.md",
125+
"redirect_url": "/dax/t-inv-2t-function-dax",
126+
"redirect_document_id": false
127+
},
128+
{
129+
"source_path": "query-languages/dax/t-inv-dax.md",
130+
"redirect_url": "/dax/t-inv-function-dax",
131+
"redirect_document_id": false
52132
}
53133
]
54134
}
Lines changed: 25 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,43 @@
11
---
22
description: "Learn more about: ABS"
3-
title: "ABS function (DAX) | Microsoft Docs"
3+
title: "ABS function (DAX) "
44
---
55

66
# ABS
77

8-
Returns the absolute value of a number.
9-
10-
## Syntax
11-
8+
[!INCLUDE[applies-to-measures-columns-tables-visual-calculations](includes/applies-to-measures-columns-tables-visual-calculations.md)]
9+
10+
Returns the absolute value of a number.
11+
12+
## Syntax
13+
1214
```dax
13-
ABS(<number>)
15+
ABS(<number>)
1416
```
15-
16-
### Parameters
17-
18-
|Term|Definition|
19-
|--------|--------------|
20-
|number|The number for which you want the absolute value.|
21-
17+
18+
### Parameters
19+
20+
|Term|Definition|
21+
|--------|--------------|
22+
|`number`|The number for which you want the absolute value.|
23+
2224
## Return value
2325

24-
A decimal number.
25-
26+
A decimal number.
27+
2628
## Remarks
2729

28-
The absolute value of a number is a decimal number, whole or decimal, without its sign. You can use the ABS function to ensure that only non-negative numbers are returned from expressions when nested in functions that require a positive number.
29-
30+
The absolute value of a number is a decimal number, whole or decimal, without its sign. You can use the ABS function to ensure that only non-negative numbers are returned from expressions when nested in functions that require a positive number.
31+
3032
## Example
3133

32-
The following example returns the absolute value of the difference between the list price and the dealer price, which you might use in a new calculated column, **DealerMarkup**.
33-
34+
The following example returns the absolute value of the difference between the list price and the dealer price, which you might use in a new calculated column, **DealerMarkup**.
35+
3436
```dax
35-
= ABS([DealerPrice]-[ListPrice])
37+
= ABS([DealerPrice]-[ListPrice])
3638
```
37-
39+
3840
## Related content
3941

40-
[Math and Trig functions](math-and-trig-functions-dax.md)
41-
[SIGN function](sign-function-dax.md)
42+
[Math and Trig functions](math-and-trig-functions-dax.md)
43+
[SIGN function](sign-function-dax.md)

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

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
---
22
description: "Learn more about: ACCRINT"
3-
title: "ACCRINT function (DAX) | Microsoft Docs"
3+
title: "ACCRINT function (DAX) "
44
author: jajin7
55
---
66

77
# ACCRINT
88

9+
[!INCLUDE[applies-to-measures-columns-tables-visual-calculations](includes/applies-to-measures-columns-tables-visual-calculations.md)]
10+
911
Returns the accrued interest for a security that pays periodic interest.
1012

1113
## Syntax
@@ -16,20 +18,20 @@ ACCRINT(<issue>, <first_interest>, <settlement>, <rate>, <par>, <frequency>[, <b
1618

1719
### Parameters
1820

19-
|Term|Definition|
20-
|--------|--------------|
21-
|issue|The security's issue date.|
22-
|first_interest|The security's first interest date.|
23-
|settlement|The security's settlement date. The security settlement date is the date after the issue date when the security is traded to the buyer.|
24-
|rate|The security's annual coupon rate.|
25-
|par|The security's par value.|
26-
|frequency|The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4.|
27-
|basis|(Optional) The type of day count basis to use. If basis is omitted, it is assumed to be 0. The accepted values are listed below this table.|
28-
|calc_method|(Optional) A logical value that specifies the way to calculate the total accrued interest when the date of settlement is later than the date of first_interest. If calc_method is omitted, it is assumed to be TRUE. <br/> - If calc_method evaluates to TRUE or is omitted, ACCRINT returns the total accrued interest from issue to settlement. <br/> - If calc_method evaluates to FALSE, ACCRINT returns the accrued interest from first_interest to settlement.|
21+
|Term|Definition|
22+
|--------|--------------|
23+
|`issue`|The security's issue date.|
24+
|`first_interest`|The security's first interest date.|
25+
|`settlement`|The security's settlement date. The security settlement date is the date after the issue date when the security is traded to the buyer.|
26+
|`rate`|The security's annual coupon rate.|
27+
|`par`|The security's par value.|
28+
|`frequency`|The number of coupon payments per year. For annual payments, frequency = 1; for semiannual, frequency = 2; for quarterly, frequency = 4.|
29+
|`basis`|(Optional) The type of day count basis to use. If basis is omitted, it is assumed to be 0. The accepted values are listed below this table.|
30+
|`calc_method`|(Optional) A logical value that specifies the way to calculate the total accrued interest when the date of settlement is later than the date of first_interest. If calc_method is omitted, it is assumed to be `TRUE`. <br/> - If calc_method evaluates to `TRUE` or is omitted, ACCRINT returns the total accrued interest from issue to settlement. <br/> - If calc_method evaluates to `FALSE`, ACCRINT returns the accrued interest from first_interest to settlement.|
2931

30-
The **basis** parameter accepts the following values:
32+
The `basis` parameter accepts the following values:
3133

32-
| **Basis** | **Day count basis** |
34+
| `Basis` | **Day count basis** |
3335
| ------------ | ------------------- |
3436
| 0 or omitted | US (NASD) 30/360 |
3537
| 1 | Actual/actual |

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

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
---
22
description: "Learn more about: ACCRINTM"
3-
title: "ACCRINTM function (DAX) | Microsoft Docs"
3+
title: "ACCRINTM function (DAX) "
44
author: jajin7
55
---
66

77
# ACCRINTM
88

9+
[!INCLUDE[applies-to-measures-columns-tables-visual-calculations](includes/applies-to-measures-columns-tables-visual-calculations.md)]
10+
911
Returns the accrued interest for a security that pays interest at maturity.
1012

1113
## Syntax
@@ -16,17 +18,17 @@ ACCRINTM(<issue>, <maturity>, <rate>, <par>[, <basis>])
1618

1719
### Parameters
1820

19-
|Term|Definition|
20-
|--------|--------------|
21-
|issue|The security's issue date.|
22-
|maturity|The security's maturity date.|
23-
|rate|The security's annual coupon rate.|
24-
|par|The security's par value.|
25-
|basis|(Optional) The type of day count basis to use. If basis is omitted, it is assumed to be 0. The accepted values are listed below this table.|
21+
|Term|Definition|
22+
|--------|--------------|
23+
|`issue`|The security's issue date.|
24+
|`maturity`|The security's maturity date.|
25+
|`rate`|The security's annual coupon rate.|
26+
|`par`|The security's par value.|
27+
|`basis`|(Optional) The type of day count basis to use. If basis is omitted, it is assumed to be 0. The accepted values are listed below this table.|
2628

27-
The **basis** parameter accepts the following values:
29+
The `basis` parameter accepts the following values:
2830

29-
| **Basis** | **Day count basis** |
31+
| `Basis` | **Day count basis** |
3032
| ------------ | ------------------- |
3133
| 0 or omitted | US (NASD) 30/360 |
3234
| 1 | Actual/actual |
Lines changed: 25 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,36 @@
11
---
22
description: "Learn more about: ACOS"
3-
title: "ACOS function (DAX) | Microsoft Docs"
3+
title: "ACOS function (DAX)"
44
---
55
# ACOS
66

7-
Returns the arccosine, or inverse cosine, of a number. The arccosine is the angle whose cosine is *number*. The returned angle is given in radians in the range 0 (zero) to pi.
8-
9-
## Syntax
10-
7+
[!INCLUDE[applies-to-measures-columns-tables-visual-calculations](includes/applies-to-measures-columns-tables-visual-calculations.md)]
8+
9+
Returns the arccosine, or inverse cosine, of a number. The arccosine is the angle whose cosine is`number`. The returned angle is given in radians in the range 0 (zero) to pi.
10+
11+
## Syntax
12+
1113
```dax
12-
ACOS(number)
14+
ACOS(number)
1315
```
14-
15-
### Parameters
16-
17-
|Term|Definition|
18-
|--------|--------------|
19-
|Number|The cosine of the angle you want and must be from -1 to 1.|
20-
16+
17+
### Parameters
18+
19+
|Term|Definition|
20+
|--------|--------------|
21+
|`Number`|The cosine of the angle you want and must be from -1 to 1.|
22+
2123
## Return value
2224

23-
Returns the arccosine, or inverse cosine, of a number.
24-
25+
Returns the arccosine, or inverse cosine, of a number.
26+
2527
## Remarks
2628

27-
If you want to convert the result from radians to degrees, multiply it by 180/PI() or use the DEGREES function.
28-
29-
## Example
30-
31-
|Formula|Description|Result|
32-
|-----------|---------------|----------|
33-
|= ACOS(-0.5)|Arccosine of -0.5 in radians, 2*pi/3.|2.094395102|
34-
|= ACOS(-0.5)*180/PI()|Arccosine of -0.5 in degrees.|120|
29+
If you want to convert the result from radians to degrees, multiply it by 180/PI() or use the DEGREES function.
30+
31+
## Example
32+
33+
|Formula|Description|Result|
34+
|-----------|---------------|----------|
35+
|`= ACOS(-0.5)`|Arccosine of -0.5 in radians, 2*pi/3.|2.094395102|
36+
|`= ACOS(-0.5)*180/PI()`|Arccosine of -0.5 in degrees.|120|
Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,37 @@
11
---
22
description: "Learn more about: ACOSH"
3-
title: "ACOSH function (DAX) | Microsoft Docs"
3+
title: "ACOSH function (DAX)"
44
---
55
# ACOSH
66

7-
Returns the inverse hyperbolic cosine of a number. The number must be greater than or equal to 1. The inverse hyperbolic cosine is the value whose hyperbolic cosine is *number*, so ACOSH(COSH(number)) equals number.
8-
9-
## Syntax
10-
7+
[!INCLUDE[applies-to-measures-columns-tables-visual-calculations](includes/applies-to-measures-columns-tables-visual-calculations.md)]
8+
9+
Returns the inverse hyperbolic cosine of a number. The number must be greater than or equal to 1. The inverse hyperbolic cosine is the value whose hyperbolic cosine is `number`, so ACOSH(COSH(number)) equals number.
10+
11+
## Syntax
12+
1113
```dax
12-
ACOSH(number)
14+
ACOSH(number)
1315
```
14-
15-
### Parameters
16-
17-
|Term|Definition|
18-
|--------|--------------|
19-
|number|Any real number equal to or greater than 1.|
20-
16+
17+
### Parameters
18+
19+
|Term|Definition|
20+
|--------|--------------|
21+
|`number`|Any real number equal to or greater than 1.|
22+
2123
## Return value
2224

23-
Returns the inverse hyperbolic cosine of a number.
25+
Returns the inverse hyperbolic cosine of a number.
2426

2527
## Remarks
2628

2729
[!INCLUDE [function-not-supported-in-directquery-mode](includes/function-not-supported-in-directquery-mode.md)]
28-
29-
## Example
30-
31-
|Formula|Description|Result|
32-
|-----------|---------------|----------|
33-
|= ACOSH(1)|Inverse hyperbolic cosine of 1.|0|
34-
|= ACOSH(10)|Inverse hyperbolic cosine of 10.|2.993228|
35-
30+
31+
## Example
32+
33+
|Formula|Description|Result|
34+
|-----------|---------------|----------|
35+
|`= ACOSH(1)`|Inverse hyperbolic cosine of 1.|0|
36+
|`= ACOSH(10)`|Inverse hyperbolic cosine of 10.|2.993228|
37+

0 commit comments

Comments
 (0)