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: WindowsForms/Calculation-Engine/Supported-Formulas/Math-Trigonometry.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3061,7 +3061,7 @@ _PHIL(x)_
3061
3061
3062
3062
3063
3063
3064
-
The `EUROCONVERT` function converts a currency between the euro and member currencies or among member currencies using euro as the base currency, based on fixed EU (European Union) exchange rates.
3064
+
The `EUROCONVERT` function converts a currency between the Euro and member currencies or among member currencies using Euro as the base currency, based on fixed EU (European Union) exchange rates.
3065
3065
3066
3066
3067
3067
@@ -3101,7 +3101,7 @@ The `EUROCONVERT` function converts a currency between the euro and member curre
3101
3101
3102
3102
3103
3103
3104
-
* triangulation_precision: An integer (greater than or equal to 3) that specifies the number of significant digits for the intermediate euro value when converting between two euro member currencies.
3104
+
* triangulation_precision: An integer (greater than or equal to 3) that specifies the number of significant digits for the intermediate Euro value when converting between two Euro member currencies.
@@ -2980,3 +2980,32 @@ The `FORECAST.LINEAR` function predicts a future value based on existing data by
2980
2980
2981
2981
* If the variance of known_x's equals zero, `FORECAST.LINEAR` returns the `#DIV/0!` error.
2982
2982
2983
+
## TREND
2984
+
2985
+
The `TREND` function returns values along a linear trend by fitting a straight line to the known y-values and x-values using the method of least squares. It predicts the y-values for a given array of new x-values, which is useful for forecasting data trends.
* known_y's: The set of y-values in the equation `y = mx + b`.
2994
+
2995
+
* known_x's (Optional): The independent array or range of data (x-values) corresponding to the known_y's. If omitted, it is assumed to be the array {1,2,3,...} that is the same size as known_y's.
2996
+
2997
+
* new_x's (Optional): The array of new x-values for which you want to predict corresponding y-values. If omitted, it is assumed to be the array {1,2,3,...} that is the same size as known_y's.
2998
+
2999
+
* const (Optional) : A logical value that determines whether the intercept of the regression line is forced to zero.
3000
+
3001
+
* TRUE or Omitted: Calculates normally using - `y = mx + b`.
3002
+
3003
+
* FALSE: In `y = mx + b`, b is set equal to 0, and the m-values are adjusted so that y = mx.
3004
+
3005
+
**Remarks:**
3006
+
3007
+
* If known_y's or known_x's are empty, or if one has more data points than the other, `TREND` function will return the `#N/A` error.
3008
+
3009
+
* If the variance of known_x's equals zero, `TREND` will return the `#DIV/0!` error.
0 commit comments