Commit 1defb142 authored by Julia Radzhabova's avatar Julia Radzhabova

[SSE] В FormulaDialog добавлено описание функций.

Список аргументов и описание функций перенесены в отдельные файлы и грузятся на стороне интерфейса, на стороне сдк грузятся только переводы имен функций.
parent 30e77f80
......@@ -100,6 +100,11 @@ define([
return this;
},
setMode: function(mode) {
this.mode = mode;
return this;
},
onLaunch: function () {
this.formulasGroups = this.getApplication().getCollection('FormulaGroups');
},
......@@ -132,6 +137,11 @@ define([
allFunctionsGroup = null;
if (store) {
var value = Common.localStorage.getItem("sse-settings-func-locale");
if (value===null)
value = ((this.mode.lang) ? this.mode.lang : 'en').split("-")[0].toLowerCase();
value = SSE.Views.FormulaLang.getDescription(value);
allFunctionsGroup = new SSE.Models.FormulaGroup ({
name : 'All',
index : index,
......@@ -160,11 +170,13 @@ define([
functions = [];
for (j = 0; j < ascFunctions.length; j += 1) {
var funcname = ascFunctions[j].asc_getName();
var func = new SSE.Models.FormulaModel({
index : funcInd,
group : ascGroupName,
name : ascFunctions[j].asc_getLocaleName(),
args : ascFunctions[j].asc_getArguments()
args : (value && value[funcname]) ? value[funcname].a : '',
desc : (value && value[funcname]) ? value[funcname].d : ''
});
funcInd += 1;
......
......@@ -645,7 +645,7 @@ define([
var formulasDlgController = application.getController('FormulaDialog');
if (formulasDlgController) {
formulasDlgController.setApi(me.api);
formulasDlgController.setMode(me.appOptions).setApi(me.api);
}
if (me.needToUpdateVersion)
toolbarController.onApiCoAuthoringDisconnect();
......
......@@ -56,7 +56,7 @@ define([
_options = {};
_.extend(_options, {
width : 300,
width : 310,
height : 490,
contentWidth : 390,
header : true,
......@@ -75,7 +75,8 @@ define([
'<label class="header" style="margin-top:10px">' + t.textListDescription + '</label>',
'<div id="formula-dlg-combo-functions" class="combo-functions"/>',
'<label id="formula-dlg-args" style="margin-top: 10px">' + '</label>',
'<label id="formula-dlg-args" style="margin-top: 7px">' + '</label>',
'<label id="formula-dlg-desc" style="margin-top: 4px">' + '</label>',
'</div>',
'</div>',
......@@ -101,6 +102,7 @@ define([
this.$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this));
this.syntaxLabel = $('#formula-dlg-args');
this.descLabel = $('#formula-dlg-desc');
this.translationTable = {};
......@@ -201,6 +203,7 @@ define([
if (func) {
this.applyFunction = func.get('name');
this.syntaxLabel.text(this.applyFunction + func.get('args'));
this.descLabel.text(func.get('desc'));
}
}
}
......@@ -299,6 +302,7 @@ define([
this.applyFunction = functions[0].get('name');
this.syntaxLabel.text(this.applyFunction + functions[0].get('args'));
this.descLabel.text(functions[0].get('desc'));
this.cmbListFunctions.scroller.update({
minScrollbarLength : 40,
alwaysVisibleY : true
......
......@@ -37,7 +37,8 @@ define([
SSE.Views = SSE.Views || {};
SSE.Views.FormulaLang = new(function() {
var langJson = {};
var langJson = {},
langDescJson = {};
var _createXMLHTTPObject = function() {
var xmlhttp;
......@@ -82,8 +83,40 @@ define([
return null;
};
var _getDescription = function(lang) {
if (!lang) return '';
lang = lang.toLowerCase() ;
if (langDescJson[lang])
return langDescJson[lang];
else {
try {
var xhrObj = _createXMLHTTPObject();
if (xhrObj && lang) {
xhrObj.open('GET', 'resources/formula-lang/' + lang + '_desc.json', false);
xhrObj.send('');
if (xhrObj.status == 200)
langDescJson[lang] = eval("(" + xhrObj.responseText + ")");
else {
xhrObj.open('GET', 'resources/formula-lang/en_desc.json', false);
xhrObj.send('');
langDescJson[lang] = eval("(" + xhrObj.responseText + ")");
}
return langDescJson[lang];
}
}
catch (e) {
}
}
return null;
};
return {
get: _get
get: _get,
getDescription: _getDescription
};
})();
});
{"DATE":{"a":"( year, month, day )","d":"Date and time function used to add dates in the default format MM/dd/yyyy"},"DATEDIF":{"a":"( start-date , end-date , unit )","d":"Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified"},"DATEVALUE":{"a":"( date-time-string )","d":"Date and time function used to return a serial number of the specified date"},"DAY":{"a":"( date-value )","d":"Date and time function which returns the day (a number from 1 to 31) of the date given in the numerical format (MM/dd/yyyy by default)"},"DAYS360":{"a":"( start-date , end-date [ , method-flag ] )","d":"Date and time function used to return the number of days between two dates (start-date and end-date) based on a 360-day year using one of the calculation method (US or European)"},"EDATE":{"a":"( start-date , month-offset )","d":"Date and time function used to return the serial number of the date which comes the indicated number of months (month-offset) before or after the specified date (start-date)"},"EOMONTH":{"a":"( start-date , month-offset )","d":"Date and time function used to return the serial number of the last day of the month that comes the indicated number of months before or after the specified start date"},"HOUR":{"a":"( time-value )","d":"Date and time function which returns the hour (a number from 0 to 23) of the time value"},"MINUTE":{"a":"( time-value )","d":"Date and time function which returns the minute (a number from 0 to 59) of the time value"},"MONTH":{"a":"( date-value )","d":"Date and time function which returns the month (a number from 1 to 12) of the date given in the numerical format (MM/dd/yyyy by default)"},"NETWORKDAYS":{"a":"( start-date , end-date [ , holidays ] )","d":"Date and time function used to return the number of the work days between two dates (start date and end-date) excluding weekends and dates considered as holidays"},"NOW":{"a":"()","d":""},"SECOND":{"a":"( time-value )","d":"Date and time function which returns the second (a number from 0 to 59) of the time value"},"TIME":{"a":"( hour, minute, second )","d":"Date and time function used to add a particular time in the selected format (hh:mm tt by default)"},"TIMEVALUE":{"a":"( date-time-string )","d":"Date and time function used to return the serial number of a time"},"TODAY":{"a":"()","d":"Date and time function used to add the current day in the following format MM/dd/yy. This function does not require an argument"},"WEEKDAY":{"a":"( serial-value [ , weekday-start-flag ] )","d":"Date and time function used to determine which day of the week the specified date is"},"WEEKNUM":{"a":"( serial-value [ , weekday-start-flag ] )","d":"date and time functions. It used to return the number of the week the specified date falls within the year"},"WORKDAY":{"a":"( start-date , day-offset [ , holidays ] )","d":"Date and time function used to return the date which comes the indicated number of days (day-offset) before or after the specified start date excluding weekends and dates considered as holidays"},"YEAR":{"a":"( date-value )","d":"Date and time function which returns the year (a number from 1900 to 9999) of the date given in the numerical format (MM/dd/yyyy by default)"},"YEARFRAC":{"a":"( start-date , end-date [ , basis ] )","d":"Date and time function used to return the fraction of a year represented by the number of whole days from start-date to end-date calculated on the specified basis"},"BIN2DEC":{"a":"( number )","d":"Engineering function used to convert a binary number into a decimal number"},"BIN2HEX":{"a":"( number [ , num-hex-digits ] )","d":"Engineering function used to convert a binary number into a hexadecimal number"},"BIN2OCT":{"a":"( number [ , num-hex-digits ] )","d":"Engineering function used to convert a binary number into an octal number"},"COMPLEX":{"a":"( real-number , imaginary-number [ , suffix ] )","d":"Engineering function used to convert a real part and an imaginary part into the complex number expressed in a + bi or a + bj form"},"DEC2BIN":{"a":"( number [ , num-hex-digits ] )","d":"Engineering function used to convert a decimal number into a binary number"},"DEC2HEX":{"a":"( number [ , num-hex-digits ] )","d":"Engineering function used to convert a decimal number into a hexadecimal number"},"DEC2OCT":{"a":"( number [ , num-hex-digits ] )","d":"Engineering function used to convert a decimal number into an octal number"},"DELTA":{"a":"( number-1 [ , number-2 ] )","d":"Engineering function used to test if two numbers are equal. The function returns 1 if the numbers are equal and 0 otherwise"},"ERF":{"a":"( lower-bound [ , upper-bound ] )","d":"Engineering function used to calculate the error function integrated between the specified lower and upper limits"},"ERFC":{"a":"( lower-bound )","d":"Engineering function used to calculate the complementary error function integrated between the specified lower limit and infinity"},"GESTEP":{"a":"( number [ , step ] )","d":"Engineering function used to test if a number is greater than a threshold value. The function returns 1 if the number is greater than or equal to the threshold value and 0 otherwise"},"HEX2BIN":{"a":"( number [ , num-hex-digits ] )","d":"Engineering function used to convert a hexadecimal number to a binary number"},"HEX2DEC":{"a":"( number )","d":"Engineering function used to convert a hexadecimal number into a decimal number"},"HEX2OCT":{"a":"( number [ , num-hex-digits ] )","d":"Engineering function used to convert a hexadecimal number to an octal number"},"IMABS":{"a":"( complex-number )","d":"Engineering function used to return the absolute value of a complex number"},"IMAGINARY":{"a":"( complex-number )","d":"Engineering function used to return the imaginary part of the specified complex number"},"IMARGUMENT":{"a":"( complex-number )","d":"Engineering function used to return the argument Theta, an angle expressed in radians"},"IMCONJUGATE":{"a":"( complex-number )","d":"Engineering function used to return the complex conjugate of a complex number"},"IMCOS":{"a":"( complex-number )","d":"Engineering function used to return the cosine of a complex number"},"IMDIV":{"a":"( complex-number-1 , complex-number-2 )","d":"Engineering function used to return the quotient of two complex numbers expressed in a + bi or a + bj form"},"IMEXP":{"a":"( complex-number )","d":"Engineering function used to return the e constant raised to the to the power specified by a complex number. The e constant is equal to 2,71828182845904"},"IMLN":{"a":"( complex-number )","d":"Engineering function used to return the natural logarithm of a complex number"},"IMLOG10":{"a":"( complex-number )","d":"Engineering function used to return the logarithm of a complex number to a base of 10"},"IMLOG2":{"a":"( complex-number )","d":"Engineering function used to return the logarithm of a complex number to a base of 2"},"IMPOWER":{"a":"( complex-number, power )","d":"Engineering function used to return the result of a complex number raised to the desired power"},"IMPRODUCT":{"a":"( argument-list )","d":"Engineering function used to return the product of the specified complex numbers"},"IMREAL":{"a":"( complex-number )","d":"Engineering function used to return the real part of the specified complex number"},"IMSIN":{"a":"( complex-number )","d":"Engineering function used to return the sine of a complex number"},"IMSQRT":{"a":"( complex-number )","d":"Engineering function used to return the square root of a complex number"},"IMSUB":{"a":"( complex-number-1 , complex-number-2 )","d":"Engineering function used to return the difference of two complex numbers expressed in a + bi or a + bj form"},"IMSUM":{"a":"( argument-list )","d":"Engineering function used to return the sum of the specified complex numbers"},"OCT2BIN":{"a":"( number [ , num-hex-digits ] )","d":"Engineering function used to convert an octal number to a binary number"},"OCT2DEC":{"a":"( number )","d":"Engineering function used to convert an octal number to a decimal number"},"OCT2HEX":{"a":"( number [ , num-hex-digits ] )","d":"Engineering function used to convert an octal number to a hexadecimal number"},"CHAR":{"a":"( number )","d":"Text and data function used to return the ASCII character specified by a number"},"CLEAN":{"a":"( string )","d":"Text and data function used to remove all the nonprintable characters from the selected string"},"CODE":{"a":"( string )","d":"Text and data function used to return the ASCII value of the specified character or the first character in a cell"},"CONCATENATE":{"a":"(text1, text2, ...)","d":"Text and data function used to combine the data from two or more cells into a single one"},"DOLLAR":{"a":"( number [ , num-decimal ] )","d":"Text and data function used to convert a number to text, using a currency format $#.##"},"EXACT":{"a":"(text1, text2)","d":"Text and data function used to compare data in two cells. The function returns TRUE if the data are the same, and FALSE if not"},"FIND":{"a":"( string-1 , string-2 [ , start-pos ] )","d":"Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages that use the single-byte character set (SBCS)"},"FINDB":{"a":"( string-1 , string-2 [ , start-pos ] )","d":"Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc."},"FIXED":{"a":"( number [ , [ num-decimal ] [ , suppress-commas-flag ] ] )","d":"Text and data function used to return the text representation of a number rounded to a specified number of decimal places"},"LEFT":{"a":"( string [ , number-chars ] )","d":"Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the single-byte character set (SBCS)"},"LEFTB":{"a":"( string [ , number-chars ] )","d":"Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc."},"LEN":{"a":"( string )","d":"Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the single-byte character set (SBCS)"},"LENB":{"a":"( string )","d":"Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc."},"LOWER":{"a":"(text)","d":"Text and data function used to convert uppercase letters to lowercase in the selected cell"},"MID":{"a":"( string , start-pos , number-chars )","d":"Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the single-byte character set (SBCS)"},"MIDB":{"a":"( string , start-pos , number-chars )","d":"Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc."},"PROPER":{"a":"( string )","d":"Text and data function used to convert the first character of each word to uppercase and all the remaining characters to lowercase"},"REPLACE":{"a":"( string-1, start-pos, number-chars, string-2 )","d":"Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the single-byte character set (SBCS)"},"REPLACEB":{"a":"( string-1, start-pos, number-chars, string-2 )","d":"Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc."},"REPT":{"a":"(text, number_of_times)","d":"Text and data function used to repeat the data in the selected cell as many time as you wish"},"RIGHT":{"a":"( string [ , number-chars ] )","d":"Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the single-byte character set (SBCS)"},"RIGHTB":{"a":"( string [ , number-chars ] )","d":"Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc."},"SEARCH":{"a":"( string-1 , string-2 [ , start-pos ] )","d":"Text and data function used to return the location of the specified substring in a string and is intended for languages that use the single-byte character set (SBCS)"},"SEARCHB":{"a":"( string-1 , string-2 [ , start-pos ] )","d":"Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc."},"SUBSTITUTE":{"a":"( string , old-string , new-string [ , occurence ] )","d":"Text and data function used to replace a set of characters with a new one"},"T":{"a":"( value )","d":"Text and data function used to check whether the value in the cell (or used as argument) is text or not. In case it is not text, the function returns blank result. In case the value/argument is text, the function returns the same text value"},"TEXT":{"a":"( value , format )","d":"Text and data function used to convert a value to a text in the specified format"},"TRIM":{"a":"( string )","d":"Text and data function used to remove the leading and trailing spaces from a string"},"UPPER":{"a":"(text)","d":"Text and data function used to convert lowercase letters to uppercase in the selected cell"},"VALUE":{"a":"( string )","d":"Text and data function used to convert a text value that represents a number to a number. If the converted text is not a number, the function will return a #VALUE! error"},"AVEDEV":{"a":"( argument-list )","d":"Statistical function used to analyze the range of data and return the average of the absolute deviations of numbers from their mean"},"AVERAGE":{"a":"( argument-list )","d":"Statistical function used to analyze the range of data and find the average value"},"AVERAGEA":{"a":"( argument-list )","d":"Statistical function used to analyze the range of data including text and logical values and find the average value. The AVERAGEA function treats text and FALSE as a value of 0 and TRUE as a value of 1"},"AVERAGEIF":{"a":"( cell-range, selection-criteria [ , average-range ] )","d":"Statistical function used to analyze the range of data and find the average value of all numbers in a range of cells, based on the specified criterion"},"BINOMDIST":{"a":"( number-successes , number-trials , success-probability , cumulative-flag )","d":"Statistical function used to return the individual term binomial distribution probability"},"CONFIDENCE":{"a":"( alpha , standard-dev , size )","d":"Statistical function used to return the confidence interval"},"CORREL":{"a":"( array-1 , array-2 )","d":"Statistical function used to analyze the range of data and return the correlation coefficient of two range of cells"},"COUNT":{"a":"( argument-list )","d":"Statistical function used to count the number of the selected cells which contain numbers ignoring empty cells or those contaning text"},"COUNTA":{"a":"( argument-list )","d":"Statistical function used to analyze the range of cells and count the number of cells that are not empty"},"COUNTBLANK":{"a":"( argument-list )","d":"Statistical function used to analyze the range of cells and return the number of the empty cells"},"COUNTIF":{"a":"( cell-range, selection-criteria )","d":"Statistical function used to count the number of the selected cells based on the specified criterion"},"COVAR":{"a":"( array-1 , array-2 )","d":"Statistical function used to return the covariance of two ranges of data"},"CRITBINOM":{"a":"( number-trials , success-probability , alpha )","d":"Statistical function used to return the smallest value for which the cumulative binomial distribution is greater than or equal to the specified alpha value"},"DEVSQ":{"a":"( argument-list )","d":"Statistical function used to analyze the range of data and sum the squares of the deviations of numbers from their mean"},"EXPONDIST":{"a":"( x , lambda , cumulative-flag )","d":"Statistical function used to return the exponential distribution"},"FISHER":{"a":"( number )","d":"Statistical function used to return the Fisher transformation of a number"},"FISHERINV":{"a":"( number )","d":"Statistical function used to perform the inverse of Fisher transformation"},"FORECAST":{"a":"( x , array-1 , array-2 )","d":"Statistical function used to predict a future value based on existing values provided"},"FREQUENCY":{"a":"( data-array , bins-array )","d":"Statistical function used to сalculate how often values occur within the selected range of cells and display the first value of the returned vertical array of numbers"},"GAMMALN":{"a":"(number)","d":"Statistical function used to return the natural logarithm of the gamma function"},"GEOMEAN":{"a":"( argument-list )","d":"Statistical function used to calculate the geometric mean of the argument list"},"HARMEAN":{"a":"( argument-list )","d":"Statistical function used to calculate the harmonic mean of the argument list"},"HYPGEOMDIST":{"a":"( sample-successes , number-sample , population-successes , number-population )","d":"Statistical function used to return the hypergeometric distribution, the probability of a given number of sample successes, given the sample size, population successes, and population size"},"INTERCEPT":{"a":"( array-1 , array-2 )","d":"Statistical function used to analyze the first array values and second array values to calculate the intersection point"},"KURT":{"a":"( argument-list )","d":"Statistical function used to return the kurtosis of the argument list"},"LARGE":{"a":"( array , k )","d":"Statistical function used to analyze the range of cells and return the nth largest value"},"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"},"LOGNORMDIST":{"a":"( x , mean , standard-deviation )","d":"Statistical function used to analyze logarithmically transformed data and return the lognormal cumulative distribution function of the given x value with the specified parameters"},"MAX":{"a":"(number1, number2, ...)","d":"Statistical function used to analyze the range of data and find the largest number"},"MAXA":{"a":"(number1, number2, ...)","d":"Statistical function used to analyze the range of data and find the largest value"},"MEDIAN":{"a":"( argument-list )","d":"Statistical function used to calculate the median of the argument list"},"MIN":{"a":"(number1, number2, ...)","d":"Statistical function used to analyze the range of data and find the smallest number"},"MINA":{"a":"(number1, number2, ...)","d":"Statistical function used to analyze the range of data and find the smallest value"},"MODE":{"a":"( argument-list )","d":"Statistical function used to analyze the range of data and return the most frequently occurring value"},"NEGBINOMDIST":{"a":"( number-failures , number-successes , success-probability )","d":"Statistical function used to return the negative binomial distribution"},"NORMDIST":{"a":"( x , mean , standard-deviation , cumulative-flag )","d":"Statistical function used to return the normal distribution for the specified mean and standard deviation"},"NORMINV":{"a":"( x , mean , standard-deviation )","d":"Statistical function used to return the inverse of the normal cumulative distribution for the specified mean and standard deviation"},"NORMSDIST":{"a":"(number)","d":"Statistical function used to return the standard normal cumulative distribution function"},"NORMSINV":{"a":"( probability )","d":"Statistical function used to return the inverse of the standard normal cumulative distribution"},"PEARSON":{"a":"( array-1 , array-2 )","d":"Statistical function used to return the Pearson product moment correlation coefficient"},"PERCENTILE":{"a":"( array , k )","d":"Statistical function used to analyze the range of data and return the nth percentile"},"PERCENTRANK":{"a":"( array , x [ , significance ] )","d":"Statistical function used to return the rank of a value in a set of values as a percentage of the set"},"PERMUT":{"a":"( number , number-chosen )","d":"Statistical function used to return the number of permutations for a specified number of items"},"POISSON":{"a":"( x , mean , cumulative-flag )","d":"Statistical function used to return the Poisson distribution"},"PROB":{"a":"( x-range , probability-range , lower-limit [ , upper-limit ] )","d":"Statistical function used to return the probability that values in a range are between lower and upper limits"},"QUARTILE":{"a":"( array , result-category )","d":"Statistical function used to analyze the range of data and return the quartile"},"RSQ":{"a":"( array-1 , array-2 )","d":"Statistical function used to return the square of the Pearson product moment correlation coefficient"},"SKEW":{"a":"( argument-list )","d":"Statistical function used to analyze the range of data and return the skewness of a distribution of the argument list"},"SLOPE":{"a":"( array-1 , array-2 )","d":"Statistical function used to return the slope of the linear regression line through data in two arrays"},"SMALL":{"a":"( array , k )","d":"Statistical function used to analyze the range of data and find the nth smallest value"},"STANDARDIZE":{"a":"( x , mean , standard-deviation )","d":"Statistical function used to return a normalized value from a distribution characterized by the specified parameters"},"STDEV":{"a":"( argument-list )","d":"Statistical function used to analyze the range of data and return the standard deviation of a population based on a set of numbers"},"STDEVA":{"a":"( argument-list )","d":"Statistical function used to analyze the range of data and return the standard deviation of a population based on a set of numbers, text, and logical values (TRUE or FALSE). The STDEVA function treats text and FALSE as a value of 0 and TRUE as a value of 1"},"STDEVP":{"a":"( argument-list )","d":"Statistical function used to analyze the range of data and return the standard deviation of an entire population"},"STDEVPA":{"a":"( argument-list )","d":"Statistical function used to analyze the range of data and return the standard deviation of an entire population"},"STEYX":{"a":"( known-ys , known-xs )","d":"Statistical function used to return the standard error of the predicted y-value for each x in the regression line"},"VAR":{"a":"( argument-list )","d":"Statistical function used to analyze the set of values and calculate the sample variance"},"VARA":{"a":"( argument-list )","d":"Statistical function used to analyze the set of values and calculate the sample variance"},"VARP":{"a":"( argument-list )","d":"Statistical function used to analyze the set of values and calculate the variance of an entire population"},"VARPA":{"a":"( argument-list )","d":"Statistical function used to analyze the set of values and return the variance of an entire population"},"ACCRINT":{"a":"( issue , first-interest , settlement , rate , [ par ] , frequency [ , [ basis ] ] )","d":"Financial function used to calculate the accrued interest for a security that pays periodic interest"},"ACCRINTM":{"a":"( issue , settlement , rate , [ [ par ] [ , [ basis ] ] ] )","d":"Financial function used to calculate the accrued interest for a security that pays interest at maturity"},"AMORDEGRC":{"a":"( cost , date-purchased , first-period , salvage , period , rate [ , [ basis ] ] )","d":"Financial function used to calculate the depreciation of an asset for each accounting period using a degressive depreciation method"},"AMORLINC":{"a":"( cost , date-purchased , first-period , salvage , period , rate [ , [ basis ] ] )","d":"Financial function used to calculate the depreciation of an asset for each accounting period using a linear depreciation method"},"COUPDAYBS":{"a":"( settlement , maturity , frequency [ , [ basis ] ] )","d":"Financial function used to calculate the number of days from the beginning of the coupon period to the settlement date"},"COUPDAYS":{"a":"( settlement , maturity , frequency [ , [ basis ] ] )","d":"Financial function used to calculate the number of days in the coupon period that contains the settlement date"},"COUPDAYSNC":{"a":"( settlement , maturity , frequency [ , [ basis ] ] )","d":"Financial function used to calculate the number of days from the settlement date to the next coupon payment"},"COUPNCD":{"a":"( settlement , maturity , frequency [ , [ basis ] ] )","d":"Financial function used to calculate the next coupon date after the settlement date"},"COUPNUM":{"a":"( settlement , maturity , frequency [ , [ basis ] ] )","d":"Financial function used to calculate the number of coupons between the settlement date and the maturity date"},"COUPPCD":{"a":"( settlement , maturity , frequency [ , [ basis ] ] )","d":"Financial function used to calculate the previous coupon date before the settlement date"},"CUMIPMT":{"a":"( rate , nper , pv , start-period , end-period , type )","d":"Financial function used to calculate the cumulative interest paid on an investment between two periods based on a specified interest rate and a constant payment schedule"},"CUMPRINC":{"a":"( rate , nper , pv , start-period , end-period , type )","d":"Financial function used to calculate the cumulative principal paid on an investment between two periods based on a specified interest rate and a constant payment schedule"},"DB":{"a":"( cost , salvage , life , period [ , [ month ] ] )","d":"Financial function used to calculate the depreciation of an asset for a specified accounting period using the fixed-declining balance method"},"DDB":{"a":"( cost , salvage , life , period [ , factor ] )","d":"Financial function used to calculate the depreciation of an asset for a specified accounting period using the double-declining balance method"},"DISC":{"a":"( settlement , maturity , pr , redemption [ , [ basis ] ] )","d":"Financial function used to calculate the discount rate for a security"},"DOLLARDE":{"a":"( fractional-dollar , fraction )","d":"Financial function used to convert a dollar price represented as a fraction into a dollar price represented as a decimal number"},"DOLLARFR":{"a":"( decimal-dollar , fraction )","d":"Financial function used to convert a dollar price represented as a decimal number into a dollar price represented as a fraction"},"DURATION":{"a":"( settlement , maturity , coupon , yld , frequency [ , [ basis ] ] )","d":"Financial function used to calculate the Macaulay duration of a security with an assumed par value of $100"},"EFFECT":{"a":"( nominal-rate , npery )","d":"Financial function used to calculate the effective annual interest rate for a security based on a specified nominal annual interest rate and the number of compounding periods per year"},"FV":{"a":"( rate , nper , pmt [ , [ pv ] [ ,[ type ] ] ] )","d":"Financial function used to calculate the future value of an investment based on a specified interest rate and a constant payment schedule"},"FVSCHEDULE":{"a":"( principal , schedule )","d":"Financial function used to calculate the future value of an investment based on a series of changeable interest rates"},"INTRATE":{"a":"( settlement , maturity , pr , redemption [ , [ basis ] ] )","d":"Financial function used to calculate the interest rate for a fully invested security that pays interest only at maturity"},"IPMT":{"a":"( rate , per , nper , pv [ , [ fv ] [ , [ type ] ] ] )","d":"Financial function used to calculate the interest payment for an investment based on a specified interest rate and a constant payment schedule"},"IRR":{"a":"( values [ , [ guess ] ] )","d":"Financial function used to calculate the internal rate of return for a series of periodic cash flows"},"ISPMT":{"a":"( rate , per , nper , pv )","d":"Financial function used to calculate the interest payment for a specified period of an investment based on a constant payment schedule"},"MDURATION":{"a":"( settlement , maturity , coupon , yld , frequency [ , [ basis ] ] )","d":"Financial function used to calculate the modified Macaulay duration of a security with an assumed par value of $100"},"MIRR":{"a":"( values , finance-rate , reinvest-rate )","d":"Financial function used to calculate the modified internal rate of return for a series of periodic cash flows"},"NOMINAL":{"a":"( effect-rate , npery )","d":"Financial function used to calculate the nominal annual interest rate for a security based on a specified effective annual interest rate and the number of compounding periods per year"},"NPER":{"a":"( rate , pmt , pv [ , [ fv ] [ , [ type ] ] ] )","d":"Financial function used to calculate the number of periods for an investment based on a specified interest rate and a constant payment schedule"},"NPV":{"a":"( rate , argument-list )","d":"Financial function used to calculate the net present value of an investment based on a specified discount rate"},"ODDFPRICE":{"a":"( settlement , maturity , issue , first-coupon , rate , yld , redemption , frequency [ , [ basis ] ] )","d":"Financial function used to calculate the price per $100 par value for a security that pays periodic interest but has an odd first period (it is shorter or longer than other periods)"},"ODDFYIELD":{"a":"( settlement , maturity , issue , first-coupon , rate , pr , redemption , frequency [ , [ basis ] ] )","d":"Financial function used to calculate the yield of a security that pays periodic interest but has an odd first period (it is shorter or longer than other periods)"},"ODDLPRICE":{"a":"( settlement , maturity , last-interest , rate , yld , redemption , frequency [ , [ basis ] ] )","d":"Financial function used to calculate the price per $100 par value for a security that pays periodic interest but has an odd last period (it is shorter or longer than other periods)"},"ODDLYIELD":{"a":"( settlement , maturity , last-interest , rate , pr , redemption , frequency [ , [ basis ] ] )","d":"Financial function used to calculate the yield of a security that pays periodic interest but has an odd last period (it is shorter or longer than other periods)"},"PMT":{"a":"( rate , nper , pv [ , [ fv ] [ ,[ type ] ] ] )","d":"Financial function used to calculate the payment amount for a loan based on a specified interest rate and a constant payment schedule"},"PPMT":{"a":"( rate , per , nper , pv [ , [ fv ] [ , [ type ] ] ] )","d":"Financial function used to calculate the principal payment for an investment based on a specified interest rate and a constant payment schedule"},"PRICE":{"a":"( settlement , maturity , rate , yld , redemption , frequency [ , [ basis ] ] )","d":"Financial function used to calculate the price per $100 par value for a security that pays periodic interest"},"PRICEDISC":{"a":"( settlement , maturity , discount , redemption [ , [ basis ] ] )","d":"Financial function used to calculate the price per $100 par value for a discounted security"},"PRICEMAT":{"a":"( settlement , maturity , issue , rate , yld [ , [ basis ] ] )","d":"Financial function used to calculate the price per $100 par value for a security that pays interest at maturity"},"PV":{"a":"( rate , nper , pmt [ , [ fv ] [ ,[ type ] ] ] )","d":"Financial function used to calculate the present value of an investment based on a specified interest rate and a constant payment schedule"},"RATE":{"a":"( nper , pmt , pv [ , [ [ fv ] [ , [ [ type ] [ , [ guess ] ] ] ] ] ] )","d":"Financial function used to calculate the interest rate for an investment based on a constant payment schedule"},"RECEIVED":{"a":"( settlement , maturity , investment , discount [ , [ basis ] ] )","d":"Financial function used to calculate the amount received at maturity for a fully invested security"},"SLN":{"a":"( cost , salvage , life )","d":"Financial function used to calculate the depreciation of an asset for one accounting period using the straight-line depreciation method"},"SYD":{"a":"( cost , salvage , life , per )","d":"Financial function used to calculate the depreciation of an asset for a specified accounting period using the sum of the years' digits method"},"TBILLEQ":{"a":"( settlement , maturity , discount )","d":"Financial function used to calculate the bond-equivalent yield of a Treasury bill"},"TBILLPRICE":{"a":"( settlement , maturity , discount )","d":"Financial function used to calculate the price per $100 par value for a Treasury bill"},"TBILLYIELD":{"a":"( settlement , maturity , pr )","d":"Financial function used to calculate the yield of a Treasury bill"},"VDB":{"a":"( cost , salvage , life , start-period , end-period [ , [ [ factor ] [ , [ no-switch-flag ] ] ] ] ] )","d":"Financial function used to calculate the depreciation of an asset for a specified or partial accounting period using the variable declining balance method"},"XIRR":{"a":"( values , dates [ , [ guess ] ] )","d":"Financial function used to calculate the internal rate of return for a series of irregular cash flows"},"XNPV":{"a":"( rate , values , dates )","d":"Financial function used to calculate the net present value for an investment based on a specified interest rate and a schedule of irregular payments"},"YIELD":{"a":"( settlement , maturity , rate , pr , redemption , frequency [ , [ basis ] ] )","d":"Financial function used to calculate the yield of a security that pays periodic interest"},"YIELDDISC":{"a":"( settlement , maturity , pr , redemption , [ , [ basis ] ] )","d":"Financial function used to calculate the annual yield of a discounted security"},"YIELDMAT":{"a":"( settlement , maturity , issue , rate , pr [ , [ basis ] ] )","d":"Financial function used to calculate the annual yield of a security that pays interest at maturity"},"ABS":{"a":"( x )","d":"Math and trigonometry function used to return the absolute value of a number"},"ACOS":{"a":"( x )","d":"Math and trigonometry function used to return the arccosine of a number"},"ACOSH":{"a":"( x )","d":"Math and trigonometry function used to return the inverse hyperbolic cosine of a number"},"ASIN":{"a":"( x )","d":"Math and trigonometry function used to return the arcsine of a number"},"ASINH":{"a":"( x )","d":"Math and trigonometry function used to return the inverse hyperbolic sine of a number"},"ATAN":{"a":"( x )","d":"Math and trigonometry function used to return the arctangent of a number"},"ATAN2":{"a":"( x, y )","d":"Math and trigonometry function used to return the arctangent of x and y coordinates"},"ATANH":{"a":"( x )","d":"Math and trigonometry function used to return the inverse hyperbolic tangent of a number"},"CEILING":{"a":"( x, significance )","d":"Math and trigonometry function used to round the number up to the nearest multiple of significance"},"COMBIN":{"a":"( number , number-chosen )","d":"Math and trigonometry function used to return the number of combinations for a specified number of items"},"COS":{"a":"( x )","d":"Math and trigonometry function used to return the cosine of an angle"},"COSH":{"a":"( x )","d":"Math and trigonometry function used to return the hyperbolic cosine of a number"},"DEGREES":{"a":"( angle )","d":"Math and trigonometry function used to convert radians into degrees"},"EVEN":{"a":"( x )","d":"Math and trigonometry function used to round the number up to the nearest even integer"},"EXP":{"a":"( x )","d":"Math and trigonometry function used to return the e constant raised to the desired power. The e constant is equal to 2,71828182845904"},"FACT":{"a":"( x )","d":"Math and trigonometry function used to return the factorial of a number"},"FACTDOUBLE":{"a":"( x )","d":"Math and trigonometry function used to return the double factorial of a number"},"FLOOR":{"a":"( x, significance )","d":"Math and trigonometry function used to round the number down to the nearest multiple of significance"},"GCD":{"a":"( argument-list )","d":"Math and trigonometry function used to return the greatest common divisor of two or more numbers"},"INT":{"a":"( x )","d":"Math and trigonometry function used to analyze and return the integer part of the specified number"},"LCM":{"a":"( argument-list )","d":"Math and trigonometry function used to return the lowest common multiple of one or more numbers"},"LN":{"a":"( x )","d":"Math and trigonometry function used to return the natural logarithm of a number"},"LOG":{"a":"( x [ , base ] )","d":"Math and trigonometry function used to return the logarithm of a number to a specified base"},"LOG10":{"a":"( x )","d":"Math and trigonometry function used to return the logarithm of a number to a base of 10"},"MDETERM":{"a":"( array )","d":"Math and trigonometry function used to return the matrix determinant of an array"},"MINVERSE":{"a":"( array )","d":"Math and trigonometry function used to return the inverse matrix for a given matrix and display the first value of the returned array of numbers"},"MMULT":{"a":"( array1, array2 )","d":"Math and trigonometry function used to return the matrix product of two arrays and display the first value of the returned array of numbers"},"MOD":{"a":"( x, y )","d":"Math and trigonometry function used to return the remainder after the division of a number by the specified divisor"},"MROUND":{"a":"( x, multiple )","d":"Math and trigonometry function used to round the number to the desired multiple"},"MULTINOMIAL":{"a":"( argument-list )","d":"Math and trigonometry function used to return the ratio of the factorial of a sum of numbers to the product of factorials"},"ODD":{"a":"( x )","d":"Math and trigonometry function used to round the number up to the nearest odd integer"},"PI":{"a":"()","d":"math and trigonometry functions. The function returns the mathematical constant pi, equal to 3.14159265358979. It does not require any argument"},"POWER":{"a":"( x, y )","d":"Math and trigonometry function used to return the result of a number raised to the desired power"},"PRODUCT":{"a":"( argument-list )","d":"Math and trigonometry function used to multiply all the numbers in the selected range of cells and return the product"},"QUOTIENT":{"a":"( dividend , divisor )","d":"Math and trigonometry function used to return the integer portion of a division"},"RADIANS":{"a":"( angle )","d":"Math and trigonometry function used to convert degrees into radians"},"RAND":{"a":"()","d":"math and trigonometry functions. The function returns a random number greater than or equal to 0 and less than 1. It does not require any argument"},"RANDBETWEEN":{"a":"( lower-bound , upper-bound )","d":"math and trigonometry functions. The function returns a random number greater than or equal to lower-bound and less than or equal to upper-bound"},"ROMAN":{"a":"( number, form )","d":"math and trigonometry functions. The function is used to convert a number to a roman numeral"},"ROUND":{"a":"( x , number-digits )","d":"Math and trigonometry function used to round the number to the desired number of digits"},"ROUNDDOWN":{"a":"( x , number-digits )","d":"Math and trigonometry function used to round the number down to the desired number of digits"},"ROUNDUP":{"a":"( x , number-digits )","d":"Math and trigonometry function used to round the number up to the desired number of digits"},"SERIESSUM":{"a":"( input-value , initial-power , step , coefficients )","d":"Math and trigonometry function used to return the sum of a power series"},"SIGN":{"a":"( x )","d":"Math and trigonometry function used to return the sign of a number. If the number is positive, the function returns 1. If the number is negative, the function returns -1. If the number is 0, the function returns 0"},"SIN":{"a":"( x )","d":"Math and trigonometry function used to return the sine of an angle"},"SINH":{"a":"( x )","d":"Math and trigonometry function used to return the hyperbolic sine of a number"},"SQRT":{"a":"( x )","d":"Math and trigonometry function used to return the square root of a number"},"SQRTPI":{"a":"( x )","d":"one of the Math and trigonometry function used to return the square root of the pi constant (3.14159265358979) multiplied by the specified number"},"SUBTOTAL":{"a":"( function-number , argument-list )","d":"Returns a subtotal in a list or database"},"SUM":{"a":"( argument-list )","d":"Math and trigonometry function used to add all the numbers in the selected range of cells and return the result"},"SUMIF":{"a":"( cell-range, selection-criteria [ , sum-range ] )","d":"Math and trigonometry function used to add all the numbers in the selected range of cells based on the specified criterion and return the result"},"SUMPRODUCT":{"a":"( argument-list )","d":"Math and trigonometry function used to multiply the values in the selected ranges of cells or arrays and return the sum of the products"},"SUMSQ":{"a":"( argument-list )","d":"Math and trigonometry function used to add the squares of numbers and return the result"},"SUMX2MY2":{"a":"( array-1 , array-2 )","d":"Math and trigonometry function used to sum the difference of squares between two arrays"},"SUMX2PY2":{"a":"( array-1 , array-2 )","d":"Math and trigonometry function used to sum the squares of numbers in the selected arrays and return the sum of the results"},"SUMXMY2":{"a":"( array-1 , array-2 )","d":"Math and trigonometry function used to return the sum of the squares of the differences between corresponding items in the arrays"},"TAN":{"a":"( x )","d":"Math and trigonometry function used to return the tangent of an angle"},"TANH":{"a":"( x )","d":"Math and trigonometry function used to return the hyperbolic tangent of a number"},"TRUNC":{"a":"( x [ , number-digits ] )","d":"Math and trigonometry function used to return a number truncated to a specified number of digits"},"ADDRESS":{"a":"( row-number , col-number [ , [ ref-type ] [ , [ A1-ref-style-flag ] [ , sheet-name ] ] ] )","d":"Lookup and reference function used to return a text representation of a cell address"},"CHOOSE":{"a":"( index , argument-list )","d":"Lookup and reference function used to return a value from a list of values based on a specified index (position)"},"COLUMN":{"a":"( [ reference ] )","d":"Lookup and reference function used to return the column number of a cell"},"COLUMNS":{"a":"( array )","d":"Lookup and reference function used to return the number of columns in a cell reference"},"HLOOKUP":{"a":"( lookup-value , table-array , row-index-num [ , [ range-lookup-flag ] ] )","d":"Lookup and reference function used to perform the horizontal search for a value in the top row of a table or an array and return the value in the same column based on a specified row index number"},"INDEX":{"a":"( array , [ row-number ] [ , [ column-number ] ] ) INDEX( reference , [ row-number ] [ , [ column-number ] [ , [ area-number ] ] ] )","d":"Lookup and reference function used to return a value within a range of cells on the base of a specified row and column number. The INDEX function has two forms"},"INDIRECT":{"a":"( ref-text [ , [ A1-ref-style-flag ] ] )","d":"Lookup and reference function used to return the reference to a cell based on its string representation"},"LOOKUP":{"a":"( lookup-value , lookup-vector , result-vector )","d":"Lookup and reference function used to return a value from a selected range (row or column containing the data in ascending order)"},"MATCH":{"a":"( lookup-value , lookup-array [ , [ match-type ]] )","d":"Lookup and reference function used to return a relative position of a specified item in a range of cells"},"OFFSET":{"a":"( reference , rows , cols [ , [ height ] [ , [ width ] ] ] )","d":"Lookup and reference function used to return a reference to a cell displaced from the specified cell (or the upper-left cell in the range of cells) to a certain number of rows and columns"},"ROW":{"a":"( [ reference ] )","d":"Lookup and reference function used to return the row number of a cell reference"},"ROWS":{"a":"( array )","d":"Lookup and reference function used to return the number of rows in a cell references"},"TRANSPOSE":{"a":"( array )","d":"Lookup and reference function used to return the first element of an array"},"VLOOKUP":{"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"},"ERROR.TYPE":{"a":"(value)","d":"Information function used to return the numeric representation of one of the existing errors"},"ISBLANK":{"a":"(value)","d":"Information function used to check if the cell is empty or not. If the cell does not contain any value, the function returns TRUE, otherwise the function returns FALSE"},"ISERR":{"a":"(value)","d":"Information function used to check for an error value. If the cell contains an error value (except #N/A), the function returns TRUE, otherwise the function returns FALSE"},"ISERROR":{"a":"(value)","d":"Information function used to check for an error value. If the cell contains one of the error values: #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME? or #NULL, the function returns TRUE, otherwise the function returns FALSE"},"ISEVEN":{"a":"(number)","d":"Information function used to check for an even value. If the cell contains an even value, the function returns TRUE. If the value is odd, it returns FALSE"},"ISLOGICAL":{"a":"(value)","d":"Information function used to check for a logical value (TRUE or FALSE). If the cell contains a logical value, the function returns TRUE, otherwise the function returns FALSE"},"ISNA":{"a":"(value)","d":"Information function used to check for a #N/A error. If the cell contains a #N/A error value, the function returns TRUE, otherwise the function returns FALSE"},"ISNONTEXT":{"a":"(value)","d":"Information function used to check for a value that is not a text. If the cell does not contain a text value, the function returns TRUE, otherwise the function returns FALSE"},"ISNUMBER":{"a":"(value)","d":"Information function used to check for a numeric value. If the cell contains a numeric value, the function returns TRUE, otherwise the function returns FALSE"},"ISODD":{"a":"(number)","d":"Information function used to check for an odd value. If the cell contains an odd value, the function returns TRUE. If the value is even, it returns FALSE"},"ISREF":{"a":"(value)","d":"Information function used to verify if the value is a valid cell reference"},"ISTEXT":{"a":"(value)","d":"Information function used to check for a text value. If the cell contains a text value, the function returns TRUE, otherwise the function returns FALSE"},"N":{"a":"(value)","d":"Information function used to convert a value to a number"},"NA":{"a":"()","d":"Information function used to return the #N/A error value. This function does not require an argument"},"TYPE":{"a":"(value)","d":"Information function used to determine the type of the resulting or displayed value"},"AND":{"a":"(logical1, logical2, ...)","d":"Logical function used to check if the logical value you enter is TRUE or FALSE. The function returns TRUE if all the arguments are TRUE"},"FALSE":{"a":"()","d":"logical functions. The function returns FALSE and does not require any argument"},"IF":{"a":"(logical_test, value_if_true, value_if_false)","d":"Logical function used to check the logical expression and return one value if it is TRUE, or another if it is FALSE"},"IFERROR":{"a":"(value, value_if_error)","d":"Logical function used to check if there is an error in the formula in the first argument. The function returns the result of the formula if there is no error, or the value_if_error if there is one"},"NOT":{"a":"(logical)","d":"Logical function used to check if the logical value you enter is TRUE or FALSE. The function returns TRUE if the argument is FALSE and FALSE if the argument is TRUE"},"OR":{"a":"(logical1, logical2, ...)","d":"Logical function used to check if the logical value you enter is TRUE or FALSE. The function returns FALSE if all the arguments are FALSE"},"TRUE":{"a":"()","d":"logical functions which returns TRUE and does not require any argument"}}
\ No newline at end of file
{"DATE":{"a":"( year, month, day )","d":"Функция даты и времени, используется для добавления дат в стандартном формате ММ/дд/гггг"},"DATEDIF":{"a":"( start-date , end-date , unit )","d":"Функция даты и времени, возвращает разницу между двумя датами (начальной и конечной) согласно заданному интервалу (единице)"},"DATEVALUE":{"a":"( date-time-string )","d":"Функция даты и времени, возвращает порядковый номер заданной даты"},"DAY":{"a":"( date-value )","d":"Функция даты и времени, возвращает день (число от 1 до 31), соответствующий дате, заданной в числовом формате (MM/дд/гггг по умолчанию)"},"DAYS360":{"a":"( start-date , end-date [ , method-flag ] )","d":"Функция даты и времени, возвращает количество дней между двумя датами (начальной и конечной) на основе 360-дневного года с использованием одного из методов вычислений (американского или европейского)"},"EDATE":{"a":"( start-date , month-offset )","d":"Функция даты и времени, возвращает порядковый номер даты, которая идет на заданное число месяцев (month-offset) до или после заданной даты (start-date)"},"EOMONTH":{"a":"( start-date , month-offset )","d":"Функция даты и времени, возвращает порядковый номер последнего дня месяца, который идет на заданное число месяцев до или после заданной начальной даты"},"HOUR":{"a":"( time-value )","d":"Функция даты и времени, возвращает количество часов (число от 0 до 23), соответствующее заданному значению времени"},"MINUTE":{"a":"( time-value )","d":"Функция даты и времени, возвращает количество минут (число от 0 до 59), соответствующее заданному значению времени"},"MONTH":{"a":"( date-value )","d":"Функция даты и времени, возвращает месяц (число от 1 до 12), соответствующий дате, заданной в числовом формате (MM/дд/гггг по умолчанию)"},"NETWORKDAYS":{"a":"( start-date , end-date [ , holidays ] )","d":"Функция даты и времени, возвращает количество рабочих дней между двумя датами (начальной и конечной). Выходные и праздничные дни в это число не включаются"},"NOW":{"a":"()","d":"Функция даты и времени, используется для добавления в электронную таблицу текущей даты и времени в следующем формате: MM/дд/гг чч:мм. Данная функция не требует аргумента"},"SECOND":{"a":"( time-value )","d":"Функция даты и времени, возвращает количество секунд (число от 0 до 59), соответствующее заданному значению времени"},"TIME":{"a":"( hour, minute, second )","d":"Функция даты и времени, используется для добавления определенного времени в выбранном формате (по умолчанию чч:мм tt (указатель половины дня a.m./p.m.))"},"TIMEVALUE":{"a":"( date-time-string )","d":"Функция даты и времени, возвращает порядковый номер, соответствующий заданному времени"},"TODAY":{"a":"()","d":"Функция даты и времени, используется для добавления текущей даты в следующем формате: MM/дд/гг. Данная функция не требует аргумента"},"WEEKDAY":{"a":"( serial-value [ , weekday-start-flag ] )","d":"Функция даты и времени, определяет, какой день недели соответствует заданной дате"},"WEEKNUM":{"a":"( serial-value [ , weekday-start-flag ] )","d":"Функция даты и времени, возвращает порядковый номер той недели в течение года, на которую приходится заданная дата"},"WORKDAY":{"a":"( start-date , day-offset [ , holidays ] )","d":"Функция даты и времени, возвращает дату, которая идет на заданное число дней (day-offset) до или после заданной начальной даты, без учета выходных и праздничных дней"},"YEAR":{"a":"( date-value )","d":"Функция даты и времени, возвращает год (число от 1900 до 9999), соответствующий дате, заданной в числовом формате (MM/дд/гггг по умолчанию)"},"YEARFRAC":{"a":"( start-date , end-date [ , basis ] )","d":"Функция даты и времени, возвращает долю года, представленную числом целых дней между начальной и конечной датами, вычисляемую заданным способом"},"BIN2DEC":{"a":"( number )","d":"Инженерная функция, преобразует двоичное число в десятичное"},"BIN2HEX":{"a":"( number [ , num-hex-digits ] )","d":"Инженерная функция, преобразует двоичное число в шестнадцатеричное"},"BIN2OCT":{"a":"( number [ , num-hex-digits ] )","d":"Инженерная функция, преобразует двоичное число в восьмеричное"},"COMPLEX":{"a":"( real-number , imaginary-number [ , suffix ] )","d":"Инженерная функция, используется для преобразования действительной и мнимой части в комплексное число, выраженное в формате a + bi или a + bj"},"DEC2BIN":{"a":"( number [ , num-hex-digits ] )","d":"Инженерная функция, преобразует десятичное число в двоичное"},"DEC2HEX":{"a":"( number [ , num-hex-digits ] )","d":"Инженерная функция, преобразует десятичное число в шестнадцатеричное"},"DEC2OCT":{"a":"( number [ , num-hex-digits ] )","d":"Инженерная функция, преобразует десятичное число в восьмеричное"},"DELTA":{"a":"( number-1 [ , number-2 ] )","d":"Инженерная функция, используется для проверки равенства двух чисел. Функция возвращает 1, если числа равны, в противном случае возвращает 0"},"ERF":{"a":"( lower-bound [ , upper-bound ] )","d":"Инженерная функция, используется для расчета значения функции ошибки, проинтегрированного в интервале от заданного нижнего до заданного верхнего предела"},"ERFC":{"a":"( lower-bound )","d":"Инженерная функция, используется для расчета значения дополнительной функции ошибки, проинтегрированного в интервале от заданного нижнего предела до бесконечности"},"GESTEP":{"a":"( number [ , step ] )","d":"Инженерная функция, используется для проверки того, превышает ли какое-то число пороговое значение. Функция возвращает 1, если число больше или равно пороговому значению, в противном случае возвращает 0"},"HEX2BIN":{"a":"( number [ , num-hex-digits ] )","d":"Инженерная функция, преобразует шестнадцатеричное число в двоичное"},"HEX2DEC":{"a":"( number )","d":"Инженерная функция, преобразует шестнадцатеричное число в десятичное"},"HEX2OCT":{"a":"( number [ , num-hex-digits ] )","d":"Инженерная функция, преобразует шестнадцатеричное число в восьмеричное"},"IMABS":{"a":"( complex-number )","d":"Инженерная функция, возвращает абсолютное значение комплексного числа"},"IMAGINARY":{"a":"( complex-number )","d":"Инженерная функция, возвращает мнимую часть заданного комплексного числа"},"IMARGUMENT":{"a":"( complex-number )","d":"Инженерная функция, возвращает значение аргумента Тета, то есть угол в радианах"},"IMCONJUGATE":{"a":"( complex-number )","d":"Инженерная функция, возвращает комплексно-сопряженное значение комплексного числа"},"IMCOS":{"a":"( complex-number )","d":"Инженерная функция, возвращает косинус комплексного числа"},"IMDIV":{"a":"( complex-number-1 , complex-number-2 )","d":"Инженерная функция, возвращает частное от деления двух комплексных чисел, представленных в формате a + bi или a + bj"},"IMEXP":{"a":"( complex-number )","d":"Инженерная функция, возвращает экспоненту комплексного числа (значение константы e, возведенной в степень, заданную комплексным числом). Константа e равна 2,71828182845904"},"IMLN":{"a":"( complex-number )","d":"Инженерная функция, возвращает натуральный логарифм комплексного числа"},"IMLOG10":{"a":"( complex-number )","d":"Инженерная функция, возвращает двоичный логарифм комплексного числа"},"IMLOG2":{"a":"( complex-number )","d":"Инженерная функция, возвращает десятичный логарифм комплексного числа"},"IMPOWER":{"a":"( complex-number, power )","d":"Инженерная функция, возвращает комплексное число, возведенное в заданную степень"},"IMPRODUCT":{"a":"( argument-list )","d":"Инженерная функция, возвращает произведение указанных комплексных чисел"},"IMREAL":{"a":"( complex-number )","d":"Инженерная функция, возвращает действительную часть комплексного числа"},"IMSIN":{"a":"( complex-number )","d":"Инженерная функция, возвращает синус комплексного числа"},"IMSQRT":{"a":"( complex-number )","d":"Инженерная функция, возвращает значение квадратного корня из комплексного числа"},"IMSUB":{"a":"( complex-number-1 , complex-number-2 )","d":"Инженерная функция, возвращает разность двух комплексных чисел, представленных в формате a + bi или a + bj"},"IMSUM":{"a":"( argument-list )","d":"Инженерная функция, возвращает сумму двух комплексных чисел, представленных в формате a + bi или a + bj"},"OCT2BIN":{"a":"( number [ , num-hex-digits ] )","d":"Инженерная функция, преобразует восьмеричное число в двоичное"},"OCT2DEC":{"a":"( number )","d":"Инженерная функция, преобразует восьмеричное число в десятичное"},"OCT2HEX":{"a":"( number [ , num-hex-digits ] )","d":"Инженерная функция, преобразует восьмеричное число в шестнадцатеричное"},"CHAR":{"a":"( number )","d":"Функция для работы с текстом и данными, возвращает символ ASCII, соответствующий заданному числовому коду"},"CLEAN":{"a":"( string )","d":"Функция для работы с текстом и данными, используется для удаления всех непечатаемых символов из выбранной строки"},"CODE":{"a":"( string )","d":"Функция для работы с текстом и данными, возвращает числовой код ASCII, соответствующий заданному символу или первому символу в ячейке"},"CONCATENATE":{"a":"(text1, text2, ...)","d":"Функция для работы с текстом и данными, используется для объединения данных из двух или более ячеек в одну"},"DOLLAR":{"a":"( number [ , num-decimal ] )","d":"Функция для работы с текстом и данными, преобразует число в текст, используя денежный формат $#.##"},"EXACT":{"a":"(text1, text2)","d":"Функция для работы с текстом и данными, используется для сравнения данных в двух ячейках. Функция возвращает значение TRUE (ИСТИНА), если данные совпадают, и FALSE (ЛОЖЬ), если нет"},"FIND":{"a":"( string-1 , string-2 [ , start-pos ] )","d":"Функция для работы с текстом и данными, используется для поиска заданной подстроки (string-1) внутри строки (string-2), предназначена для языков, использующих однобайтовую кодировку (SBCS)"},"FINDB":{"a":"( string-1 , string-2 [ , start-pos ] )","d":"Функция для работы с текстом и данными, используется для поиска заданной подстроки (string-1) внутри строки (string-2), предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д."},"FIXED":{"a":"( number [ , [ num-decimal ] [ , suppress-commas-flag ] ] )","d":"Функция для работы с текстом и данными, возвращает текстовое представление числа, округленного до заданного количества десятичных знаков"},"LEFT":{"a":"( string [ , number-chars ] )","d":"Функция для работы с текстом и данными, извлекает подстроку из заданной строки, начиная с левого символа, предназначена для языков, использующих однобайтовую кодировку (SBCS)"},"LEFTB":{"a":"( string [ , number-chars ] )","d":"Функция для работы с текстом и данными, извлекает подстроку из заданной строки, начиная с левого символа, предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д."},"LEN":{"a":"( string )","d":"Функция для работы с текстом и данными, анализирует заданную строку и возвращает количество символов, которые она содержит, предназначена для языков, использующих однобайтовую кодировку (SBCS)"},"LENB":{"a":"( string )","d":"Функция для работы с текстом и данными, анализирует заданную строку и возвращает количество символов, которые она содержит, предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д."},"LOWER":{"a":"(text)","d":"Функция для работы с текстом и данными, используется для преобразования букв в выбранной ячейке из верхнего регистра в нижний"},"MID":{"a":"( string , start-pos , number-chars )","d":"Функция для работы с текстом и данными, извлекает символы из заданной строки, начиная с любого места, предназначена для языков, использующих однобайтовую кодировку (SBCS)"},"MIDB":{"a":"( string , start-pos , number-chars )","d":"Функция для работы с текстом и данными, извлекает символы из заданной строки, начиная с любого места, предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д."},"PROPER":{"a":"( string )","d":"Функция для работы с текстом и данными, преобразует первую букву каждого слова в прописную (верхний регистр), а все остальные буквы - в строчные (нижний регистр)"},"REPLACE":{"a":"( string-1, start-pos, number-chars, string-2 )","d":"Функция для работы с текстом и данными, заменяет ряд символов на новый, с учетом заданного количества символов и начальной позиции, предназначена для языков, использующих однобайтовую кодировку (SBCS)"},"REPLACEB":{"a":"( string-1, start-pos, number-chars, string-2 )","d":"Функция для работы с текстом и данными, заменяет ряд символов на новый, с учетом заданного количества символов и начальной позиции, предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д."},"REPT":{"a":"(text, number_of_times)","d":"Функция для работы с текстом и данными, используется для повторения данных в выбранной ячейке заданное количество раз"},"RIGHT":{"a":"( string [ , number-chars ] )","d":"Функция для работы с текстом и данными, извлекает подстроку из заданной строки, начиная с крайнего правого символа, согласно заданному количеству символов, предназначена для языков, использующих однобайтовую кодировку (SBCS)"},"RIGHTB":{"a":"( string [ , number-chars ] )","d":"Функция для работы с текстом и данными, извлекает подстроку из заданной строки, начиная с крайнего правого символа, согласно заданному количеству символов, предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д."},"SEARCH":{"a":"( string-1 , string-2 [ , start-pos ] )","d":"Функция для работы с текстом и данными, возвращает местоположение заданной подстроки в строке, предназначена для языков, использующих однобайтовую кодировку (SBCS)"},"SEARCHB":{"a":"( string-1 , string-2 [ , start-pos ] )","d":"Функция для работы с текстом и данными, возвращает местоположение заданной подстроки в строке, предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д."},"SUBSTITUTE":{"a":"( string , old-string , new-string [ , occurence ] )","d":"Функция для работы с текстом и данными, заменяет ряд символов на новый"},"T":{"a":"( value )","d":"Функция для работы с текстом и данными, используется для проверки, является ли значение в ячейке (или используемое как аргумент) текстом или нет. Если это не текст, функция возвращает пустой результат. Если значение/аргумент является текстом, функция возвращает это же текстовое значение"},"TEXT":{"a":"( value , format )","d":"Функция для работы с текстом и данными, преобразует числовое значение в текст в заданном формате"},"TRIM":{"a":"( string )","d":"Функция для работы с текстом и данными, удаляет пробелы из начала и конца строки"},"UPPER":{"a":"(text)","d":"Функция для работы с текстом и данными, используется для преобразования букв в выбранной ячейке из нижнего регистра в верхний"},"VALUE":{"a":"( string )","d":"Функция для работы с текстом и данными, преобразует текстовое значение, представляющее число, в числовое значение. Если преобразуемый текст не является числом, функция возвращает ошибку #VALUE!"},"AVEDEV":{"a":"( argument-list )","d":"Статистическая функция, используется для анализа диапазона данных и возвращает среднее абсолютных значений отклонений чисел от их среднего значения"},"AVERAGE":{"a":"( argument-list )","d":"Статистическая функция, анализирует диапазон данных и вычисляет среднее значение"},"AVERAGEA":{"a":"( argument-list )","d":"Статистическая функция, анализирует диапазон данных, включая текстовые и логические значения, и вычисляет среднее значение. Функция AVERAGEA интерпретирует текст и логическое значение FALSE (ЛОЖЬ) как числовое значение 0, а логическое значение TRUE (ИСТИНА) как числовое значение 1"},"AVERAGEIF":{"a":"( cell-range, selection-criteria [ , average-range ] )","d":"Статистическая функция, анализирует диапазон данных и вычисляет среднее значение всех чисел в диапазоне ячеек, которые соответствуют заданному условию"},"BINOMDIST":{"a":"( number-successes , number-trials , success-probability , cumulative-flag )","d":"Статистическая функция, возвращает отдельное значение вероятности биномиального распределения"},"CONFIDENCE":{"a":"( alpha , standard-dev , size )","d":"Статистическая функция, возвращает доверительный интервал"},"CORREL":{"a":"( array-1 , array-2 )","d":"Статистическая функция, используется для анализа диапазона данных и возвращает коэффициент корреляции между двумя диапазонами ячеек"},"COUNT":{"a":"( argument-list )","d":"Статистическая функция, используется для подсчета количества ячеек в выбранном диапазоне, содержащих числа, без учета пустых или содержащих текст ячеек"},"COUNTA":{"a":"( argument-list )","d":"Статистическая функция, используется для анализа диапазона ячеек и подсчета количества непустых ячеек"},"COUNTBLANK":{"a":"( argument-list )","d":"Статистическая функция, используется для анализа диапазона ячеек и возвращает количество пустых ячеек"},"COUNTIF":{"a":"( cell-range, selection-criteria )","d":"Статистическая функция, используется для подсчета количества ячеек выделенного диапазона, соответствующих заданному условию"},"COVAR":{"a":"( array-1 , array-2 )","d":"Статистическая функция, возвращает ковариацию в двух диапазонах данных"},"CRITBINOM":{"a":"( number-trials , success-probability , alpha )","d":"Статистическая функция, возвращает наименьшее значение, для которого интегральное биномиальное распределение больше или равно заданному условию"},"DEVSQ":{"a":"( argument-list )","d":"Статистическая функция, используется для анализа диапазона ячеек и возвращает сумму квадратов отклонений чисел от их среднего значения"},"EXPONDIST":{"a":"( x , lambda , cumulative-flag )","d":"Статистическая функция, возвращает экспоненциальное распределение"},"FISHER":{"a":"( number )","d":"Статистическая функция, возвращает преобразование Фишера для числа"},"FISHERINV":{"a":"( number )","d":"Статистическая функция, выполняет обратное преобразование Фишера"},"FORECAST":{"a":"( x , array-1 , array-2 )","d":"Статистическая функция, предсказывает будущее значение на основе существующих значений"},"FREQUENCY":{"a":"( data-array , bins-array )","d":"Статистическая функция, вычисляет частоту появления значений в выбранном диапазоне ячеек и отображает первое значение возвращаемого вертикального массива чисел"},"GAMMALN":{"a":"(number)","d":"Статистическая функция, возвращает натуральный логарифм гамма-функции"},"GEOMEAN":{"a":"( argument-list )","d":"Статистическая функция, вычисляет среднее геометрическое для списка значений"},"HARMEAN":{"a":"( argument-list )","d":"Статистическая функция, вычисляет среднее гармоническое для списка значений"},"HYPGEOMDIST":{"a":"( sample-successes , number-sample , population-successes , number-population )","d":"Статистическая функция, возвращает гипергеометрическое распределение, вероятность заданного количества успехов в выборке, если заданы размер выборки, количество успехов в генеральной совокупности и размер генеральной совокупности"},"INTERCEPT":{"a":"( array-1 , array-2 )","d":"Статистическая функция, анализирует значения первого и второго массивов для вычисления точки пересечения"},"KURT":{"a":"( argument-list )","d":"Статистическая функция, возвращает эксцесс списка значений"},"LARGE":{"a":"( array , k )","d":"Статистическая функция, анализирует диапазон ячеек и возвращает n-ое по величине значение"},"LOGINV":{"a":"( x , mean , standard-deviation )","d":"Статистическая функция, возвращает обратное логарифмическое нормальное распределение для заданного значения x с указанными параметрами"},"LOGNORMDIST":{"a":"( x , mean , standard-deviation )","d":"Статистическая функция, анализирует логарифмически преобразованные данные и возвращает логарифмическое нормальное распределение для заданного значения x с указанными параметрами"},"MAX":{"a":"(number1, number2, ...)","d":"Статистическая функция, используется для анализа диапазона данных и поиска наибольшего числа"},"MAXA":{"a":"(number1, number2, ...)","d":"Статистическая функция, используется для анализа диапазона данных и поиска наибольшего значения"},"MEDIAN":{"a":"( argument-list )","d":"Статистическая функция, вычисляет медиану для списка значений"},"MIN":{"a":"(number1, number2, ...)","d":"Статистическая функция, используется для анализа диапазона данных и поиска наименьшего числа"},"MINA":{"a":"(number1, number2, ...)","d":"Статистическая функция, используется для анализа диапазона данных и поиска наименьшего значения"},"MODE":{"a":"( argument-list )","d":"Статистическая функция, анализирует диапазон данных и возвращает наиболее часто встречающееся значение"},"NEGBINOMDIST":{"a":"( number-failures , number-successes , success-probability )","d":"Статистическая функция, возвращает отрицательное биномиальное распределение"},"NORMDIST":{"a":"( x , mean , standard-deviation , cumulative-flag )","d":"Статистическая функция, возвращает нормальную функцию распределения для указанного среднего значения и стандартного отклонения"},"NORMINV":{"a":"( x , mean , standard-deviation )","d":"Статистическая функция, возвращает обратное нормальное распределение для указанного среднего значения и стандартного отклонения"},"NORMSDIST":{"a":"(number)","d":"Статистическая функция, возвращает стандартное нормальное интегральное распределение"},"NORMSINV":{"a":"( probability )","d":"Статистическая функция, возвращает обратное значение стандартного нормального распределения"},"PEARSON":{"a":"( array-1 , array-2 )","d":"Статистическая функция, возвращает коэффициент корреляции Пирсона"},"PERCENTILE":{"a":"( array , k )","d":"Статистическая функция, анализирует диапазон данных и возвращает n-ый процентиль"},"PERCENTRANK":{"a":"( array , x [ , significance ] )","d":"Статистическая функция, возвращает категорию значения в наборе данных как процентное содержание в наборе данных"},"PERMUT":{"a":"( number , number-chosen )","d":"Статистическая функция, возвращает количество перестановок для заданного числа элементов"},"POISSON":{"a":"( x , mean , cumulative-flag )","d":"Статистическая функция, возвращает распределение Пуассона"},"PROB":{"a":"( x-range , probability-range , lower-limit [ , upper-limit ] )","d":"Статистическая функция, возвращает вероятность того, что значения из интервала находятся внутри нижнего и верхнего пределов"},"QUARTILE":{"a":"( array , result-category )","d":"Статистическая функция, анализирует диапазон данных и возвращает квартиль"},"RSQ":{"a":"( array-1 , array-2 )","d":"Статистическая функция, возвращает квадрат коэффициента корреляции Пирсона"},"SKEW":{"a":"( argument-list )","d":"Статистическая функция, анализирует диапазон данных и возвращает асимметрию распределения для списка значений"},"SLOPE":{"a":"( array-1 , array-2 )","d":"Статистическая функция, возвращает наклон линии линейной регрессии для данных в двух массивах"},"SMALL":{"a":"( array , k )","d":"Статистическая функция, анализирует диапазон данных и находит n-ое наименьшее значение"},"STANDARDIZE":{"a":"( x , mean , standard-deviation )","d":"Статистическая функция, возвращает нормализованное значение для распределения, характеризуемого заданными параметрами"},"STDEV":{"a":"( argument-list )","d":"Статистическая функция, анализирует диапазон данных и возвращает стандартное отклонение по выборке, содержащей числа"},"STDEVA":{"a":"( argument-list )","d":"Статистическая функция, анализирует диапазон данных и возвращает стандартное отклонение по выборке, содержащей числа, текст и логические значения (TRUE или FALSE). Текст и логические значения FALSE (ЛОЖЬ) интерпретируются как 0, а логические значения TRUE (ИСТИНА) - как 1"},"STDEVP":{"a":"( argument-list )","d":"Статистическая функция, используется для анализа диапазона данных и возвращает стандартное отклонение по всей совокупности значений"},"STDEVPA":{"a":"( argument-list )","d":"Статистическая функция, используется для анализа диапазона данных и возвращает стандартное отклонение по всей совокупности значений"},"STEYX":{"a":"( known-ys , known-xs )","d":"Статистическая функция, возвращает стандартную ошибку предсказанных значений Y для каждого значения X по регрессивной шкале"},"VAR":{"a":"( argument-list )","d":"Статистическая функция, анализирует диапазон данных и возвращает дисперсию по выборке, содержащей числа"},"VARA":{"a":"( argument-list )","d":"Статистическая функция, анализирует диапазон данных и возвращает дисперсию по выборке"},"VARP":{"a":"( argument-list )","d":"Статистическая функция, анализирует диапазон данных и возвращает дисперсию по всей совокупности значений"},"VARPA":{"a":"( argument-list )","d":"Статистическая функция, анализирует диапазон данных и возвращает дисперсию по всей совокупности значений"},"ACCRINT":{"a":"( issue , first-interest , settlement , rate , [ par ] , frequency [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления дохода по ценным бумагам с периодической выплатой процентов"},"ACCRINTM":{"a":"( issue , settlement , rate , [ [ par ] [ , [ basis ] ] ] )","d":"Финансовая функция, используется для вычисления дохода по ценным бумагам, процент по которым уплачивается при наступлении срока погашения"},"AMORDEGRC":{"a":"( cost , date-purchased , first-period , salvage , period , rate [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления величины амортизации имущества по каждому отчетному периоду методом дегрессивной амортизации"},"AMORLINC":{"a":"( cost , date-purchased , first-period , salvage , period , rate [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления величины амортизации имущества по каждому отчетному периоду методом линейной амортизации"},"COUPDAYBS":{"a":"( settlement , maturity , frequency [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления количества дней от начала действия купона до даты покупки ценной бумаги"},"COUPDAYS":{"a":"( settlement , maturity , frequency [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления количества дней в периоде купона, содержащем дату покупки ценной бумаги"},"COUPDAYSNC":{"a":"( settlement , maturity , frequency [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления количества дней от даты покупки ценной бумаги до следующей выплаты по купону"},"COUPNCD":{"a":"( settlement , maturity , frequency [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления даты следующей выплаты по купону после даты покупки ценной бумаги"},"COUPNUM":{"a":"( settlement , maturity , frequency [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления количества выплат процентов между датой покупки ценной бумаги и датой погашения"},"COUPPCD":{"a":"( settlement , maturity , frequency [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления даты выплаты процентов, предшествующей дате покупки ценной бумаги"},"CUMIPMT":{"a":"( rate , nper , pv , start-period , end-period , type )","d":"Финансовая функция, используется для вычисления общего размера процентых выплат по инвестиции между двумя периодами времени исходя из указанной процентной ставки и постоянной периодичности платежей"},"CUMPRINC":{"a":"( rate , nper , pv , start-period , end-period , type )","d":"Финансовая функция, используется для вычисления общей суммы, выплачиваемой в погашение основного долга по инвестиции между двумя периодами времени исходя из указанной процентной ставки и постоянной периодичности платежей"},"DB":{"a":"( cost , salvage , life , period [ , [ month ] ] )","d":"Финансовая функция, используется для вычисления величины амортизации имущества за указанный отчетный период методом фиксированного убывающего остатка"},"DDB":{"a":"( cost , salvage , life , period [ , factor ] )","d":"Финансовая функция, используется для вычисления величины амортизации имущества за указанный отчетный период методом двойного убывающего остатка"},"DISC":{"a":"( settlement , maturity , pr , redemption [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления ставки дисконтирования по ценной бумаге"},"DOLLARDE":{"a":"( fractional-dollar , fraction )","d":"Финансовая функция, преобразует цену в долларах, представленную в виде дроби, в цену в долларах, выраженную десятичным числом"},"DOLLARFR":{"a":"( decimal-dollar , fraction )","d":"Финансовая функция, преобразует цену в долларах, представленную десятичным числом, в цену в долларах, выраженную в виде дроби"},"DURATION":{"a":"( settlement , maturity , coupon , yld , frequency [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления продолжительности Маколея (взвешенного среднего срока погашения) для ценной бумаги с предполагаемой номинальной стоимостью 100 рублей"},"EFFECT":{"a":"( nominal-rate , npery )","d":"Финансовая функция, используется для вычисления эффективной (фактической) годовой процентной ставки по ценной бумаге исходя из указанной номинальной годовой процентной ставки и количества периодов в году, за которые начисляются сложные проценты"},"FV":{"a":"( rate , nper , pmt [ , [ pv ] [ ,[ type ] ] ] )","d":"Финансовая функция, вычисляет будущую стоимость инвестиции исходя из заданной процентной ставки и постоянной периодичности платежей"},"FVSCHEDULE":{"a":"( principal , schedule )","d":"Финансовая функция, используется для вычисления будущей стоимости инвестиций на основании ряда непостоянных процентных ставок"},"INTRATE":{"a":"( settlement , maturity , pr , redemption [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления ставки доходности по полностью обеспеченной ценной бумаге, проценты по которой уплачиваются только при наступлении срока погашения"},"IPMT":{"a":"( rate , per , nper , pv [ , [ fv ] [ , [ type ] ] ] )","d":"Финансовая функция, используется для вычисления суммы платежей по процентам для инвестиции исходя из указанной процентной ставки и постоянной периодичности платежей"},"IRR":{"a":"( values [ , [ guess ] ] )","d":"Финансовая функция, используется для вычисления внутренней ставки доходности по ряду периодических потоков денежных средств"},"ISPMT":{"a":"( rate , per , nper , pv )","d":"Финансовая функция, используется для вычисления процентов, выплачиваемых за определенный инвестиционный период, исходя из постоянной периодичности платежей"},"MDURATION":{"a":"( settlement , maturity , coupon , yld , frequency [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления модифицированной продолжительности Маколея (взвешенного среднего срока погашения) для ценной бумаги с предполагаемой номинальной стоимостью 100 рублей"},"MIRR":{"a":"( values , finance-rate , reinvest-rate )","d":"Финансовая функция, используется для вычисления модифицированной внутренней ставки доходности по ряду периодических денежных потоков"},"NOMINAL":{"a":"( effect-rate , npery )","d":"Финансовая функция, используется для вычисления номинальной годовой процентной ставки по ценной бумаге исходя из указанной эффективной (фактической) годовой процентной ставки и количества периодов в году, за которые начисляются сложные проценты"},"NPER":{"a":"( rate , pmt , pv [ , [ fv ] [ , [ type ] ] ] )","d":"Финансовая функция, вычисляет количество периодов выплаты для инвестиции исходя из заданной процентной ставки и постоянной периодичности платежей"},"NPV":{"a":"( rate , argument-list )","d":"Финансовая функция, вычисляет величину чистой приведенной стоимости инвестиции на основе заданной ставки дисконтирования"},"ODDFPRICE":{"a":"( settlement , maturity , issue , first-coupon , rate , yld , redemption , frequency [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления цены за 100 рублей номинальной стоимости ценной бумаги с периодической выплатой процентов в случае нерегулярной продолжительности первого периода выплаты процентов (больше или меньше остальных периодов)"},"ODDFYIELD":{"a":"( settlement , maturity , issue , first-coupon , rate , pr , redemption , frequency [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления дохода по ценной бумаге с периодической выплатой процентов в случае нерегулярной продолжительности первого периода выплаты процентов (больше или меньше остальных периодов)"},"ODDLPRICE":{"a":"( settlement , maturity , last-interest , rate , yld , redemption , frequency [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления цены за 100 рублей номинальной стоимости ценной бумаги с периодической выплатой процентов в случае нерегулярной продолжительности последнего периода выплаты процентов (больше или меньше остальных периодов)"},"ODDLYIELD":{"a":"( settlement , maturity , last-interest , rate , pr , redemption , frequency [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления дохода по ценной бумаге с периодической выплатой процентов в случае нерегулярной продолжительности последнего периода выплаты процентов (больше или меньше остальных периодов)"},"PMT":{"a":"( rate , nper , pv [ , [ fv ] [ ,[ type ] ] ] )","d":"Финансовая функция, вычисляет размер периодического платежа по ссуде исходя из заданной процентной ставки и постоянной периодичности платежей"},"PPMT":{"a":"( rate , per , nper , pv [ , [ fv ] [ , [ type ] ] ] )","d":"Финансовая функция, используется для вычисления размера платежа в счет погашения основного долга по инвестиции исходя из заданной процентной ставки и постоянной периодичности платежей"},"PRICE":{"a":"( settlement , maturity , rate , yld , redemption , frequency [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления цены за 100 рублей номинальной стоимости ценной бумаги с периодической выплатой процентов"},"PRICEDISC":{"a":"( settlement , maturity , discount , redemption [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления цены за 100 рублей номинальной стоимости ценной бумаги, на которую сделана скидка"},"PRICEMAT":{"a":"( settlement , maturity , issue , rate , yld [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления цены за 100 рублей номинальной стоимости ценной бумаги, процент по которой уплачивается при наступлении срока погашения"},"PV":{"a":"( rate , nper , pmt [ , [ fv ] [ ,[ type ] ] ] )","d":"Финансовая функция, вычисляет текущую стоимость инвестиции исходя из заданной процентной ставки и постоянной периодичности платежей"},"RATE":{"a":"( nper , pmt , pv [ , [ [ fv ] [ , [ [ type ] [ , [ guess ] ] ] ] ] ] )","d":"Финансовая функция, используется для вычисления размера процентной ставки по инвестиции исходя из постоянной периодичности платежей"},"RECEIVED":{"a":"( settlement , maturity , investment , discount [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления суммы, полученной за полностью обеспеченную ценную бумагу при наступлении срока погашения"},"SLN":{"a":"( cost , salvage , life )","d":"Финансовая функция, используется для вычисления величины амортизации имущества за один отчетный период линейным методом амортизационных отчислений"},"SYD":{"a":"( cost , salvage , life , per )","d":"Финансовая функция, используется для вычисления величины амортизации имущества за указанный отчетный период методом \"суммы годовых цифр\""},"TBILLEQ":{"a":"( settlement , maturity , discount )","d":"Финансовая функция, используется для вычисления эквивалентной доходности по казначейскому векселю"},"TBILLPRICE":{"a":"( settlement , maturity , discount )","d":"Финансовая функция, используется для вычисления цены на 100 рублей номинальной стоимости для казначейского векселя"},"TBILLYIELD":{"a":"( settlement , maturity , pr )","d":"Финансовая функция, используется для вычисления доходности по казначейскому векселю"},"VDB":{"a":"( cost , salvage , life , start-period , end-period [ , [ [ factor ] [ , [ no-switch-flag ] ] ] ] ] )","d":"Финансовая функция, используется для вычисления величины амортизации имущества за указанный отчетный период или его часть методом двойного уменьшения остатка или иным указанным методом"},"XIRR":{"a":"( values , dates [ , [ guess ] ] )","d":"Финансовая функция, используется для вычисления внутренней ставки доходности по ряду нерегулярных денежных потоков"},"XNPV":{"a":"( rate , values , dates )","d":"Финансовая функция, используется для вычисления чистой приведенной стоимости инвестиции исходя из указанной процентной ставки и нерегулярных выплат"},"YIELD":{"a":"( settlement , maturity , rate , pr , redemption , frequency [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления доходности по ценной бумаге с периодической выплатой процентов"},"YIELDDISC":{"a":"( settlement , maturity , pr , redemption , [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления годовой доходности по ценной бумаге, на которую дается скидка"},"YIELDMAT":{"a":"( settlement , maturity , issue , rate , pr [ , [ basis ] ] )","d":"Финансовая функция, используется для вычисления годовой доходности по ценным бумагам, процент по которым уплачивается при наступлении срока погашения"},"ABS":{"a":"( x )","d":"Математическая и тригонометрическая функция, используется для нахождения модуля (абсолютной величины) числа"},"ACOS":{"a":"( x )","d":"Математическая и тригонометрическая функция, возвращает арккосинус числа"},"ACOSH":{"a":"( x )","d":"Математическая и тригонометрическая функция, возвращает гиперболический арккосинус числа"},"ASIN":{"a":"( x )","d":"Математическая и тригонометрическая функция, возвращает арксинус числа"},"ASINH":{"a":"( x )","d":"Математическая и тригонометрическая функция, возвращает гиперболический арксинус числа"},"ATAN":{"a":"( x )","d":"Математическая и тригонометрическая функция, возвращает арктангенс числа"},"ATAN2":{"a":"( x, y )","d":"Математическая и тригонометрическая функция, возвращает арктангенс координат x и y"},"ATANH":{"a":"( x )","d":"Математическая и тригонометрическая функция, возвращает гиперболический арктангенс числа"},"CEILING":{"a":"( x, significance )","d":"Математическая и тригонометрическая функция, используется, чтобы округлить число в большую сторону до ближайшего числа, кратного заданной значимости"},"COMBIN":{"a":"( number , number-chosen )","d":"Математическая и тригонометрическая функция, возвращает количество комбинаций для заданного числа элементов"},"COS":{"a":"( x )","d":"Математическая и тригонометрическая функция, возвращает косинус угла"},"COSH":{"a":"( x )","d":"Математическая и тригонометрическая функция, возвращает гиперболический косинус числа"},"DEGREES":{"a":"( angle )","d":"Математическая и тригонометрическая функция, преобразует радианы в градусы"},"EVEN":{"a":"( x )","d":"Математическая и тригонометрическая функция, используется, чтобы округлить число до ближайшего четного целого числа"},"EXP":{"a":"( x )","d":"Математическая и тригонометрическая функция, возвращает значение константы e, возведенной в заданную степень. Константа e равна 2,71828182845904"},"FACT":{"a":"( x )","d":"Математическая и тригонометрическая функция, возвращает факториал числа"},"FACTDOUBLE":{"a":"( x )","d":"Математическая и тригонометрическая функция, возвращает двойной факториал числа"},"FLOOR":{"a":"( x, significance )","d":"Математическая и тригонометрическая функция, используется, чтобы округлить число в меньшую сторону до ближайшего числа, кратного заданной значимости"},"GCD":{"a":"( argument-list )","d":"Математическая и тригонометрическая функция, возвращает наибольший общий делитель для двух и более чисел"},"INT":{"a":"( x )","d":"Математическая и тригонометрическая функция, анализирует и возвращает целую часть заданного числа"},"LCM":{"a":"( argument-list )","d":"Математическая и тригонометрическая функция, возвращает наименьшее общее кратное для одного или более чисел"},"LN":{"a":"( x )","d":"Математическая и тригонометрическая функция, возвращает натуральный логарифм числа"},"LOG":{"a":"( x [ , base ] )","d":"Математическая и тригонометрическая функция, возвращает логарифм числа по заданному основанию"},"LOG10":{"a":"( x )","d":"Математическая и тригонометрическая функция, возвращает логарифм числа по основанию 10"},"MDETERM":{"a":"( array )","d":"Математическая и тригонометрическая функция, возвращает определитель матрицы (матрица хранится в массиве)"},"MINVERSE":{"a":"( array )","d":"Математическая и тригонометрическая функция, возвращает обратную матрицу для заданной матрицы и отображает первое значение возвращаемого массива чисел"},"MMULT":{"a":"( array1, array2 )","d":"Математическая и тригонометрическая функция, возвращает матричное произведение двух массивов и отображает первое значение из возвращаемого массива чисел"},"MOD":{"a":"( x, y )","d":"Математическая и тригонометрическая функция, возвращает остаток от деления числа на заданный делитель"},"MROUND":{"a":"( x, multiple )","d":"Математическая и тригонометрическая функция, используется, чтобы округлить число до кратного заданной значимости"},"MULTINOMIAL":{"a":"( argument-list )","d":"Математическая и тригонометрическая функция, возвращает отношение факториала суммы значений к произведению факториалов"},"ODD":{"a":"( x )","d":"Математическая и тригонометрическая функция, используется, чтобы округлить число до ближайшего нечетного целого числа"},"PI":{"a":"()","d":"Математическая и тригонометрическая функция, возвращает математическую константу пи, равную 3.14159265358979. Функция не требует аргумента"},"POWER":{"a":"( x, y )","d":"Математическая и тригонометрическая функция, возвращает результат возведения числа в заданную степень"},"PRODUCT":{"a":"( argument-list )","d":"Математическая и тригонометрическая функция, перемножает все числа в заданном диапазоне ячеек и возвращает произведение"},"QUOTIENT":{"a":"( dividend , divisor )","d":"Математическая и тригонометрическая функция, возвращает целую часть результата деления с остатком"},"RADIANS":{"a":"( angle )","d":"Математическая и тригонометрическая функция, преобразует градусы в радианы"},"RAND":{"a":"()","d":"Математическая и тригонометрическая функция, возвращает случайное число, которое больше или равно 0 и меньше 1. Функция не требует аргумента"},"RANDBETWEEN":{"a":"( lower-bound , upper-bound )","d":"Математическая и тригонометрическая функция, возвращает случайное число, большее или равное значению аргумента lower-bound (нижняя граница) и меньшее или равное значению аргумента upper-bound (верхняя граница)"},"ROMAN":{"a":"( number, form )","d":"Математическая и тригонометрическая функция, преобразует число в римское"},"ROUND":{"a":"( x , number-digits )","d":"Математическая и тригонометрическая функция, округляет число до заданного количества десятичных разрядов"},"ROUNDDOWN":{"a":"( x , number-digits )","d":"Математическая и тригонометрическая функция, округляет число в меньшую сторону до заданного количества десятичных разрядов"},"ROUNDUP":{"a":"( x , number-digits )","d":"Математическая и тригонометрическая функция, округляет число в большую сторону до заданного количества десятичных разрядов"},"SERIESSUM":{"a":"( input-value , initial-power , step , coefficients )","d":"Математическая и тригонометрическая функция, возвращает сумму степенного ряда"},"SIGN":{"a":"( x )","d":"Математическая и тригонометрическая функция, определяет знак числа. Если число положительное, функция возвращает значение 1. Если число отрицательное, функция возвращает значение -1. Если число равно 0, функция возвращает значение 0"},"SIN":{"a":"( x )","d":"Математическая и тригонометрическая функция, возвращает синус угла"},"SINH":{"a":"( x )","d":"Математическая и тригонометрическая функция, возвращает гиперболический синус числа"},"SQRT":{"a":"( x )","d":"Математическая и тригонометрическая функция, возвращает квадратный корень числа"},"SQRTPI":{"a":"( x )","d":"Математическая и тригонометрическая функция, возвращает квадратный корень от результата умножения константы пи (3.14159265358979) на заданное число"},"SUBTOTAL":{"a":"( function-number , argument-list )","d":"Возвращает промежуточный итог в список или базу данных"},"SUM":{"a":"( argument-list )","d":"Математическая и тригонометрическая функция, возвращает результат сложения всех чисел в выбранном диапазоне ячеек"},"SUMIF":{"a":"( cell-range, selection-criteria [ , sum-range ] )","d":"Математическая и тригонометрическая функция, суммирует все числа в выбранном диапазоне ячеек в соответствии с заданным условием и возвращает результат"},"SUMPRODUCT":{"a":"( argument-list )","d":"Математическая и тригонометрическая функция, перемножает соответствующие элементы заданных диапазонов ячеек или массивов и возвращает сумму произведений"},"SUMSQ":{"a":"( argument-list )","d":"Математическая и тригонометрическая функция, вычисляет сумму квадратов чисел и возвращает результат"},"SUMX2MY2":{"a":"( array-1 , array-2 )","d":"Математическая и тригонометрическая функция, вычисляет сумму разностей квадратов соответствующих элементов в двух массивах"},"SUMX2PY2":{"a":"( array-1 , array-2 )","d":"Математическая и тригонометрическая функция, вычисляет суммы квадратов соответствующих элементов в двух массивах и возвращает сумму полученных результатов"},"SUMXMY2":{"a":"( array-1 , array-2 )","d":"Математическая и тригонометрическая функция, возвращает сумму квадратов разностей соответствующих элементов в двух массивах"},"TAN":{"a":"( x )","d":"Математическая и тригонометрическая функция, возвращает тангенс угла"},"TANH":{"a":"( x )","d":"Математическая и тригонометрическая функция, возвращает гиперболический тангенс числа"},"TRUNC":{"a":"( x [ , number-digits ] )","d":"Математическая и тригонометрическая функция, возвращает число, усеченное до заданного количества десятичных разрядов"},"ADDRESS":{"a":"( row-number , col-number [ , [ ref-type ] [ , [ A1-ref-style-flag ] [ , sheet-name ] ] ] )","d":"Поисковая функция, возвращает адрес ячейки, представленный в виде текста"},"CHOOSE":{"a":"( index , argument-list )","d":"Поисковая функция, возвращает значение из списка значений по заданному индексу (позиции)"},"COLUMN":{"a":"( [ reference ] )","d":"Поисковая функция, возвращает номер столбца ячейки"},"COLUMNS":{"a":"( array )","d":"Поисковая функция, возвращает количество столбцов в ссылке на ячейки"},"HLOOKUP":{"a":"( lookup-value , table-array , row-index-num [ , [ range-lookup-flag ] ] )","d":"Поисковая функция, используется для выполнения горизонтального поиска значения в верхней строке таблицы или массива и возвращает значение, которое находится в том же самом столбце в строке с заданным номером"},"INDEX":{"a":"( array , [ row-number ] [ , [ column-number ] ] ) INDEX( reference , [ row-number ] [ , [ column-number ] [ , [ area-number ] ] ] )","d":"Поисковая функция, возвращает значение в диапазоне ячеек на основании заданных номера строки и номера столбца. Существуют две формы функции INDEX"},"INDIRECT":{"a":"( ref-text [ , [ A1-ref-style-flag ] ] )","d":"Поисковая функция, возвращает ссылку на ячейку, указанную с помощью текстовой строки"},"LOOKUP":{"a":"( lookup-value , lookup-vector , result-vector )","d":"Поисковая функция, возвращает значение из выбранного диапазона (строки или столбца с данными, отсортированными в порядке возрастания)"},"MATCH":{"a":"( lookup-value , lookup-array [ , [ match-type ]] )","d":"Поисковая функция, возвращает относительное положение заданного элемента в диапазоне ячеек"},"OFFSET":{"a":"( reference , rows , cols [ , [ height ] [ , [ width ] ] ] )","d":"Поисковая функция, возвращает ссылку на ячейку, отстоящую от заданной ячейки (или верхней левой ячейки в диапазоне ячеек) на определенное число строк и столбцов"},"ROW":{"a":"( [ reference ] )","d":"Поисковая функция, возвращает номер строки для ссылки на ячейку"},"ROWS":{"a":"( array )","d":"Поисковая функция, возвращает количество строк в ссылке на ячейки"},"TRANSPOSE":{"a":"( array )","d":"Поисковая функция, возвращает первый элемент массива"},"VLOOKUP":{"a":"( lookup-value , table-array , col-index-num [ , [ range-lookup-flag ] ] )","d":"Поисковая функция, используется для выполнения вертикального поиска значения в крайнем левом столбце таблицы или массива и возвращает значение, которое находится в той же самой строке в столбце с заданным номером"},"ERROR.TYPE":{"a":"(value)","d":"Информационная функция, возвращает числовое представление одной из существующих ошибок"},"ISBLANK":{"a":"(value)","d":"Информационная функция, проверяет, является ли ячейка пустой. Если ячейка пуста, функция возвращает значение TRUE (ИСТИНА), в противном случае функция возвращает значение FALSE (ЛОЖЬ)"},"ISERR":{"a":"(value)","d":"Информационная функция, используется для проверки на наличие значения ошибки. Если ячейка содержит значение ошибки (кроме #N/A), функция возвращает значение TRUE (ИСТИНА), в противном случае функция возвращает значение FALSE (ЛОЖЬ)"},"ISERROR":{"a":"(value)","d":"Информационная функция, используется для проверки на наличие значения ошибки. Если ячейка содержит одно из следующих значений ошибки: #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME? или #NULL, функция возвращает значение TRUE (ИСТИНА), в противном случае функция возвращает значение FALSE (ЛОЖЬ)"},"ISEVEN":{"a":"(number)","d":"Информационная функция, используется для проверки на наличие четного числа. Если ячейка содержит четное число, функция возвращает значение TRUE. Если число является нечетным, она возвращает значение FALSE"},"ISLOGICAL":{"a":"(value)","d":"Информационная функция, используется для проверки на наличие логического значения (TRUE (ИСТИНА) или FALSE (ЛОЖЬ)). Если ячейка содержит логическое значение, функция возвращает значение TRUE (ИСТИНА), в противном случае функция возвращает значение FALSE (ЛОЖЬ)"},"ISNA":{"a":"(value)","d":"Информационная функция, используется для проверки на наличие ошибки #N/A. Если ячейка содержит значение ошибки #N/A, функция возвращает значение TRUE (ИСТИНА), в противном случае функция возвращает значение FALSE (ЛОЖЬ)"},"ISNONTEXT":{"a":"(value)","d":"Информационная функция, используется для проверки на наличие значения, которое не является текстом. Если ячейка не содержит текстового значения, функция возвращает значение TRUE (ИСТИНА), в противном случае функция возвращает значение FALSE (ЛОЖЬ)"},"ISNUMBER":{"a":"(value)","d":"Информационная функция, используется для проверки на наличие числового значения. Если ячейка содержит числовое значение, функция возвращает значение TRUE (ИСТИНА), в противном случае функция возвращает значение FALSE (ЛОЖЬ)"},"ISODD":{"a":"(number)","d":"Информационная функция, используется для проверки на наличие нечетного числа. Если ячейка содержит нечетное число, функция возвращает значение TRUE. Если число является четным, она возвращает значение FALSE"},"ISREF":{"a":"(value)","d":"Информационная функция, используется для проверки, является ли значение допустимой ссылкой на другую ячейку"},"ISTEXT":{"a":"(value)","d":"Информационная функция, используется для проверки на наличие текстового значения. Если ячейка содержит текстовое значение, функция возвращает значение TRUE (ИСТИНА), в противном случае функция возвращает значение FALSE (ЛОЖЬ)"},"N":{"a":"(value)","d":"Информационная функция, преобразует значение в число"},"NA":{"a":"()","d":"Информационная функция, возвращает значение ошибки #N/A. Эта функция не требует аргумента"},"TYPE":{"a":"(value)","d":"Информационная функция, используется для определения типа результирующего или отображаемого значения"},"AND":{"a":"(logical1, logical2, ...)","d":"Логическая функция, используется для проверки, является ли введенное логическое значение TRUE (истинным) или FALSE (ложным). Функция возвращает значение TRUE (ИСТИНА), если все аргументы имеют значение TRUE (ИСТИНА)"},"FALSE":{"a":"()","d":"Логическая функция, возвращает значение FALSE (ЛОЖЬ) и не требует аргумента"},"IF":{"a":"(logical_test, value_if_true, value_if_false)","d":"Логическая функция, используется для проверки логического выражения и возвращает одно значение, если проверяемое условие имеет значение TRUE (ИСТИНА), и другое, если оно имеет значение FALSE (ЛОЖЬ)"},"IFERROR":{"a":"(value, value_if_error)","d":"Логическая функция, используется для проверки формулы на наличие ошибок в первом аргументе. Функция возвращает результат формулы, если ошибки нет, или определенное значение, если она есть"},"NOT":{"a":"(logical)","d":"Логическая функция, используется для проверки, является ли введенное логическое значение TRUE (истинным) или FALSE (ложным). Функция возвращает значение TRUE (ИСТИНА), если аргумент имеет значение FALSE (ЛОЖЬ), и FALSE (ЛОЖЬ), если аргумент имеет значение TRUE (ИСТИНА)"},"OR":{"a":"(logical1, logical2, ...)","d":"Логическая функция, используется для проверки, является ли введенное логическое значение TRUE (истинным) или FALSE (ложным). Функция возвращает значение FALSE (ЛОЖЬ), если все аргументы имеют значение FALSE (ЛОЖЬ)"},"TRUE":{"a":"()","d":"Логическая функция, возвращает значение TRUE (ИСТИНА) и не требует аргумента"}}
\ No newline at end of file
......@@ -2,7 +2,7 @@
.combo-functions {
width: 100%;
height: 242px;
height: 184px;
overflow: hidden;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment