|
1 | 1 | ### YamlMime:TSEnum
|
2 | 2 | name: CustomFunctions.ErrorCode
|
3 |
| -uid: 'custom-functions-runtime!CustomFunctions.ErrorCode:enum' |
| 3 | +uid: custom-functions-runtime!CustomFunctions.ErrorCode:enum |
4 | 4 | package: custom-functions-runtime!
|
5 | 5 | fullName: CustomFunctions.ErrorCode
|
6 | 6 | summary: >-
|
7 |
| - Error codes for custom functions. The error codes will appear in the cell that invoked the function. |
| 7 | + Error codes for custom functions. The error codes will appear in the cell that |
| 8 | + invoked the function. |
8 | 9 |
|
9 | 10 |
|
10 |
| - Custom error messages appear in addition to these error codes. Custom messages display in the error indicator menu, |
11 |
| - which is accessed by hovering over the error flag on each cell with an error. |
| 11 | + Custom error messages appear in addition to these error codes. Custom messages |
| 12 | + display in the error indicator menu, which is accessed by hovering over the |
| 13 | + error flag on each cell with an error. |
12 | 14 | remarks: |-
|
13 | 15 |
|
14 | 16 |
|
@@ -40,53 +42,62 @@ remarks: |-
|
40 | 42 | return [[firstResult], [secondResult], [thirdResult]];
|
41 | 43 | };
|
42 | 44 | ```
|
| 45 | +
|
43 | 46 | isPreview: false
|
44 | 47 | isDeprecated: false
|
45 | 48 | fields:
|
46 | 49 | - name: divisionByZero
|
47 |
| - uid: 'custom-functions-runtime!CustomFunctions.ErrorCode.divisionByZero:member' |
| 50 | + uid: custom-functions-runtime!CustomFunctions.ErrorCode.divisionByZero:member |
48 | 51 | package: custom-functions-runtime!
|
49 | 52 | summary: >-
|
50 |
| - This error code indicates that the function used is dividing by zero or empty cells. A custom error message can't |
51 |
| - be used. |
| 53 | + This error code indicates that the function used is dividing by zero or |
| 54 | + empty cells. A custom error message can't be used. |
52 | 55 | value: '"#DIV/0!"'
|
53 | 56 | - name: invalidName
|
54 |
| - uid: 'custom-functions-runtime!CustomFunctions.ErrorCode.invalidName:member' |
| 57 | + uid: custom-functions-runtime!CustomFunctions.ErrorCode.invalidName:member |
55 | 58 | package: custom-functions-runtime!
|
56 | 59 | summary: >-
|
57 |
| - This error code indicates that there is a typo in the function name. Note that this error code is supported as a |
58 |
| - custom function input error, but not as a custom function output error. A custom error message can't be used. |
| 60 | + This error code indicates that there is a typo in the function name. Note |
| 61 | + that this error code is supported as a custom function input error, but |
| 62 | + not as a custom function output error. A custom error message can't be |
| 63 | + used. |
59 | 64 | value: '"#NAME?"'
|
60 | 65 | - name: invalidNumber
|
61 |
| - uid: 'custom-functions-runtime!CustomFunctions.ErrorCode.invalidNumber:member' |
| 66 | + uid: custom-functions-runtime!CustomFunctions.ErrorCode.invalidNumber:member |
62 | 67 | package: custom-functions-runtime!
|
63 | 68 | summary: >-
|
64 |
| - This error code indicates that there is a problem with a number in the function. A custom error message can't be |
65 |
| - used. |
| 69 | + This error code indicates that there is a problem with a number in the |
| 70 | + function. A custom error message can't be used. |
66 | 71 | value: '"#NUM!"'
|
67 | 72 | - name: invalidReference
|
68 |
| - uid: 'custom-functions-runtime!CustomFunctions.ErrorCode.invalidReference:member' |
| 73 | + uid: custom-functions-runtime!CustomFunctions.ErrorCode.invalidReference:member |
69 | 74 | package: custom-functions-runtime!
|
70 | 75 | summary: >-
|
71 |
| - This error code indicates that the function refers to an invalid cell. Note that this error code is supported as a |
72 |
| - custom function input error, but not as a custom function output error. A custom error message can't be used. |
| 76 | + This error code indicates that the function refers to an invalid cell. |
| 77 | + Note that this error code is supported as a custom function input error, |
| 78 | + but not as a custom function output error. A custom error message can't be |
| 79 | + used. |
73 | 80 | value: '"#REF!"'
|
74 | 81 | - name: invalidValue
|
75 |
| - uid: 'custom-functions-runtime!CustomFunctions.ErrorCode.invalidValue:member' |
| 82 | + uid: custom-functions-runtime!CustomFunctions.ErrorCode.invalidValue:member |
76 | 83 | package: custom-functions-runtime!
|
77 | 84 | summary: >-
|
78 |
| - This error code indicates that a value in the function is of the wrong data type. A custom error message can be |
79 |
| - used in addition to the error code, if desired. |
| 85 | + This error code indicates that a value in the function is of the wrong |
| 86 | + data type. A custom error message can be used in addition to the error |
| 87 | + code, if desired. |
80 | 88 | value: '"#VALUE!"'
|
81 | 89 | - name: notAvailable
|
82 |
| - uid: 'custom-functions-runtime!CustomFunctions.ErrorCode.notAvailable:member' |
| 90 | + uid: custom-functions-runtime!CustomFunctions.ErrorCode.notAvailable:member |
83 | 91 | package: custom-functions-runtime!
|
84 | 92 | summary: >-
|
85 |
| - This error code indicates that the function or service isn't available. A custom error message can be used in |
86 |
| - addition to the error code, if desired. |
| 93 | + This error code indicates that the function or service isn't available. A |
| 94 | + custom error message can be used in addition to the error code, if |
| 95 | + desired. |
87 | 96 | value: '"#N/A"'
|
88 | 97 | - name: nullReference
|
89 |
| - uid: 'custom-functions-runtime!CustomFunctions.ErrorCode.nullReference:member' |
| 98 | + uid: custom-functions-runtime!CustomFunctions.ErrorCode.nullReference:member |
90 | 99 | package: custom-functions-runtime!
|
91 |
| - summary: This error code indicates that the ranges in the function don't intersect. A custom error message can't be used. |
| 100 | + summary: >- |
| 101 | + This error code indicates that the ranges in the function don't intersect. |
| 102 | + A custom error message can't be used. |
92 | 103 | value: '"#NULL!"'
|
0 commit comments