2016-03-11 00:48:53 +00:00
<!DOCTYPE html>
< html >
< head >
< title > Вставка функций< / title >
< meta charset = "utf-8" / >
< meta name = "description" content = "Вставьте функцию для выполнения основных вычислений" / >
< link type = "text/css" rel = "stylesheet" href = "../editor.css" / >
< script type = "text/javascript" src = "../callback.js" > < / script >
2018-01-12 14:52:45 +00:00
< script type = "text/javascript" src = "../search/js/page-search.js" > < / script >
2016-03-11 00:48:53 +00:00
< / head >
< body >
< div class = "mainpart" >
2018-01-12 14:52:45 +00:00
< div class = "search-field" >
< input id = "search" class = "searchBar" placeholder = "Поиск" type = "search" onkeypress = "doSearch(event)" >
< / div >
2016-03-11 00:48:53 +00:00
< h1 > Вставка функций< / h1 >
< p > Важная причина использования электронных таблиц - это возможность выполнять основные расчеты. Некоторые из них можно выполнить автоматически, выбрав диапазон ячеек на рабочем листе:< / p >
< ul >
< li >
< b > СРЕДНЕЕ< / b > - используется для того, чтобы проанализировать выбранный диапазон ячеек и рассчитать среднее значение.
< / li >
< li >
< b > КОЛИЧЕСТВО< / b > - используется для того, чтобы подсчитать количество выбранных ячеек, содержащих значения, без учета пустых ячеек.
< / li >
< li >
< b > С У М М А < / b > - используется для того, чтобы сложить все числа в выбранном диапазоне без учета пустых или содержащих текст ячеек.
< / li >
< / ul >
< p > Результаты этих расчетов отображаются в правом нижнем углу строки состояния.< / p >
< p >
< img alt = "Основные расчеты" src = "../images/basiccalculations.png" / >
< / p >
< p >
Для выполнения любых других расчетов можно ввести нужную формулу вручную, используя общепринятые математические операторы, или вставить заранее определенную формулу - < b > Функцию< / b > .
< / p >
< p id = "insertfunction" > Для вставки функции:< / p >
< ol >
< li > выделите ячейку, в которую требуется вставить функцию,< / li >
2017-09-22 13:48:53 +00:00
< li > щелкните по значку < b > Вставить функцию< / b > < img alt = "Значок Вставить функцию" src = "../images/insertfunction.png" / > , расположенному на вкладке < b > Главная< / b > верхней панели инструментов, и выберите одну из часто используемых функций (SUM, MIN, MAX, COUNT) или выберите опцию < b > Дополнительно< / b > ,
2016-03-11 00:48:53 +00:00
< br / > или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду < b > Вставить функцию< / b > ,
< br / > или щелкните по значку < img alt = "Значок Функция" src = "../images/function.png" / > перед строкой формул,
< / li >
< li > в открывшемся окне < b > Вставить функцию< / b > выберите нужную группу функций, а затем выберите из списка требуемую функцию и нажмите < b > OK< / b > .< / li >
< li > введите аргументы функции или вручную, или выделив мышью диапазон ячеек, который надо добавить в качестве аргумента. Если функция требует несколько аргументов, их надо вводить через запятую.
< p class = "note" > < b > Примечание< / b > : в общих случаях, в качестве аргументов функций можно использовать числовые значения, логические значения (TRUE, FALSE), текстовые значения (они должны быть заключены в кавычки), ссылки на ячейки, ссылки на диапазоны ячеек, < a href = "UseNamedRanges.htm#usingnames" onclick = "onhyperlinkclick(this)" > имена, присвоенные диапазонам,< / a > и другие функции.< / p >
< / li >
< li > Нажмите клавишу < b > Enter< / b > .< / li >
< / ol >
< p > Вот список доступных функций, сгруппированных по категориям:< / p >
< p class = "note" > < b > Примечание< / b > : если вы хотите изменить язык, который используется для имен функций, перейдите в меню < b > Файл< / b > -> < b > Дополнительные параметры< / b > , выберите нужный язык из списка < b > Язык формул< / b > и нажмите кнопку < b > Применить< / b > .< / p >
< table class = "helptable" >
< tr class = "headerlite" >
< td width = "25%" > < b > Категория функций< / b > < / td >
< td width = "40%" > < b > Описание< / b > < / td >
< td width = "35%" > < b > Функции< / b > < / td >
< / tr >
< tr >
< td > Функции для работы с текстом и данными< / td >
< td > Используются для корректного отображения текстовых данных в электронной таблице.< / td >
2017-09-22 13:48:53 +00:00
< td > < a href = "../Functions/char.htm" onclick = "onhyperlinkclick(this)" > CHAR (СИМВОЛ)< / a > ; < a href = "../Functions/clean.htm" onclick = "onhyperlinkclick(this)" > CLEAN (ПЕЧСИМВ)< / a > ; < a href = "../Functions/code.htm" onclick = "onhyperlinkclick(this)" > CODE (КОДСИМВ)< / a > ; < a href = "../Functions/concatenate.htm" onclick = "onhyperlinkclick(this)" > CONCATENATE (СЦЕПИТЬ)< / a > ; < a href = "../Functions/concat.htm" onclick = "onhyperlinkclick(this)" > CONCAT (СЦЕП)< / a > ; < a href = "../Functions/dollar.htm" onclick = "onhyperlinkclick(this)" > DOLLAR (РУБЛЬ)< / a > ; < a href = "../Functions/exact.htm" onclick = "onhyperlinkclick(this)" > EXACT (СОВПАД)< / a > ; < a href = "../Functions/find.htm" onclick = "onhyperlinkclick(this)" > FIND (НАЙТИ)< / a > ; < a href = "../Functions/find.htm" onclick = "onhyperlinkclick(this)" > FINDB (НАЙТИБ)< / a > ; < a href = "../Functions/fixed.htm" onclick = "onhyperlinkclick(this)" > FIXED (ФИКСИРОВАННЫЙ)< / a > ; < a href = "../Functions/left.htm" onclick = "onhyperlinkclick(this)" > LEFT (ЛЕВСИМВ)< / a > ; < a href = "../Functions/left.htm" onclick = "onhyperlinkclick(this)" > LEFTB (ЛЕВБ)< / a > ; < a href = "../Functions/len.htm" onclick = "onhyperlinkclick(this)" > LEN (ДЛСТР)< / a > ; < a href = "../Functions/len.htm" onclick = "onhyperlinkclick(this)" > LENB (ДЛИНБ)< / a > ; < a href = "../Functions/lower.htm" onclick = "onhyperlinkclick(this)" > LOWER (СТРОЧН)< / a > ; < a href = "../Functions/mid.htm" onclick = "onhyperlinkclick(this)" > MID (ПСТР)< / a > ; < a href = "../Functions/mid.htm" onclick = "onhyperlinkclick(this)" > MIDB (ПСТРБ)< / a > ; < a href = "../Functions/numbervalue.htm" onclick = "onhyperlinkclick(this)" > NUMBERVALUE (ЧЗНАЧ)< / a > ; < a href = "../Functions/proper.htm" onclick = "onhyperlinkclick(this)" > PROPER (ПРОПНАЧ)< / a > ; < a href = "../Functions/replace.htm" onclick = "onhyperlinkclick(this)" > REPLACE (ЗАМЕНИТЬ)< / a > ; < a href = "../Functions/replace.htm" onclick = "onhyperlinkclick(this)" > REPLACEB (ЗАМЕНИТЬБ)< / a > ; < a href = "../Functions/rept.htm" onclick = "onhyperlinkclick(this)" > REPT (ПОВТОР)< / a > ; < a href = "../Functions/right.htm" onclick = "onhyperlinkclick(this)" > RIGHT (ПРАВСИМВ)< / a > ; < a href = "../Functions/right.htm" onclick = "onhyperlinkclick(this)" > RIGHTB (ПРАВБ)< / a > ; < a href = "../Functions/search.htm" onclick = "onhyperlinkclick(this)" > SEARCH (ПОИСК)< / a > ; < a href = "../Functions/search.htm" onclick = "onhyperlinkclick(this)" > SEARCHB (ПОИСКБ)< / a > ; < a href = "../Functions/substitute.htm" onclick = "onhyperlinkclick(this)" > SUBSTITUTE (ПОДСТАВИТЬ)< / a > ; < a href = "../Functions/t.htm" onclick = "onhyperlinkclick(this)" > T< / a > ; < a href = "../Functions/text.htm" onclick = "onhyperlinkclick(this)" > TEXT (Т Е К С Т )< / a > ; < a href = "../Functions/textjoin.htm" onclick = "onhyperlinkclick(this)" > TEXTJOIN (ОБЪЕДИНИТЬ)< / a > ; < a href = "../Functions/trim.htm" onclick = "onhyperlinkclick(this)" > TRIM (СЖПРОБЕЛЫ)< / a > ; < a href = "../Functions/unichar.htm" onclick = "onhyperlinkclick(this)" > UNICHAR (ЮНИСИМВ)< / a > ; < a href = "../Functions/unicode.htm" onclick = "onhyperlinkclick(this)" > UNICODE< / a > ; < a href = "../Functions/upper.htm" onclick = "onhyperlinkclick(this)" > UPPER (ПРОПИСН)< / a > ; < a href = "../Functions/value.htm" onclick = "onhyperlinkclick(this)" > VALUE (ЗНАЧЕН)< / a > ;< / td >
2016-03-11 00:48:53 +00:00
< / tr >
< tr >
< td > Статистические функции< / td >
< td > Используются для анализа данных: нахождения среднего значения, наибольшего или наименьшего значения в диапазоне ячеек.< / td >
2017-09-22 13:48:53 +00:00
< td > < a href = "../Functions/avedev.htm" onclick = "onhyperlinkclick(this)" > AVEDEV (СРОТКЛ)< / a > ; < a href = "../Functions/average.htm" onclick = "onhyperlinkclick(this)" > AVERAGE (СРЗНАЧ)< / a > ; < a href = "../Functions/averagea.htm" onclick = "onhyperlinkclick(this)" > AVERAGEA (СРЗНАЧА)< / a > ; < a href = "../Functions/averageif.htm" onclick = "onhyperlinkclick(this)" > AVERAGEIF (СРЗНАЧЕСЛИ)< / a > ; < a href = "../Functions/averageifs.htm" onclick = "onhyperlinkclick(this)" > AVERAGEIFS (СРЗНАЧЕСЛИМН)< / a > ; < a href = "../Functions/betadist.htm" onclick = "onhyperlinkclick(this)" > BETADIST (БЕТАРАСП)< / a > ; < a href = "../Functions/beta-dist.htm" onclick = "onhyperlinkclick(this)" > BETA.DIST (БЕТА.РАСП)< / a > ; < a href = "../Functions/beta-inv.htm" onclick = "onhyperlinkclick(this)" > BETA.INV (БЕТА.ОБР)< / a > ; < a href = "../Functions/binomdist.htm" onclick = "onhyperlinkclick(this)" > BINOMDIST (БИНОМРАСП)< / a > ; < a href = "../Functions/binom-dist.htm" onclick = "onhyperlinkclick(this)" > BINOM.DIST (БИНОМ.РАСП)< / a > ; < a href = "../Functions/binom-dist-range.htm" onclick = "onhyperlinkclick(this)" > BINOM.DIST.RANGE (БИНОМ.РАСП.ДИАП)< / a > ; < a href = "../Functions/binom-inv.htm" onclick = "onhyperlinkclick(this)" > BINOM.INV (БИНОМ.ОБР)< / a > ; < a href = "../Functions/chidist.htm" onclick = "onhyperlinkclick(this)" > CHIDIST (Х И2Р А С П)< / a > ; < a href = "../Functions/chiinv.htm" onclick = "onhyperlinkclick(this)" > CHIINV (Х И2О БР )< / a > ; < a href = "../Functions/chisq-dist.htm" onclick = "onhyperlinkclick(this)" > CHISQ.DIST (Х И2.РАСП)< / a > ; < a href = "../Functions/chisq-dist-rt.htm" onclick = "onhyperlinkclick(this)" > CHISQ.DIST.RT (Х И2.РАСП.ПХ)< / a > ; < a href = "../Functions/chisq-inv.htm" onclick = "onhyperlinkclick(this)" > CHISQ.INV (Х И2.ОБР)< / a > ; < a href = "../Functions/chisq-inv-rt.htm" onclick = "onhyperlinkclick(this)" > CHISQ.INV.RT (Х И2.ОБР.ПХ)< / a > ; < a href = "../Functions/chitest.htm" onclick = "onhyperlinkclick(this)" > CHITEST (Х И2Т Е С Т )< / a > ; < a href = "../Functions/chisq-test.htm" onclick = "onhyperlinkclick(this)" > CHISQ.TEST (Х И2.Т Е С Т )< / a > ; < a href = "../Functions/confidence.htm" onclick = "onhyperlinkclick(this)" > CONFIDENCE (ДОВЕРИТ)< / a > ; < a href = "../Functions/confidence-norm.htm" onclick = "onhyperlinkclick(this)" > CONFIDENCE.NORM (ДОВЕРИТ.Н О Р М )< / a > ; < a href = "../Functions/confidence-t.htm" onclick = "onhyperlinkclick(this)" > CONFIDENCE.T (ДОВЕРИТ.СТЬЮДЕНТ)< / a > ; < a href = "../Functions/correl.htm" onclick = "onhyperlinkclick(this)" > CORREL (КОРРЕЛ)< / a > ; < a href = "../Functions/count.htm" onclick = "onhyperlinkclick(this)" > COUNT (СЧЁТ)< / a > ; < a href = "../Functions/counta.htm" onclick = "onhyperlinkclick(this)" > COUNTA (СЧЁТЗ)< / a > ; < a href = "../Functions/countblank.htm" onclick = "onhyperlinkclick(this)" > COUNBLANK (СЧИТАТЬПУСТОТЫ)< / a > ; < a href = "../Functions/countif.htm" onclick = "onhyperlinkclick(this)" > COUNTIF (СЧЁТЕСЛИ)< / a > ; < a href = "../Functions/countifs.htm" onclick = "onhyperlinkclick(this)" > COUNTIFS (СЧЁТЕСЛИМН)< / a > ; < a href = "../Functions/covar.htm" onclick = "onhyperlinkclick(this)" > COVAR (К О В А Р )< / a > ; < a href = "../Functions/covariance-p.htm" onclick = "onhyperlinkclick(this)" > COVARIANCE.P (КОВАРИАЦИЯ.Г)< / a > ; < a href = "../Functions/covariance-s.htm" onclick = "onhyperlinkclick(this)" > COVARIANCE.S (КОВАРИАЦИЯ.В )< / a > ; < a href = "../Functions/critbinom.htm" onclick = "onhyperlinkclick(this)" > CRITBINOM (КРИТБИНОМ)< / a > ; < a href = "../Functions/devsq.htm" onclick = "onhyperlinkclick(this)" > DEVSQ (КВАДРОТКЛ)< / a > ; < a href = "../Functions/expon-dist.htm" onclick = "onhyperlinkclick(this)" > EXPON.DIST (ЭКСП.РАСП)< / a > ; < a href = "../Functions/expondist.htm" onclick = "onhyperlinkclick(this)" > EXPONDIST (ЭКСПРАСП)< / a > ; < a href = "../Functions/f-dist.htm" onclick = "onhyperlinkclick(this)" > F.DIST (F.РАСП)< / a > ; < a href = "../Functions/fdist.htm" onclick = "onhyperlinkclick(this)" > FDIST (FР А С П)< / a > ; < a href = "../Functions/f-dist-rt.htm" onclick = "onhyperlinkclick(this)" > F.DIST.RT (F.РАСП.ПХ)< / a > ; < a
2016-03-11 00:48:53 +00:00
< / tr >
< tr >
< td > Финансовые функции< / td >
< td > Используются для выполнения финансовых расчетов: вычисления чистой приведенной стоимости, суммы платежа и т.д.< / td >
2017-09-22 13:48:53 +00:00
< td > < a href = "../Functions/accrint.htm" onclick = "onhyperlinkclick(this)" > ACCRINT (НАКОПДОХОД)< / a > ; < a href = "../Functions/accrintm.htm" onclick = "onhyperlinkclick(this)" > ACCRINTM (НАКОПДОХОДПОГАШ)< / a > ; < a href = "../Functions/amordegrc.htm" onclick = "onhyperlinkclick(this)" > AMORDEGRC (А М О Р У М )< / a > ; < a href = "../Functions/amorlinc.htm" onclick = "onhyperlinkclick(this)" > AMORLINC (А М О Р У В )< / a > ; < a href = "../Functions/coupdaybs.htm" onclick = "onhyperlinkclick(this)" > COUPDAYBS (ДНЕЙКУПОНДО)< / a > ; < a href = "../Functions/coupdays.htm" onclick = "onhyperlinkclick(this)" > COUPDAYS (ДНЕЙКУПОН)< / a > ; < a href = "../Functions/coupdaysnc.htm" onclick = "onhyperlinkclick(this)" > COUPDAYSNC (ДНЕЙКУПОНПОСЛЕ)< / a > ; < a href = "../Functions/coupncd.htm" onclick = "onhyperlinkclick(this)" > COUPNCD (ДАТАКУПОНПОСЛЕ)< / a > ; < a href = "../Functions/coupnum.htm" onclick = "onhyperlinkclick(this)" > COUPNUM (ЧИСЛКУПОН)< / a > ; < a href = "../Functions/couppcd.htm" onclick = "onhyperlinkclick(this)" > COUPPCD (ДАТАКУПОНДО)< / a > ; < a href = "../Functions/cumipmt.htm" onclick = "onhyperlinkclick(this)" > CUMIPMT (ОБЩПЛАТ)< / a > ; < a href = "../Functions/cumprinc.htm" onclick = "onhyperlinkclick(this)" > CUMPRINC (ОБЩДОХОД)< / a > ; < a href = "../Functions/db.htm" onclick = "onhyperlinkclick(this)" > DB (ФУО)< / a > ; < a href = "../Functions/ddb.htm" onclick = "onhyperlinkclick(this)" > DDB (ДДОБ)< / a > ; < a href = "../Functions/disc.htm" onclick = "onhyperlinkclick(this)" > DISC (СКИДКА)< / a > ; < a href = "../Functions/dollarde.htm" onclick = "onhyperlinkclick(this)" > DOLLARDE (РУБЛЬ.ДЕС)< / a > ; < a href = "../Functions/dollarfr.htm" onclick = "onhyperlinkclick(this)" > DOLLARFR (РУБЛЬ.ДРОБЬ)< / a > ; < a href = "../Functions/duration.htm" onclick = "onhyperlinkclick(this)" > DURATION (ДЛИТ)< / a > ; < a href = "../Functions/effect.htm" onclick = "onhyperlinkclick(this)" > EFFECT (ЭФФЕКТ)< / a > ; < a href = "../Functions/fv.htm" onclick = "onhyperlinkclick(this)" > FV (БС)< / a > ; < a href = "../Functions/fvschedule.htm" onclick = "onhyperlinkclick(this)" > FVSCHEDULE (БЗРАСПИС)< / a > ; < a href = "../Functions/intrate.htm" onclick = "onhyperlinkclick(this)" > INTRATE (ИНОРМА)< / a > ; < a href = "../Functions/ipmt.htm" onclick = "onhyperlinkclick(this)" > IPMT (ПРПЛТ)< / a > ; < a href = "../Functions/irr.htm" onclick = "onhyperlinkclick(this)" > IRR (ВСД)< / a > ; < a href = "../Functions/ispmt.htm" onclick = "onhyperlinkclick(this)" > ISPMT (ПРОЦПЛАТ)< / a > ; < a href = "../Functions/mduration.htm" onclick = "onhyperlinkclick(this)" > MDURATION (МДЛИТ)< / a > ; < a href = "../Functions/mirr.htm" onclick = "onhyperlinkclick(this)" > MIRR (МВСД)< / a > ; < a href = "../Functions/nominal.htm" onclick = "onhyperlinkclick(this)" > NOMINAL (НОМИНАЛ)< / a > ; < a href = "../Functions/nper.htm" onclick = "onhyperlinkclick(this)" > NPER (КПЕР)< / a > ; < a href = "../Functions/npv.htm" onclick = "onhyperlinkclick(this)" > NPV (ЧПС)< / a > ; < a href = "../Functions/oddfprice.htm" onclick = "onhyperlinkclick(this)" > ODDFPRICE (ЦЕНАПЕРВНЕРЕГ)< / a > ; < a href = "../Functions/oddfyield.htm" onclick = "onhyperlinkclick(this)" > ODDFYIELD (ДОХОДПЕРВНЕРЕГ)< / a > ; < a href = "../Functions/oddlprice.htm" onclick = "onhyperlinkclick(this)" > ODDLPRICE (ЦЕНАПОСЛНЕРЕГ)< / a > ; < a href = "../Functions/oddlyield.htm" onclick = "onhyperlinkclick(this)" > ODDLYIELD (ДОХОДПОСЛНЕРЕГ)< / a > ; < a href = "../Functions/pmt.htm" onclick = "onhyperlinkclick(this)" > PMT (ПЛТ)< / a > ; < a href = "../Functions/ppmt.htm" onclick = "onhyperlinkclick(this)" > PPMT (ОСПЛТ)< / a > ; < a href = "../Functions/price.htm" onclick = "onhyperlinkclick(this)" > PRICE (ЦЕНА)< / a > ; < a href = "../Functions/pricedisc.htm" onclick = "onhyperlinkclick(this)" > PRICEDISC (ЦЕНАСКИДКА)< / a > ; < a href = "../Functions/pricemat.htm" onclick = "onhyperlinkclick(this)" > PRICEMAT (ЦЕНАПОГАШ)< / a > ; < a href = "../Functions/pv.htm" onclick = "onhyperlinkclick(this)" > PV (ПС)< / a > ; < a href = "../Functions/rate.htm" onclick = "onhyperlinkclick(this)" > RATE (С Т А В К А )< / a > ; < a href = "../Functions/received.htm" onclick = "onhyp
2016-03-11 00:48:53 +00:00
< / tr >
< tr >
< td > Математические функции< / td >
< td > Используются для выполнения базовых математических и тригонометрических операций, таких как сложение, умножение, деление, округление и т.д.< / td >
2017-09-22 13:48:53 +00:00
< td > < a href = "../Functions/abs.htm" onclick = "onhyperlinkclick(this)" > ABS< / a > ; < a href = "../Functions/acos.htm" onclick = "onhyperlinkclick(this)" > ACOS< / a > ; < a href = "../Functions/acosh.htm" onclick = "onhyperlinkclick(this)" > ACOSH< / a > ; < a href = "../Functions/acot.htm" onclick = "onhyperlinkclick(this)" > ACOT< / a > ; < a href = "../Functions/acoth.htm" onclick = "onhyperlinkclick(this)" > ACOTH< / a > ; < a href = "../Functions/aggregate.htm" onclick = "onhyperlinkclick(this)" > AGGREGATE (АГРЕГАТ)< / a > ; < a href = "../Functions/arabic.htm" onclick = "onhyperlinkclick(this)" > ARABIC (АРАБСКОЕ)< / a > ; < a href = "../Functions/asin.htm" onclick = "onhyperlinkclick(this)" > ASIN< / a > ; < a href = "../Functions/asinh.htm" onclick = "onhyperlinkclick(this)" > ASINH< / a > ; < a href = "../Functions/atan.htm" onclick = "onhyperlinkclick(this)" > ATAN< / a > ; < a href = "../Functions/atan2.htm" onclick = "onhyperlinkclick(this)" > ATAN2< / a > ; < a href = "../Functions/atanh.htm" onclick = "onhyperlinkclick(this)" > ATANH< / a > ; < a href = "../Functions/base.htm" onclick = "onhyperlinkclick(this)" > BASE (ОСНОВАНИЕ)< / a > ; < a href = "../Functions/ceiling.htm" onclick = "onhyperlinkclick(this)" > CEILING (О К Р В В Е Р Х )< / a > ; < a href = "../Functions/ceilingmath.htm" onclick = "onhyperlinkclick(this)" > CEILING.MATH (О К Р В В Е Р Х .М А Т )< / a > ; < a href = "../Functions/ceilingprecise.htm" onclick = "onhyperlinkclick(this)" > CEILING.PRECISE (О К Р В В Е Р Х .ТОЧН)< / a > ; < a href = "../Functions/combin.htm" onclick = "onhyperlinkclick(this)" > COMBIN (ЧИСЛКОМБ)< / a > ; < a href = "../Functions/combina.htm" onclick = "onhyperlinkclick(this)" > COMBINA (ЧИСЛКОМБА)< / a > ; < a href = "../Functions/cos.htm" onclick = "onhyperlinkclick(this)" > COS< / a > ; < a href = "../Functions/cosh.htm" onclick = "onhyperlinkclick(this)" > COSH< / a > ; < a href = "../Functions/cot.htm" onclick = "onhyperlinkclick(this)" > COT< / a > ; < a href = "../Functions/coth.htm" onclick = "onhyperlinkclick(this)" > COTH< / a > ; < a href = "../Functions/csc.htm" onclick = "onhyperlinkclick(this)" > CSC< / a > ; < a href = "../Functions/csch.htm" onclick = "onhyperlinkclick(this)" > CSCH< / a > ; < a href = "../Functions/decimal.htm" onclick = "onhyperlinkclick(this)" > DECIMAL (ДЕС)< / a > ; < a href = "../Functions/degrees.htm" onclick = "onhyperlinkclick(this)" > DEGREES (ГРАДУСЫ)< / a > ; < a href = "../Functions/ecma-ceiling.htm" onclick = "onhyperlinkclick(this)" > ECMA.CEILING (ECMA.О К Р В В Е Р Х )< / a > ; < a href = "../Functions/even.htm" onclick = "onhyperlinkclick(this)" > EVEN (ЧЁТН)< / a > ; < a href = "../Functions/exp.htm" onclick = "onhyperlinkclick(this)" > EXP< / a > ; < a href = "../Functions/fact.htm" onclick = "onhyperlinkclick(this)" > FACT (ФАКТР)< / a > ; < a href = "../Functions/factdouble.htm" onclick = "onhyperlinkclick(this)" > FACTDOUBLE (ДВФАКТР)< / a > ; < a href = "../Functions/floor.htm" onclick = "onhyperlinkclick(this)" > FLOOR (ОКРВНИЗ)< / a > ; < a href = "../Functions/floorprecise.htm" onclick = "onhyperlinkclick(this)" > FLOOR.PRECISE (ОКРВНИЗ.ТОЧН)< / a > ; < a href = "../Functions/floormath.htm" onclick = "onhyperlinkclick(this)" > FLOOR.MATH (ОКРВНИЗ.М А Т )< / a > ; < a href = "../Functions/gcd.htm" onclick = "onhyperlinkclick(this)" > GCD (НОД)< / a > ; < a href = "../Functions/int.htm" onclick = "onhyperlinkclick(this)" > INT (ЦЕЛОЕ)< / a > ; < a href = "../Functions/isoceiling.htm" onclick = "onhyperlinkclick(this)" > ISO.CEILING (ISO.О К Р В В Е Р Х )< / a > ; < a href = "../Functions/lcm.htm" onclick = "onhyperlinkclick(this)" > LCM (Н О К )< / a > ; < a href = "../Functions/ln.htm" onclick = "onhyperlinkclick(this)" > LN< / a > ; < a href = "../Functions/log.htm" onclick = "onhyperlinkclick(this)" > LOG< / a > ; < a href = "../Functions/log10.htm" onclick = "onhyperlinkclick(this)" > LOG10< / a > ; < a href = "../Functions/mdeterm.htm" onclick = "onhyperlinkclick(this)" > MDETERM (МОПРЕД)< / a > ; < a href = "../Functions/minverse.htm" onclick = "onhyperlinkclick(this)" > MINVERSE (МОБР)< / a > ; < a href = "../Functions/mmult.htm" onclick = "onhyperlinkclick(this)" > MMULT (МУМНОЖ)< / a > ; < a href = "../Functions/mod.htm" onclick = "onhyperlinkclick(this)" > MOD (О С Т А Т )< / a > ; < a href = "../Functions/mround.htm" onclick = "onhyperlinkclick(this)" > MROUND (ОКРУГЛТ)< / a > ; < a href = "../Functions/mult
2016-03-11 00:48:53 +00:00
< / tr >
< tr >
< td > Поисковые функции< / td >
< td > Используются для упрощения поиска информации по списку данных.< / td >
< td > < a href = "../Functions/address.htm" onclick = "onhyperlinkclick(this)" > ADDRESS (АДРЕС)< / a > ; < a href = "../Functions/choose.htm" onclick = "onhyperlinkclick(this)" > CHOOSE (ВЫБОР)< / a > ; < a href = "../Functions/column.htm" onclick = "onhyperlinkclick(this)" > COLUMN (СТОЛБЕЦ)< / a > ; < a href = "../Functions/columns.htm" onclick = "onhyperlinkclick(this)" > COLUMNS (ЧИСЛСТОЛБ)< / a > ; < a href = "../Functions/hlookup.htm" onclick = "onhyperlinkclick(this)" > HLOOKUP (ГПР)< / a > ; < a href = "../Functions/index.htm" onclick = "onhyperlinkclick(this)" > INDEX (ИНДЕКС)< / a > ; < a href = "../Functions/indirect.htm" onclick = "onhyperlinkclick(this)" > INDIRECT (ДВССЫЛ)< / a > ; < a href = "../Functions/lookup.htm" onclick = "onhyperlinkclick(this)" > LOOKUP (ПРОСМОТР)< / a > ; < a href = "../Functions/match.htm" onclick = "onhyperlinkclick(this)" > MATCH (ПОИСКПОЗ)< / a > ; < a href = "../Functions/offset.htm" onclick = "onhyperlinkclick(this)" > OFFSET (СМЕЩ)< / a > ; < a href = "../Functions/row.htm" onclick = "onhyperlinkclick(this)" > ROW (С Т Р О К А )< / a > ; < a href = "../Functions/rows.htm" onclick = "onhyperlinkclick(this)" > ROWS (ЧСТРОК)< / a > ; < a href = "../Functions/transpose.htm" onclick = "onhyperlinkclick(this)" > TRANSPOSE (ТРАНСП)< / a > ; < a href = "../Functions/vlookup.htm" onclick = "onhyperlinkclick(this)" > VLOOKUP (ВПР)< / a > < / td >
2017-09-22 13:48:53 +00:00
< / tr >
< tr >
< td > Функции даты и времени< / td >
< td > Используются для корректного отображения даты и времени в электронной таблице.< / td >
< td > < a href = "../Functions/date.htm" onclick = "onhyperlinkclick(this)" > DATE (ДАТА)< / a > ; < a href = "../Functions/datedif.htm" onclick = "onhyperlinkclick(this)" > DATEDIF (РАЗНДАТ)< / a > ; < a href = "../Functions/datevalue.htm" onclick = "onhyperlinkclick(this)" > DATEVALUE (ДАТАЗНАЧ)< / a > ; < a href = "../Functions/day.htm" onclick = "onhyperlinkclick(this)" > DAY (ДЕНЬ)< / a > ; < a href = "../Functions/days.htm" onclick = "onhyperlinkclick(this)" > DAYS (ДНИ)< / a > ; < a href = "../Functions/days360.htm" onclick = "onhyperlinkclick(this)" > DAYS360 (ДН Е Й360)< / a > ; < a href = "../Functions/edate.htm" onclick = "onhyperlinkclick(this)" > EDATE (ДАТАМЕС)< / a > ; < a href = "../Functions/eomonth.htm" onclick = "onhyperlinkclick(this)" > EOMONTH (КОНМЕСЯЦА)< / a > ; < a href = "../Functions/hour.htm" onclick = "onhyperlinkclick(this)" > HOUR (ЧАС)< / a > ; < a href = "../Functions/isoweeknum.htm" onclick = "onhyperlinkclick(this)" > ISOWEEKNUM (НОМНЕДЕЛИ.ISO)< / a > ; < a href = "../Functions/minute.htm" onclick = "onhyperlinkclick(this)" > MINUTE (МИНУТЫ)< / a > ; < a href = "../Functions/month.htm" onclick = "onhyperlinkclick(this)" > MONTH (МЕСЯЦ)< / a > ; < a href = "../Functions/networkdays.htm" onclick = "onhyperlinkclick(this)" > NETWORKDAYS (ЧИСТРАБДНИ)< / a > ; < a href = "../Functions/networkdays-intl.htm" onclick = "onhyperlinkclick(this)" > NETWORKDAYS.INTL (ЧИСТРАБДНИ.МЕЖД)< / a > ; < a href = "../Functions/now.htm" onclick = "onhyperlinkclick(this)" > NOW (ТДАТА)< / a > ; < a href = "../Functions/second.htm" onclick = "onhyperlinkclick(this)" > SECOND (СЕКУНДЫ)< / a > ; < a href = "../Functions/time.htm" onclick = "onhyperlinkclick(this)" > TIME (ВРЕМЯ)< / a > ; < a href = "../Functions/timevalue.htm" onclick = "onhyperlinkclick(this)" > TIMEVALUE (ВРЕМЗНАЧ)< / a > ; < a href = "../Functions/today.htm" onclick = "onhyperlinkclick(this)" > TODAY (СЕГОДНЯ)< / a > ; < a href = "../Functions/weekday.htm" onclick = "onhyperlinkclick(this)" > WEEKDAY (ДЕНЬНЕД)< / a > ; < a href = "../Functions/weeknum.htm" onclick = "onhyperlinkclick(this)" > WEEKNUM (НОМНЕДЕЛИ)< / a > ; < a href = "../Functions/workday.htm" onclick = "onhyperlinkclick(this)" > WORKDAY (РАБДЕНЬ)< / a > ; < a href = "../Functions/workday-intl.htm" onclick = "onhyperlinkclick(this)" > WORKDAY.INTL (РАБДЕНЬ.МЕЖД)< / a > ; < a href = "../Functions/year.htm" onclick = "onhyperlinkclick(this)" > YEAR (ГОД)< / a > ; < a href = "../Functions/yearfrac.htm" onclick = "onhyperlinkclick(this)" > YEARFRAC (ДОЛЯГОДА)< / a > < / td >
< / tr >
< tr >
< td > Инженерные функции< / td >
< td > Используются для выполнения инженерных расчетов: преобразования чисел из одной системы счисления в другую, работы с комплексными числами и т.д.< / td >
< td > < a href = "../Functions/besseli.htm" onclick = "onhyperlinkclick(this)" > BESSELI (БЕССЕЛЬ.I)< / a > ; < a href = "../Functions/besselj.htm" onclick = "onhyperlinkclick(this)" > BESSELJ (БЕССЕЛЬ.J)< / a > ; < a href = "../Functions/besselk.htm" onclick = "onhyperlinkclick(this)" > BESSELK (БЕССЕЛЬ.K)< / a > ; < a href = "../Functions/bessely.htm" onclick = "onhyperlinkclick(this)" > BESSELY (БЕССЕЛЬ.Y)< / a > ; < a href = "../Functions/bin2dec.htm" onclick = "onhyperlinkclick(this)" > BIN2DEC (ДВ.В .ДЕС)< / a > ; < a href = "../Functions/bin2hex.htm" onclick = "onhyperlinkclick(this)" > BIN2HEX (ДВ.В .ШЕСТН)< / a > ; < a href = "../Functions/bin2oct.htm" onclick = "onhyperlinkclick(this)" > BIN2OCT (ДВ.В .В О С Ь М )< / a > ; < a href = "../Functions/bitand.htm" onclick = "onhyperlinkclick(this)" > BITAND (БИТ.И)< / a > ; < a href = "../Functions/bitlshift.htm" onclick = "onhyperlinkclick(this)" > BITLSHIFT (БИТ.СДВИГЛ)< / a > ; < a href = "../Functions/bitor.htm" onclick = "onhyperlinkclick(this)" > BITOR (БИТ.ИЛИ)< / a > ; < a href = "../Functions/bitrshift.htm" onclick = "onhyperlinkclick(this)" > BITRSHIFT (БИТ.СДВИГП)< / a > ; < a href = "../Functions/bitxor.htm" onclick = "onhyperlinkclick(this)" > BITXOR (БИТ.ИСКЛИЛИ)< / a > ; < a href = "../Functions/complex.htm" onclick = "onhyperlinkclick(this)" > COMPLEX (КОМПЛЕКСН)< / a > ; < a href = "../Functions/dec2bin.htm" onclick = "onhyperlinkclick(this)" > DEC2BIN (ДЕС.В .ДВ)< / a > ; < a href = "../Functions/dec2hex.htm" onclick = "onhyperlinkclick(this)" > DEC2HEX (ДЕС.В .ШЕСТН)< / a > ; < a href = "../Functions/dec2oct.htm" onclick = "onhyperlinkclick(this)" > DEC2OCT (ДЕС.В .В О С Ь М )< / a > ; < a href = "../Functions/delta.htm" onclick = "onhyperlinkclick(this)" > DELTA (ДЕЛЬТА)< / a > ; < a href = "../Functions/erf.htm" onclick = "onhyperlinkclick(this)" > ERF (ФОШ)< / a > ; < a href = "../Functions/erf-precise.htm" onclick = "onhyperlinkclick(this)" > ERF.PRECISE (ФОШ.ТОЧН)< / a > ; < a href = "../Functions/erfc.htm" onclick = "onhyperlinkclick(this)" > ERFC (ДФОШ)< / a > ; < a href = "../Functions/erfc-precise.htm" onclick = "onhyperlinkclick(this)" > ERFC.PRECISE (ДФОШ.ТОЧН)< / a > ; < a href = "../Functions/gestep.htm" onclick = "onhyperlinkclick(this)" > GESTEP (ПОРОГ)< / a > ; < a href = "../Functions/hex2bin.htm" onclick = "onhyperlinkclick(this)" > HEX2BIN (ШЕСТН.В .ДВ)< / a > ; < a href = "../Functions/hex2dec.htm" onclick = "onhyperlinkclick(this)" > HEX2DEC (ШЕСТН.В .ДЕС)< / a > ; < a href = "../Functions/hex2oct.htm" onclick = "onhyperlinkclick(this)" > HEX2OCT (ШЕСТН.В .В О С Ь М )< / a > ; < a href = "../Functions/imabs.htm" onclick = "onhyperlinkclick(this)" > IMABS (МНИМ.ABS)< / a > ; < a href = "../Functions/imaginary.htm" onclick = "onhyperlinkclick(this)" > IMAGINARY (МНИМ.ЧАСТЬ)< / a > ; < a href = "../Functions/imargument.htm" onclick = "onhyperlinkclick(this)" > IMARGUMENT (МНИМ.АРГУМЕНТ)< / a > ; < a href = "../Functions/imconjugate.htm" onclick = "onhyperlinkclick(this)" > IMCONJUGATE (МНИМ.СОПРЯЖ)< / a > ; < a href = "../Functions/imcos.htm" onclick = "onhyperlinkclick(this)" > IMCOS (МНИМ.COS)< / a > ; < a href = "../Functions/imcosh.htm" onclick = "onhyperlinkclick(this)" > IMCOSH (МНИМ.COSH)< / a > ; < a href = "../Functions/imcot.htm" onclick = "onhyperlinkclick(this)" > IMCOT (МНИМ.COT)< / a > ; < a href = "../Functions/imcsc.htm" onclick = "onhyperlinkclick(this)" > IMCSC (МНИМ.CSC)< / a > ; < a href = "../Functions/imcsch.htm" onclick = "onhyperlinkclick(this)" > IMCSCH (МНИМ.CSCH)< / a > ; < a href = "../Functions/imdiv.htm" onclick = "onhyperlinkclick(this)" > IMDIV (МНИМ.ДЕЛ)< / a > ; < a href = "../Functions/imexp.htm" onclick = "onhyperlinkclick(this)" > IMEXP (МНИМ.EXP)< / a > ; < a href = "../Functions/imln.htm" onclick = "onhyperlinkclick(this)" > IMLN (МНИМ.LN)< / a > ; < a href = "../Functions/imlog10.htm" onclick = "onhyperlinkclick(this)" > IMLOG10 (МНИМ.LOG10)< / a > ; < a href = "../Functions/imlog2.htm" onclick = "onhyperlinkclick(this)" > IMLOG2 (МНИМ.LOG2)< / a > ; < a href = "../Functions/impower.htm" onclick = "onhyperlinkclick(this)" > IMPOWER (МНИМ.СТЕПЕНЬ)< / a > ; < a href = "../Functions/improduct.htm" onclick = "onhyperlinkclick(this)" > IMPRODUCT (МНИМ.ПРОИЗВ
< / tr >
< tr >
< td > Функции для работы с базами данных< / td >
< td > Используются для выполнения вычислений по значениям определенного поля базы данных, соответствующих заданным критериям.< / td >
< td > < a href = "../Functions/daverage.htm" onclick = "onhyperlinkclick(this)" > DAVERAGE (ДСРЗНАЧ)< / a > ; < a href = "../Functions/dcount.htm" onclick = "onhyperlinkclick(this)" > DCOUNT (БСЧЁТ)< / a > ; < a href = "../Functions/dcounta.htm" onclick = "onhyperlinkclick(this)" > DCOUNTA (БСЧЁТА)< / a > ; < a href = "../Functions/dget.htm" onclick = "onhyperlinkclick(this)" > DGET (БИЗВЛЕЧЬ)< / a > ; < a href = "../Functions/dmax.htm" onclick = "onhyperlinkclick(this)" > DMAX (ДМАКС)< / a > ; < a href = "../Functions/dmin.htm" onclick = "onhyperlinkclick(this)" > DMIN (ДМИН)< / a > ; < a href = "../Functions/dproduct.htm" onclick = "onhyperlinkclick(this)" > DPRODUCT (БДПРОИЗВЕД)< / a > ; < a href = "../Functions/dstdev.htm" onclick = "onhyperlinkclick(this)" > DSTDEV (ДСТАНДОТКЛ)< / a > ; < a href = "../Functions/dstdevp.htm" onclick = "onhyperlinkclick(this)" > DSTDEVP (ДСТАНДОТКЛП)< / a > ; < a href = "../Functions/dsum.htm" onclick = "onhyperlinkclick(this)" > DSUM (БДСУММ)< / a > ; < a href = "../Functions/dvar.htm" onclick = "onhyperlinkclick(this)" > DVAR (БДДИСП)< / a > ; < a href = "../Functions/dvarp.htm" onclick = "onhyperlinkclick(this)" > DVARP (БДДИСПП)< / a > < / td >
2016-03-11 00:48:53 +00:00
< / tr >
< tr >
< td > Информационные функции< / td >
< td > Используются для предоставления информации о данных в выделенной ячейке или диапазоне ячеек.< / td >
2017-09-22 13:48:53 +00:00
< td > < a href = "../Functions/error.type.htm" onclick = "onhyperlinkclick(this)" > ERROR.TYPE (ТИП.ОШИБКИ)< / a > ; < a href = "../Functions/isblank.htm" onclick = "onhyperlinkclick(this)" > ISBLANK (ЕПУСТО)< / a > ; < a href = "../Functions/iserr.htm" onclick = "onhyperlinkclick(this)" > ISERR (ЕОШ)< / a > ; < a href = "../Functions/iserror.htm" onclick = "onhyperlinkclick(this)" > ISERROR (ЕОШИБКА)< / a > ; < a href = "../Functions/iseven.htm" onclick = "onhyperlinkclick(this)" > ISEVEN (ЕЧЁТН)< / a > ; < a href = "../Functions/isformula.htm" onclick = "onhyperlinkclick(this)" > ISFORMULA (ЕФОРМУЛА)< / a > ; < a href = "../Functions/islogical.htm" onclick = "onhyperlinkclick(this)" > ISLOGICAL (ЕЛОГИЧ)< / a > ; < a href = "../Functions/isna.htm" onclick = "onhyperlinkclick(this)" > ISNA (ЕНД)< / a > ; < a href = "../Functions/isnontext.htm" onclick = "onhyperlinkclick(this)" > ISNONTEXT (Е Н Е Т Е К С Т )< / a > ; < a href = "../Functions/isnumber.htm" onclick = "onhyperlinkclick(this)" > ISNUMBER (ЕЧИСЛО)< / a > ; < a href = "../Functions/isodd.htm" onclick = "onhyperlinkclick(this)" > ISODD (ЕНЕЧЁТ)< / a > ; < a href = "../Functions/isref.htm" onclick = "onhyperlinkclick(this)" > ISREF (ЕССЫЛКА)< / a > ; < a href = "../Functions/istext.htm" onclick = "onhyperlinkclick(this)" > ISTEXT (Е Т Е К С Т )< / a > ; < a href = "../Functions/n.htm" onclick = "onhyperlinkclick(this)" > N (Ч)< / a > ; < a href = "../Functions/na.htm" onclick = "onhyperlinkclick(this)" > NA (НД)< / a > ; < a href = "../Functions/sheet.htm" onclick = "onhyperlinkclick(this)" > SHEET (ЛИСТ)< / a > ; < a href = "../Functions/sheets.htm" onclick = "onhyperlinkclick(this)" > SHEETS (ЛИСТЫ)< / a > ; < a href = "../Functions/type.htm" onclick = "onhyperlinkclick(this)" > TYPE (ТИП)< / a > < / td >
2016-03-11 00:48:53 +00:00
< / tr >
< tr >
< td > Логические функции< / td >
2017-09-22 13:48:53 +00:00
< td > Используются для выполнения проверки, является ли условие истинным или ложным.< / td >
< td > < a href = "../Functions/and.htm" onclick = "onhyperlinkclick(this)" > AND (И)< / a > ; < a href = "../Functions/false.htm" onclick = "onhyperlinkclick(this)" > FALSE (ЛОЖЬ)< / a > ; < a href = "../Functions/if.htm" onclick = "onhyperlinkclick(this)" > IF (ЕСЛИ)< / a > ; < a href = "../Functions/iferror.htm" onclick = "onhyperlinkclick(this)" > IFERROR (ЕСЛИОШИБКА)< / a > ; < a href = "../Functions/ifna.htm" onclick = "onhyperlinkclick(this)" > IFNA (ЕСНД)< / a > ; < a href = "../Functions/not.htm" onclick = "onhyperlinkclick(this)" > NOT (Н Е )< / a > ; < a href = "../Functions/or.htm" onclick = "onhyperlinkclick(this)" > OR (ИЛИ)< / a > ; < a href = "../Functions/switch.htm" onclick = "onhyperlinkclick(this)" > SWITCH (ПЕРЕКЛЮЧ)< / a > ; < a href = "../Functions/true.htm" onclick = "onhyperlinkclick(this)" > TRUE (ИСТИНА)< / a > ; < a href = "../Functions/xor.htm" onclick = "onhyperlinkclick(this)" > XOR (ИСКЛИЛИ)< / a > < / td >
2016-03-11 00:48:53 +00:00
< / tr >
< / table >
< / div >
< / body >
< / html >