You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/functions.md
+28-7Lines changed: 28 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -175,7 +175,7 @@ Check the example in our [snippet tool](https://snippet.dhtmlx.com/wux2b35b).
175
175
<li><i>number_s</i> - the number of successes in trials;</li>
176
176
<li><i>trials</i> - the number of independent trials;</li>
177
177
<li><i>probability_s</i> - the probability of success on each trial;</li>
178
-
<li><i>cumulative</i> - if TRUE, then BINOM.DIST returns the cumulative distribution function; if FALSE, it returns the probability mass function.</li>
178
+
<li><i>cumulative</i> - if TRUE, then BINOM.DIST returns the cumulative distribution function; if FALSE (use 0), it returns the probability mass function.</li>
179
179
</ul></td>
180
180
<td>Returns the individual term binomial distribution probability.</td>
181
181
</tr>
@@ -942,6 +942,17 @@ Check the example in our [snippet tool](https://snippet.dhtmlx.com/wux2b35b).
<li><i>x</i> - the value at which the function must be calculated (must be ≥ 0);</li>
950
+
<li><i>alpha</i> - the alpha parameter to the distribution (must be > 0);</li>
951
+
<li><i>beta</i> - the beta parameter to the distribution (must be > 0);</li>
952
+
<li><i>cumulative</i> - the logical (true/false) argument which defines the type of distribution to be used. If True - Weibull cumulative distribution function, if False - Weibull probability density function </li>
953
+
</ul></td>
954
+
<td>Returns the Weibull distribution.</td>
955
+
</tr>
945
956
</tbody>
946
957
</table>
947
958
@@ -1065,15 +1076,25 @@ Check the example in our [snippet tool](https://snippet.dhtmlx.com/wux2b35b).
<li><i>lookup_value</i> - the value to search for;</li>
1071
-
<li><i>lookup_array</i> - the array or range to search;</li>
1072
-
<li><i>return_array</i> - the array or range to return;</li>
1073
-
<li><i>if_not_found</i> - optional, if a valid match is not found, returns the [if_not_found] text you supply;</li>
1074
-
<li><i>match_mode</i> - optional (0 by default):<br>0 - Exact match<br>-1 - Exact match. If not found, returns the next smaller item<br>1 - Exact match. If not found, returns the next larger item</li>
1093
+
<li><i>table_array</i> - the table from which to retrieve a value;</li>
1094
+
<li><i>column_index_num</i> - the row number in the table from which to retrieve a value;</li>
<td>Searches a range or an array, and then returns the item corresponding to the first match it finds. If no match exists, then XLOOKUP can return the closest (approximate) match.</td>
Copy file name to clipboardExpand all lines: docs/migration.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ description: You can learn about migration in the documentation of the DHTMLX Ja
10
10
11
11
Version 4.3 brings a new conception of tracking and handling the actions which are performed when you change something in the spreadsheet.
12
12
13
-
The new [beforeAction](api/spreadsheet_beforeaction_event.md) and [afterAction](api/spreadsheet_afteraction_event.md) events will fire right before / after an action is executed and indicate which action has been performed. Thus, the new approach allows you to add the necessary logic for several actions at once via using these two events only. For instance:
13
+
The new [beforeAction](api/spreadsheet_beforeaction_event.md) and [afterAction](api/spreadsheet_afteraction_event.md) events will fire right before / after an action is executed and indicate which action has been performed. Thus, the new approach allows you to add the necessary logic for several actions at once via using only these two events. For instance:
0 commit comments