diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/de.json b/apps/spreadsheeteditor/main/resources/formula-lang/de.json index 587b04798..2d68627c1 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/de.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/de.json @@ -197,6 +197,7 @@ "INTERCEPT": "ACHSENABSCHNITT", "KURT": "KURT", "LARGE": "KGRÖSSTE", + "LINEST": "RGP", "LOGINV": "LOGINV", "LOGNORM.DIST": "LOGNORM.VERT", "LOGNORM.INV": "LOGNORM.INV", @@ -421,6 +422,7 @@ "ROWS": "ZEILEN", "TRANSPOSE": "MTRANS", "VLOOKUP": "SVERWEIS", + "CELL": "ZELLE", "ERROR.TYPE": "FEHLER.TYP", "ISBLANK": "ISTLEER", "ISERR": "ISTFEHL", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/de_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/de_desc.json index e5cd9c1e6..276a6265c 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/de_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/de_desc.json @@ -779,6 +779,10 @@ "a": "(Matrix;k)", "d": "Statistische Funktion - gibt den k-größten Wert eines Datensatzes in einem bestimmten Zellbereich zurück" }, + "LINEST": { + "a": "( known_y's, [known_x's], [const], [stats] )", + "d": "Statistische Funktion - berechnet die Statistik für eine Linie nach der Methode der kleinsten Quadrate, um eine gerade Linie zu berechnen, die am besten an die Daten angepasst ist, und gibt dann eine Matrix zurück, die die Linie beschreibt; da diese Funktion eine Matrix von Werten zurückgibt, muss die Formel als Matrixformel eingegeben werden" + }, "LOGINV": { "a": "(x;Mittelwert;Standabwn)", "d": "Statistische Funktion - gibt Quantile der Lognormalverteilung von Wahrsch zurück, wobei ln(x) mit den Parametern Mittelwert und Standabwn normal verteilt ist" @@ -1687,6 +1691,10 @@ "a": "(Suchkriterium; Matrix; Spaltenindex; [Bereich_Verweis])", "d": "Nachschlage- und Verweisfunktion - führt eine vertikale Suche nach einem Wert in der linken Spalte einer Tabelle oder eines Arrays aus und gibt den Wert in derselben Zeile basierend auf einer angegebenen Spaltenindexnummer zurück" }, + "CELL": { + "a": "(info_type; [reference])", + "d": "Informationsfunktion - werden Informationen zur Formatierung, zur Position oder zum Inhalt einer Zelle zurückgegeben" + }, "ERROR.TYPE": { "a": "(Wert)", "d": "Informationsfunktion - gibt die numerische Darstellung von einem der vorhandenen Fehler zurück" diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/en.json b/apps/spreadsheeteditor/main/resources/formula-lang/en.json index 29491b684..750499087 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/en.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/en.json @@ -197,6 +197,7 @@ "INTERCEPT": "INTERCEPT", "KURT": "KURT", "LARGE": "LARGE", + "LINEST": "LINEST", "LOGINV": "LOGINV", "LOGNORM.DIST": "LOGNORM.DIST", "LOGNORM.INV": "LOGNORM.INV", @@ -421,6 +422,7 @@ "ROWS": "ROWS", "TRANSPOSE": "TRANSPOSE", "VLOOKUP": "VLOOKUP", + "CELL": "CELL", "ERROR.TYPE": "ERROR.TYPE", "ISBLANK": "ISBLANK", "ISERR": "ISERR", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/en_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/en_desc.json index cf18dc4c9..3ff0d7372 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/en_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/en_desc.json @@ -779,6 +779,10 @@ "a": "( array , k )", "d": "Statistical function used to analyze the range of cells and return the k-th largest value" }, + "LINEST": { + "a": "( known_y's, [known_x's], [const], [stats] )", + "d": "Statistical function used to calculate the statistics for a line by using the least squares method to calculate a straight line that best fits your data, and then returns an array that describes the line; because this function returns an array of values, it must be entered as an array formula" + }, "LOGINV": { "a": "( x , mean , standard-deviation )", "d": "Statistical function used to return the inverse of the lognormal cumulative distribution function of the given x value with the specified parameters" @@ -1687,6 +1691,10 @@ "a": "( lookup-value , table-array , col-index-num [ , [ range-lookup-flag ] ] )", "d": "Lookup and reference function used to perform the vertical search for a value in the left-most column of a table or an array and return the value in the same row based on a specified column index number" }, + "CELL": { + "a": "(info_type, [reference])", + "d": "Information function used to return information about the formatting, location, or contents of a cell" + }, "ERROR.TYPE": { "a": "(value)", "d": "Information function used to return the numeric representation of one of the existing errors" diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/es.json b/apps/spreadsheeteditor/main/resources/formula-lang/es.json index 7d846c469..654d40d2b 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/es.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/es.json @@ -197,6 +197,7 @@ "INTERCEPT": "INTERSECCION.EJE", "KURT": "CURTOSIS", "LARGE": "K.ESIMO.MAYOR", + "LINEST": "ESTIMACION.LINEAL", "LOGINV": "DISTR.LOG.INV", "LOGNORM.DIST": "DISTR.LOGNORM", "LOGNORM.INV": "INV.LOGNORM", @@ -421,6 +422,7 @@ "ROWS": "FILAS", "TRANSPOSE": "TRANSPONER", "VLOOKUP": "BUSCARV", + "CELL": "CELDA", "ERROR.TYPE": "TIPO.DE.ERROR", "ISBLANK": "ESBLANCO", "ISERR": "ESERR", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/es_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/es_desc.json index 27adc8e03..d47c20e49 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/es_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/es_desc.json @@ -779,6 +779,10 @@ "a": "( conjunto , k )", "d": "Función estadística utilizada para analizar el rango de celdas y devolver el mayor valor" }, + "LINEST": { + "a": "( known_y's, [known_x's], [const], [stats] )", + "d": "Función estadística utilizada para calcula las estadísticas de una línea con el método de los 'mínimos cuadrados' para calcular la línea recta que mejor se ajuste a los datos y después devuelve una matriz que describe la línea; debido a que esta función devuelve una matriz de valores, debe ser especificada como fórmula de matriz" + }, "LOGINV": { "a": "(x, media, desviación-estándar)", "d": "Función estadística utilizada para devolver el inverso de la función de distribución acumulativa logarítmica del valor x dado con los parámetros especificados" @@ -1687,6 +1691,10 @@ "a": "(valor-buscar, tabla-conjunto, col-índice-núm[, [rango-buscar-marcador]])", "d": "Función de búsqueda y referencia utilizada para realizar la búsqueda vertical de un valor en la columna de la izquierda de una tabla o conjunto y devolver el valor en la misma fila basado en un número de índice de columna especificado." }, + "CELL": { + "a": "(info_type, [reference])", + "d": "Función de información utilizada para devuelve información sobre el formato, la ubicación o el contenido de una celda" + }, "ERROR.TYPE": { "a": "(valor)", "d": "Función de información utilizada para devolver la representación numérica de uno de los errores existentes" diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/fr.json b/apps/spreadsheeteditor/main/resources/formula-lang/fr.json index 908564786..27e4d86f0 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/fr.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/fr.json @@ -197,6 +197,7 @@ "INTERCEPT": "ORDONNEE.ORIGINE", "KURT": "KURTOSIS", "LARGE": "GRANDE.VALEUR", + "LINEST": "DROITEREG", "LOGINV": "LOI.LOGNORMALE.INVERSE", "LOGNORM.DIST": "LOI.LOGNORMALE.N", "LOGNORM.INV": "LOI.LOGNORMALE.INVERSE.N", @@ -421,6 +422,7 @@ "ROWS": "LIGNES", "TRANSPOSE": "TRANSPOSE", "VLOOKUP": "RECHERCHEV", + "CELL": "CELLULE", "ERROR.TYPE": "TYPE.ERREUR", "ISBLANK": "ESTVIDE", "ISERR": "ESTERR", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/fr_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/fr_desc.json index 0a1ec7cad..ec4d915e4 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/fr_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/fr_desc.json @@ -779,6 +779,10 @@ "a": "(matrice , k)", "d": "Fonction statistique utilisée pour analyser une plage de cellules et renvoyer la k-ième plus grande valeur." }, + "LINEST": { + "a": "( known_y's, [known_x's], [const], [stats] )", + "d": "Fonction statistique utilisée pour calcule les statistiques d’une droite par la méthode des moindres carrés afin de calculer une droite s’ajustant au plus près de vos données, puis renvoie une matrice qui décrit cette droite; dans la mesure où cette fonction renvoie une matrice de valeurs, elle doit être tapée sous la forme d’une formule matricielle" + }, "LOGINV": { "a": "(x, moyenne, écart_type)", "d": "Fonction statistique utilisée pour renvoyer l'inverse de la fonction de distribution de x suivant une loi lognormale cumulée en utilisant les paramètres spécifiés" @@ -1687,6 +1691,10 @@ "a": "(valeur_cherchée, table_matrice, no_index_col[, [valeur_proche]])", "d": "Fonction de recherche et référence utilisée pour effectuer la recherche verticale d'une valeur dans la première colonne à gauche d'un tableau et retourner la valeur qui se trouve dans la même ligne à la base d'un numéro d'index de colonne spécifié" }, + "CELL": { + "a": "(info_type, [reference])", + "d": "Fonction d’information utilisée pour renvoie des informations sur la mise en forme, l’emplacement ou le contenu d’une cellule" + }, "ERROR.TYPE": { "a": "(valeur)", "d": "Fonction d’information utilisée pour renvoyer un nombre correspondant à un type d'erreur" diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/it.json b/apps/spreadsheeteditor/main/resources/formula-lang/it.json index 9265e2906..49c97be18 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/it.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/it.json @@ -190,6 +190,7 @@ "INTERCEPT": "INTERCETTA", "KURT": "CURTOSI", "LARGE": "GRANDE", + "LINEST": "REGR.LIN", "LOGINV": "INV.LOGNORM", "LOGNORM.DIST": "DISTRIB.LOGNORM.N", "LOGNORM.INV": "INV.LOGNORM.N", @@ -412,6 +413,7 @@ "ROWS": "RIGHE", "TRANSPOSE": "MATR.TRASPOSTA", "VLOOKUP": "CERCA.VERT", + "CELL": "CELLA", "ERROR.TYPE": "ERRORE.TIPO", "ISBLANK": "VAL.VUOTO", "ISERR": "VAL.ERR", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/it_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/it_desc.json index 7c8e0c019..c02793ced 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/it_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/it_desc.json @@ -763,6 +763,10 @@ "a": "(matrice , k)", "d": "Restituisce il k-esimo valore più grande in un set di dati." }, + "LINEST": { + "a": "( known_y's, [known_x's], [const], [stats] )", + "d": "Questa funzione è disponibile per calcola le statistiche per una linea utilizzando il metodo dei minimi quadrati per calcolare la retta che meglio rappresenta i dati e restituisce una matrice che descrive la retta; dal momento che questa funzione restituisce una matrice di valori, deve essere immessa come formula in forma di matrice" + }, "LOGINV": { "a": "(x , media , dev_standard)", "d": "Questa funzione è disponibile per consentire la compatibilità con Excel 2007 e precedenti. Restituisce l'inversa della distribuzione lognormale di x, in cui ln(x) è distribuito normalmente con i parametri Media e Dev_standard" @@ -1651,6 +1655,10 @@ "a": "(val , matrice , indice_col [ , [ intervallo ] ])", "d": "Ricerca il valore in verticale nell'indice" }, + "CELL": { + "a": "(info_type, [reference])", + "d": "Restituisce informazioni sulla formattazione, la posizione o il contenuto di una cella" + }, "ERROR.TYPE": { "a": "(val)", "d": "Restituisce un numero corrispondente a uno dei valori di errore" diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/pl.json b/apps/spreadsheeteditor/main/resources/formula-lang/pl.json index e13c3cf32..04efaff24 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/pl.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/pl.json @@ -197,6 +197,7 @@ "INTERCEPT": "ODCIĘTA", "KURT": "KURTOZA", "LARGE": "MAX.K", + "LINEST": "REGLINP", "LOGINV": "ROZKŁAD.LOG.ODW", "LOGNORM.DIST": "ROZKŁ.LOG", "LOGNORM.INV": "ROZKŁ.LOG.ODWR", @@ -421,6 +422,7 @@ "ROWS": "ILE.WIERSZY", "TRANSPOSE": "TRANSPONUJ", "VLOOKUP": "WYSZUKAJ.PIONOWO", + "CELL": "KOMÓRKA", "ERROR.TYPE": "NR.BŁĘDU", "ISBLANK": "CZY.PUSTA", "ISERR": "CZY.BŁ", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/ru.json b/apps/spreadsheeteditor/main/resources/formula-lang/ru.json index 05c464d66..02bd0c29a 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/ru.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/ru.json @@ -197,6 +197,7 @@ "INTERCEPT": "ОТРЕЗОК", "KURT": "ЭКСЦЕСС", "LARGE": "НАИБОЛЬШИЙ", + "LINEST": "ЛИНЕЙН", "LOGINV": "ЛОГНОРМОБР", "LOGNORM.DIST": "ЛОГНОРМ.РАСП", "LOGNORM.INV": "ЛОГНОРМ.ОБР", @@ -421,6 +422,7 @@ "ROWS": "ЧСТРОК", "TRANSPOSE": "ТРАНСП", "VLOOKUP": "ВПР", + "CELL": "ЯЧЕЙКА", "ERROR.TYPE": "ТИП.ОШИБКИ", "ISBLANK": "ЕПУСТО", "ISERR": "ЕОШ", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/ru_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/ru_desc.json index 5d80d01b2..8587bf7ef 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/ru_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/ru_desc.json @@ -779,6 +779,10 @@ "a": "(массив;k)", "d": "Статистическая функция, анализирует диапазон ячеек и возвращает k-ое по величине значение" }, + "LINEST": { + "a": "( known_y's, [known_x's], [const], [stats] )", + "d": "Статистическая функция, рассчитывает статистику для ряда с применением метода наименьших квадратов, чтобы вычислить прямую линию, которая наилучшим образом аппроксимирует имеющиеся данные и затем возвращает массив, который описывает полученную прямую; поскольку возвращается массив значений, функция должна задаваться в виде формулы массива" + }, "LOGINV": { "a": "(x;среднее;стандартное_отклонение)", "d": "Статистическая функция, возвращает обратное логарифмическое нормальное распределение для заданного значения x с указанными параметрами" @@ -1687,6 +1691,10 @@ "a": "(искомое_значение;таблица;номер_столбца;[интервальный_просмотр])", "d": "Поисковая функция, используется для выполнения вертикального поиска значения в крайнем левом столбце таблицы или массива и возвращает значение, которое находится в той же самой строке в столбце с заданным номером" }, + "CELL": { + "a": "(info_type, [reference])", + "d": "Информационная функция, возвращает сведения о форматировании, расположении или содержимом ячейки" + }, "ERROR.TYPE": { "a": "(значение)", "d": "Информационная функция, возвращает числовое представление одной из существующих ошибок"