diff --git a/.github/workflows/codeql.yaml b/.github/workflows/codeql.yaml new file mode 100644 index 0000000000..065cc0fc61 --- /dev/null +++ b/.github/workflows/codeql.yaml @@ -0,0 +1,51 @@ +name: "CodeQL" + +on: + push: + branches: + - 'master' + - 'hotfix/**' + - 'release/**' + paths-ignore: + - '**/README.md' + - '**/LICENSE' + - '.github/**' + + schedule: + - cron: '0 0 * * 6' + +jobs: + analyze: + name: Analyze + runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} + timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }} + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'javascript-typescript' ] + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + + + # Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift). + # If this step fails, then you should remove it and run the build manually (see below) + - name: Autobuild + uses: github/codeql-action/autobuild@v3 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + with: + category: "/language:${{matrix.language}}" diff --git a/apps/common/checkExtendedPDF.js b/apps/common/checkExtendedPDF.js index 4a5ff9cfdf..be3c234889 100644 --- a/apps/common/checkExtendedPDF.js +++ b/apps/common/checkExtendedPDF.js @@ -93,7 +93,7 @@ function downloadPartialy(url, limit, postData, callback) { var xhr = new XMLHttpRequest(); //value of responseText always has the current content received from the server, even if it's incomplete // xhr.responseType = "json"; it raises an IE error. bug 66160 - xhr.overrideMimeType('text/xml; charset=iso-8859-1'); + xhr.overrideMimeType('text/plain; charset=iso-8859-1'); xhr.onreadystatechange = function () { if (callbackCalled) { return; diff --git a/apps/common/main/lib/util/htmlutils.js b/apps/common/main/lib/util/htmlutils.js index eb7cc9f7d6..0bdfeae078 100644 --- a/apps/common/main/lib/util/htmlutils.js +++ b/apps/common/main/lib/util/htmlutils.js @@ -61,6 +61,14 @@ if ( ui_rtl && !isIE ) { document.body.classList.add('rtl'); } +var isLangRtl = function (lang) { + return lang.lastIndexOf('ar', 0) === 0; +} + +if ( isLangRtl(window.lang || lang) ) { + document.body.classList.add('rtl-font'); +} + function checkScaling() { var matches = { 'pixel-ratio__1_25': "screen and (-webkit-min-device-pixel-ratio: 1.25) and (-webkit-max-device-pixel-ratio: 1.49), " + diff --git a/apps/common/main/resources/less/variables.less b/apps/common/main/resources/less/variables.less index bc7d1e824c..d02a0fef86 100644 --- a/apps/common/main/resources/less/variables.less +++ b/apps/common/main/resources/less/variables.less @@ -56,6 +56,10 @@ // Typography // ------------------------- +.rtl-font { + --font-family-base-custom: system-ui, -apple-system, "Geeza Pro", "Segoe UI", "Traditional Arabic", "Noto Sans"; +} + @font-family-sans-serif: Arial, Helvetica, "Helvetica Neue", sans-serif; @font-family-serif: Georgia, "Times New Roman", Times, serif; @font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace; diff --git a/apps/common/mobile/lib/controller/Plugins.jsx b/apps/common/mobile/lib/controller/Plugins.jsx index 448b1fecd6..28c4872dab 100644 --- a/apps/common/mobile/lib/controller/Plugins.jsx +++ b/apps/common/mobile/lib/controller/Plugins.jsx @@ -11,22 +11,18 @@ const PluginsController = inject('storeAppOptions')(observer(props => { iframe; useEffect(() => { - const onDocumentReady = () => { - Common.Notifications.on('engineCreated', api => { - api.asc_registerCallback("asc_onPluginShow", showPluginModal); - api.asc_registerCallback("asc_onPluginClose", pluginClose); - api.asc_registerCallback("asc_onPluginResize", pluginResize); - api.asc_registerCallback('asc_onPluginsInit', onPluginsInit); - - if(!storeAppOptions.customization || storeAppOptions.plugins !== false) { - loadPlugins(); - } - }); - - Common.Gateway.on('init', loadConfig); - }; + Common.Notifications.on('engineCreated', api => { + api.asc_registerCallback("asc_onPluginShow", showPluginModal); + api.asc_registerCallback("asc_onPluginClose", pluginClose); + api.asc_registerCallback("asc_onPluginResize", pluginResize); + api.asc_registerCallback('asc_onPluginsInit', onPluginsInit); + + if(!storeAppOptions.customization || storeAppOptions.plugins !== false) { + loadPlugins(); + } + }); - onDocumentReady(); + Common.Gateway.on('init', loadConfig); return () => { const api = Common.EditorApi.get(); @@ -190,8 +186,8 @@ const PluginsController = inject('storeAppOptions')(observer(props => { const parsePlugins = pluginsdata => { let isEdit = storeAppOptions.isEdit; - if ( pluginsdata instanceof Array ) { - let lang = storeAppOptions.lang.split(/[\-_]/)[0]; + if (pluginsdata instanceof Array) { + let lang = storeAppOptions.lang ? storeAppOptions.lang.split(/[\-_]/)[0] : 'en'; pluginsdata.forEach((item) => { item.variations.forEach( (itemVar) => { let description = itemVar.description; diff --git a/apps/common/mobile/resources/less/colors-table.less b/apps/common/mobile/resources/less/colors-table.less index f10baad50f..8228c10322 100644 --- a/apps/common/mobile/resources/less/colors-table.less +++ b/apps/common/mobile/resources/less/colors-table.less @@ -39,7 +39,7 @@ // Canvas --canvas-background: #eee; - --canvas-content-background: #232323; + --canvas-content-background: #fff; --canvas-page-border: #ccc; --canvas-ruler-background: #fff; diff --git a/apps/common/mobile/resources/less/common-ios.less b/apps/common/mobile/resources/less/common-ios.less index bc94ea181e..787757cd65 100644 --- a/apps/common/mobile/resources/less/common-ios.less +++ b/apps/common/mobile/resources/less/common-ios.less @@ -476,7 +476,7 @@ line-height: 18px; right: 26px; color: @text-tertiary; - top: 5px; + top: 4.5px; z-index: 100; } } diff --git a/apps/common/mobile/resources/less/common-rtl.less b/apps/common/mobile/resources/less/common-rtl.less index 0360be5966..46893aef55 100644 --- a/apps/common/mobile/resources/less/common-rtl.less +++ b/apps/common/mobile/resources/less/common-rtl.less @@ -1,9 +1,16 @@ [dir="rtl"].device-android { .app-layout { - .searchbar input { - padding-right: 24px; - padding-left: 36px; - background-position: right; + .searchbar { + input { + padding-right: 24px; + padding-left: 36px; + background-position: right; + } + + .number-search-results { + right: auto; + left: 26px; + } } } @@ -47,6 +54,11 @@ } } + .searchbar .number-search-results { + right: auto; + left: 26px; + } + .popover { li:last-child, li:first-child { .segmented a:first-child { diff --git a/apps/documenteditor/embed/locale/ar.json b/apps/documenteditor/embed/locale/ar.json index f51fbc6f2b..4d261834a2 100644 --- a/apps/documenteditor/embed/locale/ar.json +++ b/apps/documenteditor/embed/locale/ar.json @@ -4,15 +4,15 @@ "common.view.modals.txtHeight": "ارتفاع", "common.view.modals.txtIncorrectPwd": "كلمة المرور غير صحيحة", "common.view.modals.txtOpenFile": "أدخل كلمة المرور لفتح الملف", - "common.view.modals.txtShare": "مشاركة رابط", + "common.view.modals.txtShare": "مشاركة الرابط", "common.view.modals.txtTitleProtected": "ملف محمي", - "common.view.modals.txtWidth": "العرض", - "common.view.SearchBar.textFind": "بحث", + "common.view.modals.txtWidth": "عرض", + "common.view.SearchBar.textFind": "إيجاد", "DE.ApplicationController.convertationErrorText": "فشل التحويل.", "DE.ApplicationController.convertationTimeoutText": "استغرق التحويل وقتا طويلا تم تجاوز المهلة", "DE.ApplicationController.criticalErrorTitle": "خطأ", - "DE.ApplicationController.downloadErrorText": "فشل التنزيل", - "DE.ApplicationController.downloadTextText": "يتم تنزيل المستند...", + "DE.ApplicationController.downloadErrorText": "فشل التحميل", + "DE.ApplicationController.downloadTextText": "يتم تحميل المستند...", "DE.ApplicationController.errorAccessDeny": "أنت تحاول تنفيذ إجراء ليس لديك صلاحيات القيام به.
الرجاء الاتصال بمسؤول خادم المستندات.", "DE.ApplicationController.errorDefaultMessage": "رمز الخطأ: 1%", "DE.ApplicationController.errorEditingDownloadas": "حدث خطأ أثناء العمل مع المستند.
استخدم خيار 'التنزيل كـ'لحفظ نسخة احتياطية من الملف على جهازك الشخصي.", @@ -33,29 +33,29 @@ "DE.ApplicationController.openErrorText": "حدث خطأ أثناء فتح الملف.", "DE.ApplicationController.scriptLoadError": "الاتصال بطيء جدًا ولا يمكن تحميل بعض المكونات. يُرجى إعادة تحميل الصفحة.", "DE.ApplicationController.textAnonymous": "مجهول", - "DE.ApplicationController.textClear": "مسح جميع الحقول", + "DE.ApplicationController.textClear": "مسح كافة الحقول", "DE.ApplicationController.textCtrl": "Ctrl", "DE.ApplicationController.textGotIt": "حسناً", "DE.ApplicationController.textGuest": "ضيف", - "DE.ApplicationController.textLoadingDocument": "يتم تحميل المستند", + "DE.ApplicationController.textLoadingDocument": " يتم تحميل المستند", "DE.ApplicationController.textNext": "الحقل التالي", "DE.ApplicationController.textOf": "من", "DE.ApplicationController.textRequired": "قم بملء كل الحقول المطلوبة لارسال الاستمارة.", "DE.ApplicationController.textSubmit": "إرسال", "DE.ApplicationController.textSubmited": "تم إرسال الاستمارة بنجاح
اضغط لغلق التلميح", - "DE.ApplicationController.titleLicenseExp": "الترخيص منتهي الصلاحية", + "DE.ApplicationController.titleLicenseExp": "إنتهت صلاحية الترخيص", "DE.ApplicationController.titleLicenseNotActive": "الترخيص غير مُفعّل", "DE.ApplicationController.txtClose": "إغلاق", "DE.ApplicationController.txtEmpty": "(فارغ)", "DE.ApplicationController.txtPressLink": "ثم قم بالنقر على الرابط %1 اضغط", "DE.ApplicationController.unknownErrorText": "خطأ غير معروف.", - "DE.ApplicationController.unsupportedBrowserErrorText": "المتصفح المستخدم غير مدعوم.", - "DE.ApplicationController.waitText": "الرجاء الانتظار...", + "DE.ApplicationController.unsupportedBrowserErrorText": "متصفحك غير مدعوم.", + "DE.ApplicationController.waitText": "يُرجى الانتظار...", "DE.ApplicationController.warnLicenseBefore": "الترخيص غير مُفعّل، يُرجى التواصل مع مسؤول الخادم.", "DE.ApplicationController.warnLicenseExp": "إنتهت صلاحية الترخيص. قم بتحديث الترخيص وبعدها قم بتحديث الصفحة.", - "DE.ApplicationView.txtDownload": "تنزيل", + "DE.ApplicationView.txtDownload": "تحميل", "DE.ApplicationView.txtDownloadDocx": "تنزيل بصيغة docx", - "DE.ApplicationView.txtDownloadPdf": "تنزيل بصيغة pdf", + "DE.ApplicationView.txtDownloadPdf": "التحميل كملف pdf", "DE.ApplicationView.txtEmbed": "تضمين", "DE.ApplicationView.txtFileLocation": "فتح موقع الملف", "DE.ApplicationView.txtFullScreen": "ملء الشاشة", diff --git a/apps/documenteditor/embed/locale/bg.json b/apps/documenteditor/embed/locale/bg.json index 7b637b8c73..3e858fbe75 100644 --- a/apps/documenteditor/embed/locale/bg.json +++ b/apps/documenteditor/embed/locale/bg.json @@ -2,7 +2,9 @@ "common.view.modals.txtCopy": "Копиране в клипборда", "common.view.modals.txtEmbed": "Вграждане", "common.view.modals.txtHeight": "Височина", + "common.view.modals.txtOpenFile": "Въведете парола, за да отворите файла", "common.view.modals.txtShare": "Споделяне на връзка", + "common.view.modals.txtTitleProtected": "Защитен файл", "common.view.modals.txtWidth": "Широчина", "DE.ApplicationController.convertationErrorText": "Конвертирането е неуспешно.", "DE.ApplicationController.convertationTimeoutText": "Превишава се времето на изтичане на реализациите.", @@ -13,10 +15,12 @@ "DE.ApplicationController.errorDefaultMessage": "Код на грешка: %1", "DE.ApplicationController.errorFilePassProtect": "Файлът е защитен с парола и не може да бъде отворен.", "DE.ApplicationController.errorFileSizeExceed": "Размерът на файла надвишава ограничението, зададено за вашия сървър.
Моля, свържете се с вашия администратор на Document Server за подробности.", + "DE.ApplicationController.errorTokenExpire": "Токенът за защита на документа е изтекъл.
Моля, свържете се с администратора на документа.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Интернет връзката е възстановена и версията на файла е променена.
Преди да продължите да работите, трябва да изтеглите файла или да копирате съдържанието му, за да сте сигурни, че нищо не е загубено, и след това да презаредите тази страница.", "DE.ApplicationController.errorUserDrop": "Файлът не може да бъде достъпен в момента.", "DE.ApplicationController.notcriticalErrorTitle": "Внимание", "DE.ApplicationController.scriptLoadError": "Връзката е твърде бавна, някои от компонентите не могат да бъдат заредени. Моля, презаредете страницата.", + "DE.ApplicationController.textClear": "Изчисти всички полета", "DE.ApplicationController.textGuest": "Гост", "DE.ApplicationController.textLoadingDocument": "Зареждане на документ", "DE.ApplicationController.textNext": "Следващо поле", @@ -26,6 +30,8 @@ "DE.ApplicationController.unsupportedBrowserErrorText": "Вашият браузър не се поддържа.", "DE.ApplicationController.waitText": "Моля изчакай...", "DE.ApplicationView.txtDownload": "Изтегли", + "DE.ApplicationView.txtDownloadDocx": "Изтеглете като DOCX", + "DE.ApplicationView.txtDownloadPdf": "Изтеглете като PDF", "DE.ApplicationView.txtEmbed": "Вграждане", "DE.ApplicationView.txtFileLocation": "Mестоположението на файла", "DE.ApplicationView.txtFullScreen": "Цял екран", diff --git a/apps/documenteditor/embed/locale/el.json b/apps/documenteditor/embed/locale/el.json index 6d01e165a8..8edc18ff07 100644 --- a/apps/documenteditor/embed/locale/el.json +++ b/apps/documenteditor/embed/locale/el.json @@ -54,8 +54,8 @@ "DE.ApplicationController.warnLicenseBefore": "Η άδεια χρήσης δεν είναι ενεργή. Επικοινωνήστε με το διαχειριστή σας.", "DE.ApplicationController.warnLicenseExp": "Η άδεια χρήσης σας έχει λήξει. Ενημερώστε την άδειά σας και ανανεώστε τη σελίδα.", "DE.ApplicationView.txtDownload": "Λήψη", - "DE.ApplicationView.txtDownloadDocx": "Λήψη ως docx", - "DE.ApplicationView.txtDownloadPdf": "Λήψη ως pdf", + "DE.ApplicationView.txtDownloadDocx": "Λήψη ως DOCX", + "DE.ApplicationView.txtDownloadPdf": "Λήψη ως PDF", "DE.ApplicationView.txtEmbed": "Ενσωμάτωση", "DE.ApplicationView.txtFileLocation": "Άνοιγμα θέσης αρχείου", "DE.ApplicationView.txtFullScreen": "Πλήρης οθόνη", diff --git a/apps/documenteditor/embed/locale/en.json b/apps/documenteditor/embed/locale/en.json index b195143791..0d4c81b65b 100644 --- a/apps/documenteditor/embed/locale/en.json +++ b/apps/documenteditor/embed/locale/en.json @@ -4,7 +4,7 @@ "common.view.modals.txtHeight": "Height", "common.view.modals.txtIncorrectPwd": "Password is incorrect", "common.view.modals.txtOpenFile": "Enter a password to open the file", - "common.view.modals.txtShare": "Share Link", + "common.view.modals.txtShare": "Share link", "common.view.modals.txtTitleProtected": "Protected file", "common.view.modals.txtWidth": "Width", "common.view.SearchBar.textFind": "Find", @@ -33,12 +33,12 @@ "DE.ApplicationController.openErrorText": "An error has occurred while opening the file.", "DE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.", "DE.ApplicationController.textAnonymous": "Anonymous", - "DE.ApplicationController.textClear": "Clear All Fields", + "DE.ApplicationController.textClear": "Clear all fields", "DE.ApplicationController.textCtrl": "Ctrl", "DE.ApplicationController.textGotIt": "Got it", "DE.ApplicationController.textGuest": "Guest", "DE.ApplicationController.textLoadingDocument": "Loading document", - "DE.ApplicationController.textNext": "Next Field", + "DE.ApplicationController.textNext": "Next field", "DE.ApplicationController.textOf": "of", "DE.ApplicationController.textRequired": "Fill all required fields to send form.", "DE.ApplicationController.textSubmit": "Submit", @@ -54,11 +54,11 @@ "DE.ApplicationController.warnLicenseBefore": "License not active. Please contact your administrator.", "DE.ApplicationController.warnLicenseExp": "Your license has expired. Please update your license and refresh the page.", "DE.ApplicationView.txtDownload": "Download", - "DE.ApplicationView.txtDownloadDocx": "Download as docx", - "DE.ApplicationView.txtDownloadPdf": "Download as pdf", + "DE.ApplicationView.txtDownloadDocx": "Download as DOCX", + "DE.ApplicationView.txtDownloadPdf": "Download as PDF", "DE.ApplicationView.txtEmbed": "Embed", "DE.ApplicationView.txtFileLocation": "Open file location", - "DE.ApplicationView.txtFullScreen": "Full Screen", + "DE.ApplicationView.txtFullScreen": "Full screen", "DE.ApplicationView.txtPrint": "Print", "DE.ApplicationView.txtSearch": "Search", "DE.ApplicationView.txtShare": "Share" diff --git a/apps/documenteditor/embed/locale/fi.json b/apps/documenteditor/embed/locale/fi.json new file mode 100644 index 0000000000..6bc959eaee --- /dev/null +++ b/apps/documenteditor/embed/locale/fi.json @@ -0,0 +1,64 @@ +{ + "common.view.modals.txtCopy": "Kopioi leikepöydälle", + "common.view.modals.txtEmbed": "Upota", + "common.view.modals.txtHeight": "Korkeus", + "common.view.modals.txtIncorrectPwd": "Väärä salasana", + "common.view.modals.txtOpenFile": "Anna salasana avataksesi tiedoston", + "common.view.modals.txtShare": "Jaa linkki", + "common.view.modals.txtTitleProtected": "Suojattu tiedosto", + "common.view.modals.txtWidth": "Leveys", + "common.view.SearchBar.textFind": "Etsi", + "DE.ApplicationController.convertationErrorText": "Tiedostomuodon muuttaminen epäonnistui.", + "DE.ApplicationController.convertationTimeoutText": "Tiedostomuunnoksen aikaraja ylittyi.", + "DE.ApplicationController.criticalErrorTitle": "Virhe", + "DE.ApplicationController.downloadErrorText": "Lataus epäonnistui.", + "DE.ApplicationController.downloadTextText": "Ladataan asiakirjaa...", + "DE.ApplicationController.errorAccessDeny": "Olet yrittämässä toimintoa, johon sinulla ei ole käyttöoikeuksia.
Ole hyvä ja ota yhteyttä asiakirjapalvelimen ylläpitäjään.", + "DE.ApplicationController.errorDefaultMessage": "Virhekoodi: %1", + "DE.ApplicationController.errorEditingDownloadas": "Tapahtui virhe asiakirjaa käsitellessä.
Käytä 'Lataa nimellä...' -toimintoa tallentaaksesi paikallisen varmuuskopion tietokoneelle.", + "DE.ApplicationController.errorFilePassProtect": "Asiakirja on suojattu salasanalla ja sitä ei voitu avata.", + "DE.ApplicationController.errorFileSizeExceed": "Tiedoston koko ylittää palvelimelle asetetun rajan.
Ota yhteyttä asiakirjapalvelimen ylläpitäjään saadaksesi lisätietoja.", + "DE.ApplicationController.errorForceSave": "Tapahtui virhe tiedostoa tallennettaessa. Käytä 'Lataa nimellä' -toimintoa tallentaaksesi tiedoston tietokoneelle tai yritä myöhemmin uudelleen.", + "DE.ApplicationController.errorInconsistentExt": "Tapahtui virhe avatessa tiedostoa.
Tiedoston sisältö ei vastaa tiedostopäätettä.", + "DE.ApplicationController.errorInconsistentExtDocx": "Tapahtui virhe avatessa tiedostoa.
Tiedoston sisältö viittaa tekstiasiakirjoihin (esim. .docx), mutta tiedostopääte on virheellinen: %1", + "DE.ApplicationController.errorInconsistentExtPdf": "Tapahtui virhe avatessa tiedostoa.
Tiedoston sisältö viittaa johonkin näistä formaateista: pdf/djvu/xps/oxps, mutta tiedostopääte on virheellinen: %1", + "DE.ApplicationController.errorInconsistentExtPptx": "Tapahtui virhe avatessa tiedostoa.
Tiedoston sisältö viittaa diaesitykseen (esim. .pptx), mutta tiedostopääte on virheellinen: %1", + "DE.ApplicationController.errorInconsistentExtXlsx": "Tapahtui virhe avatessa tiedostoa.
Tiedoston sisältö viittaa laskentataulukoihin (esim. .xlsx), mutta tiedostopääte on virheellinen: %1.", + "DE.ApplicationController.errorLoadingFont": "Fontteja ei ole ladattu.
Ota yhteyttä asiakirjapalvelimen ylläpitäjään.", + "DE.ApplicationController.errorSubmit": "Lähettäminen epäonnistui.", + "DE.ApplicationController.errorTokenExpire": "Asiakirjan turvatunnus on erääntynyt.
Ole hyvä ja ota yhteyttä asiakirjapalvelimen ylläpitäjään.", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Yhteys on palautettu, ja tiedoston versio on muuttunut.
Ennen kuin voit jatkaa työskentelyä, sinun on ladattava tämä tiedosto tai kopioitava sen sisältö ja tarkistettava, että se on ennallaan ja sitten päivitettävä tämä sivu.", + "DE.ApplicationController.errorUserDrop": "Tiedostoon ei tällä hetkellä pääse.", + "DE.ApplicationController.notcriticalErrorTitle": "Varoitus", + "DE.ApplicationController.openErrorText": "Tapahtui virhe avattaessa tiedostoa.", + "DE.ApplicationController.scriptLoadError": "Yhteys on liian hidas ja joitakin komponentteja ei voitu ladata. Lataa sivu uudelleen.", + "DE.ApplicationController.textAnonymous": "Anonyymi", + "DE.ApplicationController.textClear": "Tyhjennä kaikki kentät", + "DE.ApplicationController.textCtrl": "Ctrl", + "DE.ApplicationController.textGotIt": "OK", + "DE.ApplicationController.textGuest": "Vierailija", + "DE.ApplicationController.textLoadingDocument": "Ladataan asiakirjaa", + "DE.ApplicationController.textNext": "Seuraava kenttä", + "DE.ApplicationController.textRequired": "Täytä kaikki vaaditut kentät lähettääksesi lomakkeen.", + "DE.ApplicationController.textSubmit": "Lähetä", + "DE.ApplicationController.textSubmited": "Lomake lähetettiin onnistuneesti
Sulje vihje napsauttamalla tätä", + "DE.ApplicationController.titleLicenseExp": "Lisenssi erääntynyt", + "DE.ApplicationController.titleLicenseNotActive": "Lisenssi ei ole aktiivinen", + "DE.ApplicationController.txtClose": "Sulje", + "DE.ApplicationController.txtEmpty": "(Tyhjä)", + "DE.ApplicationController.txtPressLink": "Paina %1 ja klikkaa linkkiä", + "DE.ApplicationController.unknownErrorText": "Tuntematon virhe.", + "DE.ApplicationController.unsupportedBrowserErrorText": "Käyttämäsi selain ei ole tuettu.", + "DE.ApplicationController.waitText": "Ole hyvä ja odota...", + "DE.ApplicationController.warnLicenseBefore": "Lisenssi ei ole aktiivinen. Ota yhteyttä ylläpitäjään.", + "DE.ApplicationController.warnLicenseExp": "Lisenssi on erääntynyt. Uudista lisenssi ja päivitä sitten tämä sivu.", + "DE.ApplicationView.txtDownload": "Lataa", + "DE.ApplicationView.txtDownloadDocx": "Lataa docx-muotoisena", + "DE.ApplicationView.txtDownloadPdf": "Lataa pdf-muotoisena", + "DE.ApplicationView.txtEmbed": "Upota", + "DE.ApplicationView.txtFileLocation": "Avaa tiedostosijainti", + "DE.ApplicationView.txtFullScreen": "Koko näyttö", + "DE.ApplicationView.txtPrint": "Tulosta", + "DE.ApplicationView.txtSearch": "Hae", + "DE.ApplicationView.txtShare": "Jaa" +} \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/fr.json b/apps/documenteditor/embed/locale/fr.json index 6c15a35484..14f6b3f599 100644 --- a/apps/documenteditor/embed/locale/fr.json +++ b/apps/documenteditor/embed/locale/fr.json @@ -4,7 +4,7 @@ "common.view.modals.txtHeight": "Hauteur", "common.view.modals.txtIncorrectPwd": "Mot de passe incorrect", "common.view.modals.txtOpenFile": "Entrez le mot de passe pour ouvrir le fichier", - "common.view.modals.txtShare": "Partager un lien", + "common.view.modals.txtShare": "Partager le lien", "common.view.modals.txtTitleProtected": "Fichier protégé", "common.view.modals.txtWidth": "Largeur", "common.view.SearchBar.textFind": "Rechercher", @@ -54,12 +54,12 @@ "DE.ApplicationController.warnLicenseBefore": "La licence n'est pas active. Veuillez contacter votre administrateur.", "DE.ApplicationController.warnLicenseExp": "Votre licence a expiré. Veuillez mettre à jour votre licence et actualiser la page.", "DE.ApplicationView.txtDownload": "Télécharger", - "DE.ApplicationView.txtDownloadDocx": "Télécharger en tant que docx", - "DE.ApplicationView.txtDownloadPdf": "Télécharger en tant que pdf", + "DE.ApplicationView.txtDownloadDocx": "Télécharger en tant que DOCX", + "DE.ApplicationView.txtDownloadPdf": "Télécharger en PDF", "DE.ApplicationView.txtEmbed": "Incorporer", "DE.ApplicationView.txtFileLocation": "Ouvrir l'emplacement du fichier", "DE.ApplicationView.txtFullScreen": "Plein écran", "DE.ApplicationView.txtPrint": "Imprimer", - "DE.ApplicationView.txtSearch": "Recherche", + "DE.ApplicationView.txtSearch": "Rechercher", "DE.ApplicationView.txtShare": "Partager" } \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/it.json b/apps/documenteditor/embed/locale/it.json index 9d6fbffe16..f40d0a365b 100644 --- a/apps/documenteditor/embed/locale/it.json +++ b/apps/documenteditor/embed/locale/it.json @@ -2,6 +2,8 @@ "common.view.modals.txtCopy": "Copia negli appunti", "common.view.modals.txtEmbed": "Incorpora", "common.view.modals.txtHeight": "Altezza", + "common.view.modals.txtIncorrectPwd": "Password non corretta", + "common.view.modals.txtOpenFile": "Immettere la password per aprire il file", "common.view.modals.txtShare": "Condividi collegamento", "common.view.modals.txtTitleProtected": "File protetto", "common.view.modals.txtWidth": "Larghezza", @@ -49,6 +51,8 @@ "DE.ApplicationController.unknownErrorText": "Errore sconosciuto.", "DE.ApplicationController.unsupportedBrowserErrorText": "Il tuo browser non è supportato.", "DE.ApplicationController.waitText": "Per favore, attendi...", + "DE.ApplicationController.warnLicenseBefore": "Licenza non attiva. Contattare l'Amministratore.", + "DE.ApplicationController.warnLicenseExp": "La licenza è scaduta. Rinnova la tua licenza e aggiorna la pagina.", "DE.ApplicationView.txtDownload": "Scarica", "DE.ApplicationView.txtDownloadDocx": "Scarica come .docx", "DE.ApplicationView.txtDownloadPdf": "Scarica come .pdf", diff --git a/apps/documenteditor/embed/locale/ro.json b/apps/documenteditor/embed/locale/ro.json index f35f6392bd..c86afb2d93 100644 --- a/apps/documenteditor/embed/locale/ro.json +++ b/apps/documenteditor/embed/locale/ro.json @@ -54,8 +54,8 @@ "DE.ApplicationController.warnLicenseBefore": "Licența nu este activă. Contactați administratorul dvs.", "DE.ApplicationController.warnLicenseExp": "Licența dvs a expirat. Trebuie să vă reînnoiți licența și să reîmprospătați pagina.", "DE.ApplicationView.txtDownload": "Descărcare", - "DE.ApplicationView.txtDownloadDocx": "Descărcare ca docx", - "DE.ApplicationView.txtDownloadPdf": "Descărcare ca pdf", + "DE.ApplicationView.txtDownloadDocx": "Descărcare ca DOCX", + "DE.ApplicationView.txtDownloadPdf": "Descărcare ca PDF", "DE.ApplicationView.txtEmbed": "Încorporare", "DE.ApplicationView.txtFileLocation": "Deschidere locația fișierului", "DE.ApplicationView.txtFullScreen": "Ecran complet", diff --git a/apps/documenteditor/embed/locale/ru.json b/apps/documenteditor/embed/locale/ru.json index e079123bc3..2a77ba7b2e 100644 --- a/apps/documenteditor/embed/locale/ru.json +++ b/apps/documenteditor/embed/locale/ru.json @@ -54,8 +54,8 @@ "DE.ApplicationController.warnLicenseBefore": "Лицензия неактивна. Пожалуйста, обратитесь к администратору.", "DE.ApplicationController.warnLicenseExp": "Истек срок действия лицензии. Обновите лицензию, а затем обновите страницу.", "DE.ApplicationView.txtDownload": "Скачать файл", - "DE.ApplicationView.txtDownloadDocx": "Скачать как docx", - "DE.ApplicationView.txtDownloadPdf": "Скачать как pdf", + "DE.ApplicationView.txtDownloadDocx": "Скачать как DOCX", + "DE.ApplicationView.txtDownloadPdf": "Скачать как PDF", "DE.ApplicationView.txtEmbed": "Встроить", "DE.ApplicationView.txtFileLocation": "Открыть расположение файла", "DE.ApplicationView.txtFullScreen": "Во весь экран", diff --git a/apps/documenteditor/embed/locale/sv.json b/apps/documenteditor/embed/locale/sv.json index 7235351fba..5df24208f1 100644 --- a/apps/documenteditor/embed/locale/sv.json +++ b/apps/documenteditor/embed/locale/sv.json @@ -43,6 +43,7 @@ "DE.ApplicationController.textRequired": "Fyll i alla nödvändiga fält för att skicka formuläret.", "DE.ApplicationController.textSubmit": "Skicka", "DE.ApplicationController.textSubmited": " Formulär skickat
Klicka för att stänga tipset", + "DE.ApplicationController.titleLicenseNotActive": "Licensen är inte aktiv", "DE.ApplicationController.txtClose": "Stäng", "DE.ApplicationController.txtEmpty": "(Tom)", "DE.ApplicationController.txtPressLink": "Tryck på %1 och klicka på länken", diff --git a/apps/documenteditor/embed/locale/zh-tw.json b/apps/documenteditor/embed/locale/zh-tw.json index 5575ea10bc..aa4b0b035a 100644 --- a/apps/documenteditor/embed/locale/zh-tw.json +++ b/apps/documenteditor/embed/locale/zh-tw.json @@ -11,7 +11,7 @@ "DE.ApplicationController.downloadErrorText": "下載失敗。", "DE.ApplicationController.downloadTextText": "正在下載文件...", "DE.ApplicationController.errorAccessDeny": "您正試圖執行您無權限的操作。
請聯繫您的文件伺服器管理員。", - "DE.ApplicationController.errorDefaultMessage": "錯誤編號:%1", + "DE.ApplicationController.errorDefaultMessage": "錯誤碼:%1", "DE.ApplicationController.errorEditingDownloadas": "在處理文件時發生錯誤。
使用「另存為...」選項將檔案備份保存到您的電腦硬碟。", "DE.ApplicationController.errorFilePassProtect": "該文件已被密碼保護,無法打開。", "DE.ApplicationController.errorFileSizeExceed": "文件大小超出了伺服器設置的限制。
詳細請聯繫管理員。", @@ -53,6 +53,6 @@ "DE.ApplicationView.txtFileLocation": "打開檔案位置", "DE.ApplicationView.txtFullScreen": "全螢幕", "DE.ApplicationView.txtPrint": "列印", - "DE.ApplicationView.txtSearch": "搜索", + "DE.ApplicationView.txtSearch": "搜尋", "DE.ApplicationView.txtShare": "分享" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/el.json b/apps/documenteditor/forms/locale/el.json index b4ab0e03b0..e95734f343 100644 --- a/apps/documenteditor/forms/locale/el.json +++ b/apps/documenteditor/forms/locale/el.json @@ -53,7 +53,7 @@ "Common.UI.Window.yesButtonText": "Ναι", "Common.Views.CopyWarningDialog.textDontShow": "Να μην εμφανιστεί ξανά αυτό το μήνυμα", "Common.Views.CopyWarningDialog.textMsg": "Ενέργειες αντιγραφής, αποκοπής και επικόλλησης με χρήση ενεργειών μενού θα γίνονται εντός της παρούσας καρτέλας συντάκτη μόνο.

Για αντιγραφή ή επικόλληση σε ή από εφαρμογές εκτός της καρτέλας συντάκτη χρησιμοποιήστε τους ακόλουθους συνδυασμούς πλήκτρων:", - "Common.Views.CopyWarningDialog.textTitle": "Ενέργειες Αντιγραφής, Αποκοπής και Επικόλλησης", + "Common.Views.CopyWarningDialog.textTitle": "Ενέργειες αντιγραφής, αποκοπής και επικόλλησης", "Common.Views.CopyWarningDialog.textToCopy": "για Αντιγραφή", "Common.Views.CopyWarningDialog.textToCut": "για Αποκοπή", "Common.Views.CopyWarningDialog.textToPaste": "για Επικόλληση", @@ -114,8 +114,8 @@ "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Η σύνδεση στο Διαδίκτυο έχει αποκατασταθεί και η έκδοση του αρχείου έχει αλλάξει.
Προτού συνεχίσετε να εργάζεστε, πρέπει να κατεβάσετε το αρχείο ή να αντιγράψετε το περιεχόμενό του για να βεβαιωθείτε ότι δεν έχει χαθεί τίποτα και, στη συνέχεια, φορτώστε ξανά αυτήν τη σελίδα.", "DE.Controllers.ApplicationController.errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτήν τη στιγμή.", "DE.Controllers.ApplicationController.errorViewerDisconnect": "Η σύνδεση χάθηκε. Μπορείτε να συνεχίσετε να βλέπετε το έγγραφο,
αλλά δεν θα μπορείτε να το λάβετε ή να το εκτυπώσετε έως ότου αποκατασταθεί η σύνδεση και ανανεωθεί η σελίδα.", - "DE.Controllers.ApplicationController.mniImageFromFile": "Εικόνα από Αρχείο", - "DE.Controllers.ApplicationController.mniImageFromStorage": "Εικόνα από Αποθηκευτικό Χώρο", + "DE.Controllers.ApplicationController.mniImageFromFile": "Εικόνα από αρχείο", + "DE.Controllers.ApplicationController.mniImageFromStorage": "Εικόνα από αποθηκευτικό χώρο", "DE.Controllers.ApplicationController.mniImageFromUrl": "Εικόνα από διεύθυνση URL", "DE.Controllers.ApplicationController.notcriticalErrorTitle": "Προειδοποίηση", "DE.Controllers.ApplicationController.openErrorText": "Παρουσιάστηκε σφάλμα κατά το άνοιγμα του αρχείου.", @@ -167,9 +167,9 @@ "DE.Views.ApplicationView.textCut": "Αποκοπή", "DE.Views.ApplicationView.textFitToPage": "Προσαρμογή στη σελίδα", "DE.Views.ApplicationView.textFitToWidth": "Προσαρμογή στο πλάτος", - "DE.Views.ApplicationView.textNext": "Επόμενο Πεδίο", + "DE.Views.ApplicationView.textNext": "Επόμενο πεδίο", "DE.Views.ApplicationView.textPaste": "Επικόλληση", - "DE.Views.ApplicationView.textPrintSel": "Εκτύπωση Επιλογής", + "DE.Views.ApplicationView.textPrintSel": "Εκτύπωση επιλογής", "DE.Views.ApplicationView.textRedo": "Επανάληψη", "DE.Views.ApplicationView.textSubmit": "Υποβολή", "DE.Views.ApplicationView.textUndo": "Αναίρεση", @@ -178,8 +178,8 @@ "DE.Views.ApplicationView.tipUndo": "Αναίρεση", "DE.Views.ApplicationView.txtDarkMode": "Σκούρο θέμα", "DE.Views.ApplicationView.txtDownload": "Λήψη", - "DE.Views.ApplicationView.txtDownloadDocx": "Λήψη ως docx", - "DE.Views.ApplicationView.txtDownloadPdf": "Λήψη ως pdf", + "DE.Views.ApplicationView.txtDownloadDocx": "Λήψη ως DOCX", + "DE.Views.ApplicationView.txtDownloadPdf": "Λήψη ως PDF", "DE.Views.ApplicationView.txtEmbed": "Ενσωμάτωση", "DE.Views.ApplicationView.txtFileLocation": "Άνοιγμα θέσης αρχείου", "DE.Views.ApplicationView.txtFullScreen": "Πλήρης οθόνη", diff --git a/apps/documenteditor/forms/locale/en.json b/apps/documenteditor/forms/locale/en.json index fcaa4dd8a1..a9d6626fd8 100644 --- a/apps/documenteditor/forms/locale/en.json +++ b/apps/documenteditor/forms/locale/en.json @@ -36,8 +36,8 @@ "Common.UI.SearchBar.tipCloseSearch": "Close search", "Common.UI.SearchBar.tipNextResult": "Next result", "Common.UI.SearchBar.tipPreviousResult": "Previous result", - "Common.UI.Themes.txtThemeClassicLight": "Classic Light", - "Common.UI.Themes.txtThemeContrastDark": "Contrast Dark", + "Common.UI.Themes.txtThemeClassicLight": "Classic light", + "Common.UI.Themes.txtThemeContrastDark": "Contrast dark", "Common.UI.Themes.txtThemeDark": "Dark", "Common.UI.Themes.txtThemeLight": "Light", "Common.UI.Themes.txtThemeSystem": "Same as system", @@ -53,7 +53,7 @@ "Common.UI.Window.yesButtonText": "Yes", "Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again", "Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using context menu actions will be performed within this editor tab only.

To copy or paste to or from applications outside the editor tab use the following keyboard combinations:", - "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste actions", + "Common.Views.CopyWarningDialog.textTitle": "Copy, cut and paste actions", "Common.Views.CopyWarningDialog.textToCopy": "for Copy", "Common.Views.CopyWarningDialog.textToCut": "for Cut", "Common.Views.CopyWarningDialog.textToPaste": "for Paste", @@ -114,8 +114,8 @@ "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "DE.Controllers.ApplicationController.errorUserDrop": "The file cannot be accessed right now.", "DE.Controllers.ApplicationController.errorViewerDisconnect": "Connection is lost. You can still view the document,
but will not be able to download or print it until the connection is restored and page is reloaded.", - "DE.Controllers.ApplicationController.mniImageFromFile": "Image from File", - "DE.Controllers.ApplicationController.mniImageFromStorage": "Image from Storage", + "DE.Controllers.ApplicationController.mniImageFromFile": "Image from file", + "DE.Controllers.ApplicationController.mniImageFromStorage": "Image from storage", "DE.Controllers.ApplicationController.mniImageFromUrl": "Image from URL", "DE.Controllers.ApplicationController.notcriticalErrorTitle": "Warning", "DE.Controllers.ApplicationController.openErrorText": "An error has occurred while opening the file.", @@ -161,15 +161,15 @@ "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "DE.Controllers.ApplicationController.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
Contact %1 sales team for personal upgrade terms.", "DE.Controllers.ApplicationController.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "DE.Views.ApplicationView.textClear": "Clear All Fields", + "DE.Views.ApplicationView.textClear": "Clear all fields", "DE.Views.ApplicationView.textClearField": "Clear field", "DE.Views.ApplicationView.textCopy": "Copy", "DE.Views.ApplicationView.textCut": "Cut", - "DE.Views.ApplicationView.textFitToPage": "Fit to Page", - "DE.Views.ApplicationView.textFitToWidth": "Fit to Width", - "DE.Views.ApplicationView.textNext": "Next Field", + "DE.Views.ApplicationView.textFitToPage": "Fit to page", + "DE.Views.ApplicationView.textFitToWidth": "Fit to width", + "DE.Views.ApplicationView.textNext": "Next field", "DE.Views.ApplicationView.textPaste": "Paste", - "DE.Views.ApplicationView.textPrintSel": "Print Selection", + "DE.Views.ApplicationView.textPrintSel": "Print selection", "DE.Views.ApplicationView.textRedo": "Redo", "DE.Views.ApplicationView.textSubmit": "Submit", "DE.Views.ApplicationView.textUndo": "Undo", @@ -178,11 +178,11 @@ "DE.Views.ApplicationView.tipUndo": "Undo", "DE.Views.ApplicationView.txtDarkMode": "Dark mode", "DE.Views.ApplicationView.txtDownload": "Download", - "DE.Views.ApplicationView.txtDownloadDocx": "Download as docx", - "DE.Views.ApplicationView.txtDownloadPdf": "Download as pdf", + "DE.Views.ApplicationView.txtDownloadDocx": "Download as DOCX", + "DE.Views.ApplicationView.txtDownloadPdf": "Download as PDF", "DE.Views.ApplicationView.txtEmbed": "Embed", "DE.Views.ApplicationView.txtFileLocation": "Open file location", - "DE.Views.ApplicationView.txtFullScreen": "Full Screen", + "DE.Views.ApplicationView.txtFullScreen": "Full screen", "DE.Views.ApplicationView.txtPrint": "Print", "DE.Views.ApplicationView.txtSearch": "Search", "DE.Views.ApplicationView.txtShare": "Share", diff --git a/apps/documenteditor/forms/locale/fr.json b/apps/documenteditor/forms/locale/fr.json index 8331a00a72..30f569f75d 100644 --- a/apps/documenteditor/forms/locale/fr.json +++ b/apps/documenteditor/forms/locale/fr.json @@ -37,7 +37,7 @@ "Common.UI.SearchBar.tipNextResult": "Résultat suivant", "Common.UI.SearchBar.tipPreviousResult": "Résultat précédent", "Common.UI.Themes.txtThemeClassicLight": "Classique clair", - "Common.UI.Themes.txtThemeContrastDark": "Contraste élevé sombre", + "Common.UI.Themes.txtThemeContrastDark": "Contraste sombre", "Common.UI.Themes.txtThemeDark": "Sombre", "Common.UI.Themes.txtThemeLight": "Clair", "Common.UI.Themes.txtThemeSystem": "Identique à système", @@ -53,7 +53,7 @@ "Common.UI.Window.yesButtonText": "Oui", "Common.Views.CopyWarningDialog.textDontShow": "Ne plus afficher ce message", "Common.Views.CopyWarningDialog.textMsg": "Les fonctions de copier, couper et coller avec des commandes de menu contextuel ne peuvent être effectuées que dans cet onglet de l'éditeur.

Pour copier ou coller vers ou depuis des applications en dehors de l'onglet d'éditeur, utilisez les raccourcis clavier suivants :", - "Common.Views.CopyWarningDialog.textTitle": "Actions copier, couper et coller", + "Common.Views.CopyWarningDialog.textTitle": "Fonctions de Copier, Couper et Coller", "Common.Views.CopyWarningDialog.textToCopy": "pour Copier", "Common.Views.CopyWarningDialog.textToCut": "pour Couper", "Common.Views.CopyWarningDialog.textToPaste": "pour Coller", @@ -115,7 +115,7 @@ "DE.Controllers.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.", "DE.Controllers.ApplicationController.errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,
mais vous ne pouvez pas le télécharger ou l'imprimer jusqu'à ce que la connexion soit rétablie et que la page soit actualisée.", "DE.Controllers.ApplicationController.mniImageFromFile": "Image à partir d'un fichier", - "DE.Controllers.ApplicationController.mniImageFromStorage": "Image de stockage", + "DE.Controllers.ApplicationController.mniImageFromStorage": "Image à partir du stockage", "DE.Controllers.ApplicationController.mniImageFromUrl": "Image à partir d'une URL", "DE.Controllers.ApplicationController.notcriticalErrorTitle": "Avertissement", "DE.Controllers.ApplicationController.openErrorText": "Une erreur s’est produite lors de l’ouverture du fichier.", @@ -178,13 +178,13 @@ "DE.Views.ApplicationView.tipUndo": "Annuler", "DE.Views.ApplicationView.txtDarkMode": "Mode sombre", "DE.Views.ApplicationView.txtDownload": "Télécharger", - "DE.Views.ApplicationView.txtDownloadDocx": "Télécharger en tant que docx", - "DE.Views.ApplicationView.txtDownloadPdf": "Télécharger en tant que pdf", + "DE.Views.ApplicationView.txtDownloadDocx": "Télécharger en tant que DOCX", + "DE.Views.ApplicationView.txtDownloadPdf": "Télécharger en PDF", "DE.Views.ApplicationView.txtEmbed": "Incorporer", "DE.Views.ApplicationView.txtFileLocation": "Ouvrir l'emplacement du fichier", "DE.Views.ApplicationView.txtFullScreen": "Plein écran", "DE.Views.ApplicationView.txtPrint": "Imprimer", - "DE.Views.ApplicationView.txtSearch": "Recherche", + "DE.Views.ApplicationView.txtSearch": "Rechercher", "DE.Views.ApplicationView.txtShare": "Partager", "DE.Views.ApplicationView.txtTheme": "Thème d’interface" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/hu.json b/apps/documenteditor/forms/locale/hu.json index 9d861c453f..0e4a978181 100644 --- a/apps/documenteditor/forms/locale/hu.json +++ b/apps/documenteditor/forms/locale/hu.json @@ -53,7 +53,7 @@ "Common.UI.Window.yesButtonText": "Igen", "Common.Views.CopyWarningDialog.textDontShow": "Ne mutassa újra ezt az üzenetet", "Common.Views.CopyWarningDialog.textMsg": "A helyi menüvel végzett másolási, kivágási és beillesztési műveletek csak ezen a szerkesztőlapon hajthatók végre.

A szerkesztő lapon kívüli alkalmazásokba vagy alkalmazásokból történő másoláshoz vagy beillesztéshez használja a következő billentyűkombinációkat:", - "Common.Views.CopyWarningDialog.textTitle": "Másolás, kivágás és beillesztés", + "Common.Views.CopyWarningDialog.textTitle": "Másolás, kivágás és beillesztés műveletek", "Common.Views.CopyWarningDialog.textToCopy": "Másolásra", "Common.Views.CopyWarningDialog.textToCut": "Kivágásra", "Common.Views.CopyWarningDialog.textToPaste": "Beillesztésre", @@ -115,7 +115,7 @@ "DE.Controllers.ApplicationController.errorUserDrop": "A dokumentum jelenleg nem elérhető.", "DE.Controllers.ApplicationController.errorViewerDisconnect": "A kapcsolat megszakadt. Továbbra is megtekinthető a dokumentum,
de a kapcsolat helyreálltáig és az oldal újratöltéséig nem lehet letölteni.", "DE.Controllers.ApplicationController.mniImageFromFile": "Kép fájlból", - "DE.Controllers.ApplicationController.mniImageFromStorage": "Kép a tárolóból", + "DE.Controllers.ApplicationController.mniImageFromStorage": "Kép tárhelyből", "DE.Controllers.ApplicationController.mniImageFromUrl": "Kép hivatkozásból", "DE.Controllers.ApplicationController.notcriticalErrorTitle": "Figyelmeztetés", "DE.Controllers.ApplicationController.openErrorText": "Hiba történt a fájl megnyitásakor.", diff --git a/apps/documenteditor/forms/locale/ro.json b/apps/documenteditor/forms/locale/ro.json index 648a172d9f..95862eedf7 100644 --- a/apps/documenteditor/forms/locale/ro.json +++ b/apps/documenteditor/forms/locale/ro.json @@ -37,7 +37,7 @@ "Common.UI.SearchBar.tipNextResult": "Următorul rezultat", "Common.UI.SearchBar.tipPreviousResult": "Rezultatul anterior", "Common.UI.Themes.txtThemeClassicLight": "Clasic Luminos", - "Common.UI.Themes.txtThemeContrastDark": "Contrast Întunecat", + "Common.UI.Themes.txtThemeContrastDark": "Contrast întunecat", "Common.UI.Themes.txtThemeDark": "Întunecat", "Common.UI.Themes.txtThemeLight": "Luminos", "Common.UI.Themes.txtThemeSystem": "La fel ca sistemul", @@ -178,8 +178,8 @@ "DE.Views.ApplicationView.tipUndo": "Anulare", "DE.Views.ApplicationView.txtDarkMode": "Modul Întunecat", "DE.Views.ApplicationView.txtDownload": "Descărcare", - "DE.Views.ApplicationView.txtDownloadDocx": "Descărcare ca docx", - "DE.Views.ApplicationView.txtDownloadPdf": "Descărcare ca pdf", + "DE.Views.ApplicationView.txtDownloadDocx": "Descărcare ca DOCX", + "DE.Views.ApplicationView.txtDownloadPdf": "Descărcare ca PDF", "DE.Views.ApplicationView.txtEmbed": "Încorporare", "DE.Views.ApplicationView.txtFileLocation": "Deschidere locația fișierului", "DE.Views.ApplicationView.txtFullScreen": "Ecran complet", diff --git a/apps/documenteditor/forms/locale/ru.json b/apps/documenteditor/forms/locale/ru.json index bf553f1e9b..45d21bf22a 100644 --- a/apps/documenteditor/forms/locale/ru.json +++ b/apps/documenteditor/forms/locale/ru.json @@ -178,8 +178,8 @@ "DE.Views.ApplicationView.tipUndo": "Отменить", "DE.Views.ApplicationView.txtDarkMode": "Темный режим", "DE.Views.ApplicationView.txtDownload": "Скачать файл", - "DE.Views.ApplicationView.txtDownloadDocx": "Скачать как docx", - "DE.Views.ApplicationView.txtDownloadPdf": "Скачать как pdf", + "DE.Views.ApplicationView.txtDownloadDocx": "Скачать как DOCX", + "DE.Views.ApplicationView.txtDownloadPdf": "Скачать как PDF", "DE.Views.ApplicationView.txtEmbed": "Встроить", "DE.Views.ApplicationView.txtFileLocation": "Открыть расположение файла", "DE.Views.ApplicationView.txtFullScreen": "Во весь экран", diff --git a/apps/documenteditor/forms/locale/zh-tw.json b/apps/documenteditor/forms/locale/zh-tw.json index 9fbc24e9cd..979d565d8e 100644 --- a/apps/documenteditor/forms/locale/zh-tw.json +++ b/apps/documenteditor/forms/locale/zh-tw.json @@ -27,10 +27,10 @@ "Common.UI.Calendar.textShortOctober": "十月", "Common.UI.Calendar.textShortSaturday": "Sa", "Common.UI.Calendar.textShortSeptember": "9月", - "Common.UI.Calendar.textShortSunday": "Su", + "Common.UI.Calendar.textShortSunday": "次方,上標", "Common.UI.Calendar.textShortThursday": "Th", "Common.UI.Calendar.textShortTuesday": "Tu", - "Common.UI.Calendar.textShortWednesday": "We", + "Common.UI.Calendar.textShortWednesday": "我們", "Common.UI.Calendar.textYears": "年份", "Common.UI.SearchBar.textFind": "尋找", "Common.UI.SearchBar.tipCloseSearch": "關閉搜尋", @@ -101,7 +101,7 @@ "DE.Controllers.ApplicationController.errorInconsistentExtPdf": "在打開檔案時發生錯誤。
檔案內容對應以下格式之一:pdf/djvu/xps/oxps,但檔案的副檔名矛盾:%1。", "DE.Controllers.ApplicationController.errorInconsistentExtPptx": "開啟檔案時發生錯誤。
檔案內容對應於簡報(例如 pptx),但檔案的副檔名不一致:%1。", "DE.Controllers.ApplicationController.errorInconsistentExtXlsx": "開啟檔案時發生錯誤。
檔案內容對應於試算表(例如 xlsx),但檔案的副檔名不一致:%1。", - "DE.Controllers.ApplicationController.errorLoadingFont": "字型未載入。
請聯絡您的文件伺服器管理員。", + "DE.Controllers.ApplicationController.errorLoadingFont": "字型未載入。請聯絡您的文件伺服器管理員。", "DE.Controllers.ApplicationController.errorServerVersion": "編輯器版本已更新。將重新載入頁面以更新改動。", "DE.Controllers.ApplicationController.errorSessionAbsolute": "文件編輯會話已過期。請重新加載頁面。", "DE.Controllers.ApplicationController.errorSessionIdle": "該文件已經有一段時間未編輯。請重新載入頁面。", @@ -111,9 +111,9 @@ "DE.Controllers.ApplicationController.errorToken": "文件安全令牌格式不正確。
請聯繫您的相關管理員。", "DE.Controllers.ApplicationController.errorTokenExpire": "文件安全令牌已過期。
請聯繫相關管理員。", "DE.Controllers.ApplicationController.errorUpdateVersion": "文件版本已更改。將重新載入頁面。", - "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "連線已恢復,且檔案版本已更改。
在您繼續工作之前,您需要下載該檔案或複製其內容以確保不會遺失任何內容,然後重新載入此頁面。", + "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "連線已恢復,且檔案版本已更改。<br>在您繼續工作之前,您需要下載該檔案或複製其內容以確保不會遺失任何內容,然後重新載入此頁面。", "DE.Controllers.ApplicationController.errorUserDrop": "目前無法存取該檔案。", - "DE.Controllers.ApplicationController.errorViewerDisconnect": "連線已中斷。您仍然可以檢視文件,
但在連線恢復並重新載入頁面之前,將無法下載或列印文件。", + "DE.Controllers.ApplicationController.errorViewerDisconnect": "連線已中斷。您仍然可以檢視文件,<br>但在連線恢復並重新載入頁面之前,將無法下載或列印文件。", "DE.Controllers.ApplicationController.mniImageFromFile": "從檔案插入圖片", "DE.Controllers.ApplicationController.mniImageFromStorage": "從儲存空間插入圖片", "DE.Controllers.ApplicationController.mniImageFromUrl": "從網址插入圖片", @@ -154,13 +154,13 @@ "DE.Controllers.ApplicationController.waitText": "請稍候...", "DE.Controllers.ApplicationController.warnLicenseAnonymous": "拒絕匿名使用者存取。
此文件只能以檢視模式開啟。", "DE.Controllers.ApplicationController.warnLicenseBefore": "授權證書未啟用。
請聯繫您的管理員。", - "DE.Controllers.ApplicationController.warnLicenseExceeded": "您已達到同時連接 %1 編輯器的限制。此文件將僅以檢視模式開啟。
請聯繫您的管理員以了解詳情。", + "DE.Controllers.ApplicationController.warnLicenseExceeded": "您已達到同時連接 %1 編輯器的限制。此文件將僅以檢視模式開啟。<br>請聯繫您的管理員以了解詳情。", "DE.Controllers.ApplicationController.warnLicenseExp": "您的許可證已過期。
請更新您的許可證並刷新頁面。", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "授權過期
您已沒有編輯文件功能的授權
請與您的管理者聯繫。", "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "授權證書需要更新
您只有部分的文件編輯功能的存取權限
請與您的管理者聯繫來取得完整的存取權限。", - "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "您已達到 %1 編輯器的使用者限制。請聯繫您的管理員以了解詳情。", - "DE.Controllers.ApplicationController.warnNoLicense": "您已達到同時連接 %1 編輯器的限制。此文件將僅以檢視模式開啟。
請聯繫 %1 的銷售團隊了解個人升級條款。", - "DE.Controllers.ApplicationController.warnNoLicenseUsers": "您已達到%1個編輯器的用戶限制。與%1銷售團隊聯繫以了解個人升級條款。", + "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "您已達到%1個編輯器限制。請聯絡你的帳號管理員以了解更多資訊。", + "DE.Controllers.ApplicationController.warnNoLicense": "您已達到同時連接 %1 編輯器的限制。此文件將僅以檢視模式開啟。<br>請聯繫 %1 的銷售團隊了解個人升級條款。", + "DE.Controllers.ApplicationController.warnNoLicenseUsers": "您已達到編輯器的使用者限制。", "DE.Views.ApplicationView.textClear": "清除所有欄位", "DE.Views.ApplicationView.textClearField": "清除欄位", "DE.Views.ApplicationView.textCopy": "複製", diff --git a/apps/documenteditor/forms/locale/zh.json b/apps/documenteditor/forms/locale/zh.json index a1e9540e44..f9343dbc17 100644 --- a/apps/documenteditor/forms/locale/zh.json +++ b/apps/documenteditor/forms/locale/zh.json @@ -16,21 +16,21 @@ "Common.UI.Calendar.textShortAugust": "八月", "Common.UI.Calendar.textShortDecember": "十二月", "Common.UI.Calendar.textShortFebruary": "二月", - "Common.UI.Calendar.textShortFriday": "星期五", + "Common.UI.Calendar.textShortFriday": "周五", "Common.UI.Calendar.textShortJanuary": "一月", "Common.UI.Calendar.textShortJuly": "七月", "Common.UI.Calendar.textShortJune": "六月", "Common.UI.Calendar.textShortMarch": "三月", "Common.UI.Calendar.textShortMay": "五月", - "Common.UI.Calendar.textShortMonday": "星期一", + "Common.UI.Calendar.textShortMonday": "周一", "Common.UI.Calendar.textShortNovember": "十一月", "Common.UI.Calendar.textShortOctober": "十月", - "Common.UI.Calendar.textShortSaturday": "星期六", + "Common.UI.Calendar.textShortSaturday": "周六", "Common.UI.Calendar.textShortSeptember": "九月", - "Common.UI.Calendar.textShortSunday": "上标", - "Common.UI.Calendar.textShortThursday": "星期四", - "Common.UI.Calendar.textShortTuesday": "星期二", - "Common.UI.Calendar.textShortWednesday": "星期三", + "Common.UI.Calendar.textShortSunday": "周日", + "Common.UI.Calendar.textShortThursday": "周四", + "Common.UI.Calendar.textShortTuesday": "周二", + "Common.UI.Calendar.textShortWednesday": "周三", "Common.UI.Calendar.textYears": "年", "Common.UI.SearchBar.textFind": "查找", "Common.UI.SearchBar.tipCloseSearch": "关闭搜索", diff --git a/apps/documenteditor/main/locale/ar.json b/apps/documenteditor/main/locale/ar.json index ac8f879f51..b7bdb3b95a 100644 --- a/apps/documenteditor/main/locale/ar.json +++ b/apps/documenteditor/main/locale/ar.json @@ -990,7 +990,7 @@ "DE.Controllers.Main.txtShape_bentConnector5": "موصل مفصل", "DE.Controllers.Main.txtShape_bentConnector5WithArrow": "موصل سهم مع مفصل", "DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "موصل سهم مزدوج مع مفصل", - "DE.Controllers.Main.txtShape_bentUpArrow": "سهم منحني", + "DE.Controllers.Main.txtShape_bentUpArrow": "سهم منحني للأعلى", "DE.Controllers.Main.txtShape_bevel": "مستطيل مشطوف الحواف", "DE.Controllers.Main.txtShape_blockArc": "شكل قوس", "DE.Controllers.Main.txtShape_borderCallout1": "وسيلة شرح مع خط 1", @@ -1009,7 +1009,7 @@ "DE.Controllers.Main.txtShape_corner": "ركن", "DE.Controllers.Main.txtShape_cube": "مكعب", "DE.Controllers.Main.txtShape_curvedConnector3": "رابط منحني", - "DE.Controllers.Main.txtShape_curvedConnector3WithArrow": "رابط سهمي مقوس", + "DE.Controllers.Main.txtShape_curvedConnector3WithArrow": "رابط سهمي منحني", "DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "رابط سهم مزدوج منحني", "DE.Controllers.Main.txtShape_curvedDownArrow": "سهم منحني لأسفل", "DE.Controllers.Main.txtShape_curvedLeftArrow": "سهم منحني لليسار", @@ -1025,7 +1025,7 @@ "DE.Controllers.Main.txtShape_downArrowCallout": "وسيلة شرح مع سهم إلى الأسفل", "DE.Controllers.Main.txtShape_ellipse": "بيضوي", "DE.Controllers.Main.txtShape_ellipseRibbon": "شريط منحني لأسفل", - "DE.Controllers.Main.txtShape_ellipseRibbon2": "شريط منحني لأعلي", + "DE.Controllers.Main.txtShape_ellipseRibbon2": "شريط منحني لأعلى", "DE.Controllers.Main.txtShape_flowChartAlternateProcess": "مخطط بياني: عملية بديلة", "DE.Controllers.Main.txtShape_flowChartCollate": "مخطط دفقي: تجميع", "DE.Controllers.Main.txtShape_flowChartConnector": "مخطط دفقي: عنصر ربط", @@ -1037,7 +1037,7 @@ "DE.Controllers.Main.txtShape_flowChartInputOutput": "مخطط دفقي: بيانات", "DE.Controllers.Main.txtShape_flowChartInternalStorage": "مخطط دفقي: تخزين داخلي", "DE.Controllers.Main.txtShape_flowChartMagneticDisk": "مخطط دفقي: قرص مغناطيسي", - "DE.Controllers.Main.txtShape_flowChartMagneticDrum": "مخطط دفقي: وصول مباشر", + "DE.Controllers.Main.txtShape_flowChartMagneticDrum": "مخطط دفقي: تخزين وصول مباشر", "DE.Controllers.Main.txtShape_flowChartMagneticTape": "مخطط دفقي: تخزين وصول تسلسلي", "DE.Controllers.Main.txtShape_flowChartManualInput": "مخطط دفقي: إدخال يدوي", "DE.Controllers.Main.txtShape_flowChartManualOperation": "مخطط دفقي: تشغيل يدوي", @@ -1064,7 +1064,7 @@ "DE.Controllers.Main.txtShape_horizontalScroll": "لفافة ورقية أفقية", "DE.Controllers.Main.txtShape_irregularSeal1": "انفجار 1", "DE.Controllers.Main.txtShape_irregularSeal2": "انفجار 2", - "DE.Controllers.Main.txtShape_leftArrow": "سهم أيسر", + "DE.Controllers.Main.txtShape_leftArrow": "سهم إلى اليسار", "DE.Controllers.Main.txtShape_leftArrowCallout": "وسيلة شرح مع سهم إلى اليسار", "DE.Controllers.Main.txtShape_leftBrace": "قوس إغلاق", "DE.Controllers.Main.txtShape_leftBracket": "قوس إغلاق", diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index 12d07e3e36..bc3e2697cf 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -156,7 +156,7 @@ "Common.define.smartArt.textBendingPictureBlocks": "Blocs d'imatges corbes", "Common.define.smartArt.textBendingPictureCaption": "Llegenda d'imatge corba", "Common.define.smartArt.textBendingPictureCaptionList": "Llista de llegendes d'imatges corba", - "Common.define.smartArt.textBendingPictureSemiTranparentText": "Text d'imatge semitransparent corb", + "Common.define.smartArt.textBendingPictureSemiTranparentText": "Text semitransparent d'imatge corba", "Common.define.smartArt.textBlockCycle": "Cicle de blocs", "Common.define.smartArt.textBubblePictureList": "Llista d'imatges de bombolla", "Common.define.smartArt.textCaptionedPictures": "Imatges amb llegenda", @@ -1627,7 +1627,7 @@ "DE.Views.ChartSettings.textWrap": "Estil d'ajustament", "DE.Views.ChartSettings.textX": "Rotació X", "DE.Views.ChartSettings.textY": "Rotació Y", - "DE.Views.ChartSettings.txtBehind": "Darrere el text", + "DE.Views.ChartSettings.txtBehind": "Darrere del text", "DE.Views.ChartSettings.txtInFront": "Davant del text", "DE.Views.ChartSettings.txtInline": "En línia amb el text", "DE.Views.ChartSettings.txtSquare": "Quadrat", @@ -2903,7 +2903,7 @@ "DE.Views.ShapeSettings.textWrap": "Estil d'ajustament", "DE.Views.ShapeSettings.tipAddGradientPoint": "Afegeix un punt de degradat", "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Suprimir el punt de degradat", - "DE.Views.ShapeSettings.txtBehind": "Darrere el text", + "DE.Views.ShapeSettings.txtBehind": "Darrere del text", "DE.Views.ShapeSettings.txtBrownPaper": "Paper marró", "DE.Views.ShapeSettings.txtCanvas": "Llenç", "DE.Views.ShapeSettings.txtCarton": "Cartró", diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json index 58b63f7d39..7c1315f949 100644 --- a/apps/documenteditor/main/locale/de.json +++ b/apps/documenteditor/main/locale/de.json @@ -342,6 +342,7 @@ "Common.UI.HSBColorPicker.textNoColor": "Ohne Farbe", "Common.UI.InputFieldBtnCalendar.textDate": "Datum auswählen", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Passwort ausblenden", + "Common.UI.InputFieldBtnPassword.textHintHold": "Lang drücken, um das Passwort anzuzeigen", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Password anzeigen", "Common.UI.SearchBar.textFind": "Suchen", "Common.UI.SearchBar.tipCloseSearch": "Suche schließen", @@ -488,6 +489,9 @@ "Common.Views.Comments.textResolve": "Lösen", "Common.Views.Comments.textResolved": "Gelöst", "Common.Views.Comments.textSort": "Kommentare sortieren", + "Common.Views.Comments.textSortFilter": "Kommentare sortieren und filtern", + "Common.Views.Comments.textSortFilterMore": "Sortieren, filtern und mehr", + "Common.Views.Comments.textSortMore": "Sortieren und mehr", "Common.Views.Comments.textViewResolved": "Sie haben keine Berechtigung, den Kommentar erneut zu öffnen", "Common.Views.Comments.txtEmpty": "Das Dokument enthält keine Kommentare.", "Common.Views.CopyWarningDialog.textDontShow": "Diese Meldung nicht mehr anzeigen", @@ -570,10 +574,16 @@ "Common.Views.PasswordDialog.txtTitle": "Kennwort festlegen", "Common.Views.PasswordDialog.txtWarning": "Vorsicht: Wenn Sie das Kennwort verlieren oder vergessen, lässt es sich nicht mehr wiederherstellen. Bewahren Sie es an einem sicheren Ort auf.", "Common.Views.PluginDlg.textLoading": "Ladevorgang", + "Common.Views.PluginPanel.textClosePanel": "Plugin schließen", + "Common.Views.PluginPanel.textLoading": "Ladevorgang", "Common.Views.Plugins.groupCaption": "Plugins", "Common.Views.Plugins.strPlugins": "Plugins", + "Common.Views.Plugins.textBackgroundPlugins": "Plugins im Hintergrund", + "Common.Views.Plugins.textSettings": "Einstellungen", "Common.Views.Plugins.textStart": "Starten", "Common.Views.Plugins.textStop": "Beenden", + "Common.Views.Plugins.textTheListOfBackgroundPlugins": "Die Liste der Plugins im Hintergrund", + "Common.Views.Plugins.tipMore": "Mehr", "Common.Views.Protection.hintAddPwd": "Mit Kennwort verschlüsseln", "Common.Views.Protection.hintDelPwd": "Kennwort löschen", "Common.Views.Protection.hintPwd": "Das Kennwort ändern oder löschen", @@ -1204,6 +1214,9 @@ "DE.Controllers.Toolbar.notcriticalErrorTitle": "Achtung", "DE.Controllers.Toolbar.textAccent": "Akzente", "DE.Controllers.Toolbar.textBracket": "Klammern", + "DE.Controllers.Toolbar.textConvertFormDownload": "Laden Sie die Datei als ausfüllbares PDF-Formular herunter, um sie ausfüllen zu können.", + "DE.Controllers.Toolbar.textConvertFormSave": "Speichern Sie die Datei als ausfüllbares PDF-Formular, um sie ausfüllen zu können.", + "DE.Controllers.Toolbar.textDownloadPdf": "PDF herunterladen", "DE.Controllers.Toolbar.textEmptyImgUrl": "Sie müssen eine Bild-URL angeben.", "DE.Controllers.Toolbar.textEmptyMMergeUrl": "Geben Sie URL ein.", "DE.Controllers.Toolbar.textFontSizeErr": "Der eingegebene Wert ist falsch.
Geben Sie bitte einen numerischen Wert zwischen 1 und 300 ein.", @@ -1218,6 +1231,7 @@ "DE.Controllers.Toolbar.textOperator": "Operatoren", "DE.Controllers.Toolbar.textRadical": "Wurzeln", "DE.Controllers.Toolbar.textRecentlyUsed": "Zuletzt verwendet", + "DE.Controllers.Toolbar.textSavePdf": "Als PDF speichern", "DE.Controllers.Toolbar.textScript": "Skripts", "DE.Controllers.Toolbar.textSymbols": "Symbole", "DE.Controllers.Toolbar.textTabForms": "Formulare", @@ -1540,6 +1554,7 @@ "DE.Controllers.Toolbar.txtSymbol_vdots": "Vertikale Ellipse", "DE.Controllers.Toolbar.txtSymbol_xsi": "Xi", "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "DE.Controllers.Toolbar.txtUntitled": "Unbenannt", "DE.Controllers.Viewport.textFitPage": "Seite anpassen", "DE.Controllers.Viewport.textFitWidth": "Breite anpassen", "DE.Controllers.Viewport.txtDarkMode": "Dunkelmodus", @@ -2128,6 +2143,7 @@ "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Das Dokument wird auf dem zuletzt ausgewählten oder dem standardmäßigen Drucker gedruckt", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Alle aktivieren", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Alle Makros ohne Benachrichtigung aktivieren", + "DE.Views.FileMenuPanels.Settings.txtScreenReader": "Unterstützung für Bildschirmleser einschalten", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Änderungen anzeigen", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Rechtschreibprüfung", "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Alle deaktivieren", @@ -2188,6 +2204,7 @@ "DE.Views.FormSettings.textPhone2": "Telefonnummer (z.B. +447911123456)", "DE.Views.FormSettings.textPlaceholder": "Platzhalter", "DE.Views.FormSettings.textRadiobox": "Radiobutton", + "DE.Views.FormSettings.textRadioChoice": "Auswahl der Optionsschaltflächen", "DE.Views.FormSettings.textRadioDefault": "Schaltfläche ist standardmäßig aktiviert", "DE.Views.FormSettings.textReg": "Regulärer Ausdruck", "DE.Views.FormSettings.textRequired": "Erforderlich", @@ -2238,12 +2255,18 @@ "DE.Views.FormsTab.tipCheckBox": "Checkbox einfügen", "DE.Views.FormsTab.tipComboBox": "Combobox einfügen", "DE.Views.FormsTab.tipComplexField": "Komplexes Feld einfügen", + "DE.Views.FormsTab.tipCreateField": "Um ein Feld zu erstellen, wählen Sie den gewünschten Feldtyp in der Symbolleiste aus und klicken Sie darauf. Das Feld wird im Dokument angezeigt.", "DE.Views.FormsTab.tipCreditCard": "Kreditkartennummer eingeben", "DE.Views.FormsTab.tipDateTime": "Datum und Uhrzeit einfügen", "DE.Views.FormsTab.tipDownloadForm": "Die Datei als ausfüllbares PDF-Dokument herunterladen", "DE.Views.FormsTab.tipDropDown": "Dropdown-Liste einfügen", "DE.Views.FormsTab.tipEmailField": "E-Mail Adresse einfügen", + "DE.Views.FormsTab.tipFieldSettings": "Sie können ausgewählte Felder in der rechten Seitenleiste konfigurieren. Klicken Sie auf dieses Symbol, um die Feldeinstellungen zu öffnen.", + "DE.Views.FormsTab.tipFieldsLink": "Mehr über die Feldparameter erfahren", "DE.Views.FormsTab.tipFixedText": "Fixiertes Textfeld einfügen", + "DE.Views.FormsTab.tipFormGroupKey": "Gruppieren Sie Optionsfelder, um den Ausfüllvorgang zu beschleunigen. Auswahlmöglichkeiten mit denselben Namen werden synchronisiert. Benutzer können nur ein Optionsfeld aus der Gruppe ankreuzen.", + "DE.Views.FormsTab.tipFormKey": "Sie können einem Feld oder einer Gruppe von Feldern einen Schlüssel zuweisen. Wenn ein Benutzer die Daten eingibt, werden sie in alle Felder mit demselben Schlüssel kopiert.", + "DE.Views.FormsTab.tipHelpRoles": "Verwenden Sie die Funktion \"Rollen verwalten\", um Felder nach Zweck zu gruppieren und die zuständigen Teammitglieder zuzuweisen.", "DE.Views.FormsTab.tipImageField": "Bild einfügen", "DE.Views.FormsTab.tipInlineText": "Inline-Textfeld einfügen", "DE.Views.FormsTab.tipManager": "Positionen verwalten", @@ -2251,6 +2274,8 @@ "DE.Views.FormsTab.tipPhoneField": "Telefonnummer einfügen", "DE.Views.FormsTab.tipPrevForm": "Zum vorherigen Feld wechseln", "DE.Views.FormsTab.tipRadioBox": "Radiobutton einfügen", + "DE.Views.FormsTab.tipRolesLink": "Mehr über die Rollen erfahren", + "DE.Views.FormsTab.tipSaveFile": "Klicken Sie auf \"Als PDF speichern\", um das Formular in einem ausfüllbaren Format zu speichern.", "DE.Views.FormsTab.tipSaveForm": "Als eine ausfüllbare PDF-Datei speichern", "DE.Views.FormsTab.tipSubmit": "Formular senden", "DE.Views.FormsTab.tipTextField": "Textfeld einfügen", diff --git a/apps/documenteditor/main/locale/el.json b/apps/documenteditor/main/locale/el.json index 51af821dad..b2b46e42ec 100644 --- a/apps/documenteditor/main/locale/el.json +++ b/apps/documenteditor/main/locale/el.json @@ -892,7 +892,7 @@ "DE.Controllers.Main.textAnonymous": "Ανώνυμος", "DE.Controllers.Main.textAnyone": "Οποιοσδήποτε", "DE.Controllers.Main.textApplyAll": "Εφαρμογή σε όλες τις εξισώσεις", - "DE.Controllers.Main.textBuyNow": "Επισκεφθείτε την ιστοσελίδα", + "DE.Controllers.Main.textBuyNow": "Επισκεφθείτε τον ιστότοπο", "DE.Controllers.Main.textChangesSaved": "Όλες οι αλλαγές αποθηκεύτηκαν", "DE.Controllers.Main.textClose": "Κλείσιμο", "DE.Controllers.Main.textCloseTip": "Κάντε κλικ για να κλείσει η υπόδειξη", diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index a6e9380c81..3830289549 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -1,7 +1,7 @@ { "Common.Controllers.Chat.notcriticalErrorTitle": "Warning", "Common.Controllers.Chat.textEnterMessage": "Enter your message here", - "Common.Controllers.Desktop.hintBtnHome": "Show Main window", + "Common.Controllers.Desktop.hintBtnHome": "Show main window", "Common.Controllers.Desktop.itemCreateFromTemplate": "Create from template", "Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonymous", "Common.Controllers.ExternalDiagramEditor.textClose": "Close", @@ -45,7 +45,7 @@ "Common.Controllers.ReviewChanges.textKeepLines": "Keep lines together", "Common.Controllers.ReviewChanges.textKeepNext": "Keep with next", "Common.Controllers.ReviewChanges.textLeft": "Align left", - "Common.Controllers.ReviewChanges.textLineSpacing": "Line Spacing: ", + "Common.Controllers.ReviewChanges.textLineSpacing": "Line spacing: ", "Common.Controllers.ReviewChanges.textMultiple": "multiple", "Common.Controllers.ReviewChanges.textNoBreakBefore": "No page break before", "Common.Controllers.ReviewChanges.textNoContextual": "Add interval between paragraphs of the same style", @@ -58,11 +58,11 @@ "Common.Controllers.ReviewChanges.textOffGlobal": "{0} disabled Track Changes for everyone.", "Common.Controllers.ReviewChanges.textOn": "{0} is now using Track Changes.", "Common.Controllers.ReviewChanges.textOnGlobal": "{0} enabled Track Changes for everyone.", - "Common.Controllers.ReviewChanges.textParaDeleted": "Paragraph Deleted", - "Common.Controllers.ReviewChanges.textParaFormatted": "Paragraph Formatted", - "Common.Controllers.ReviewChanges.textParaInserted": "Paragraph Inserted", - "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Moved Down:", - "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Moved Up:", + "Common.Controllers.ReviewChanges.textParaDeleted": "Paragraph deleted", + "Common.Controllers.ReviewChanges.textParaFormatted": "Paragraph formatted", + "Common.Controllers.ReviewChanges.textParaInserted": "Paragraph inserted", + "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Moved down:", + "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Moved up:", "Common.Controllers.ReviewChanges.textParaMoveTo": "Moved:", "Common.Controllers.ReviewChanges.textPosition": "Position", "Common.Controllers.ReviewChanges.textRight": "Align right", @@ -76,11 +76,11 @@ "Common.Controllers.ReviewChanges.textStrikeout": "Strikethrough", "Common.Controllers.ReviewChanges.textSubScript": "Subscript", "Common.Controllers.ReviewChanges.textSuperScript": "Superscript", - "Common.Controllers.ReviewChanges.textTableChanged": "Table Settings Changed", - "Common.Controllers.ReviewChanges.textTableRowsAdd": "Table Rows Added", - "Common.Controllers.ReviewChanges.textTableRowsDel": "Table Rows Deleted", + "Common.Controllers.ReviewChanges.textTableChanged": "Table settings changed", + "Common.Controllers.ReviewChanges.textTableRowsAdd": "Table rows added", + "Common.Controllers.ReviewChanges.textTableRowsDel": "Table rows deleted", "Common.Controllers.ReviewChanges.textTabs": "Change tabs", - "Common.Controllers.ReviewChanges.textTitleComparison": "Comparison Settings", + "Common.Controllers.ReviewChanges.textTitleComparison": "Comparison settings", "Common.Controllers.ReviewChanges.textUnderline": "Underline", "Common.Controllers.ReviewChanges.textUrl": "Paste a document URL", "Common.Controllers.ReviewChanges.textWidow": "Widow control", @@ -130,165 +130,165 @@ "Common.define.chartData.textScatterSmoothMarker": "Scatter with smooth lines and markers", "Common.define.chartData.textStock": "Stock", "Common.define.chartData.textSurface": "Surface", - "Common.define.smartArt.textAccentedPicture": "Accented Picture", - "Common.define.smartArt.textAccentProcess": "Accent Process", - "Common.define.smartArt.textAlternatingFlow": "Alternating Flow", + "Common.define.smartArt.textAccentedPicture": "Accented picture", + "Common.define.smartArt.textAccentProcess": "Accent process", + "Common.define.smartArt.textAlternatingFlow": "Alternating flow", "Common.define.smartArt.textAlternatingHexagons": "Alternating Hexagons", - "Common.define.smartArt.textAlternatingPictureBlocks": "Alternating Picture Blocks", - "Common.define.smartArt.textAlternatingPictureCircles": "Alternating Picture Circles", - "Common.define.smartArt.textArchitectureLayout": "Architecture Layout", - "Common.define.smartArt.textArrowRibbon": "Arrow Ribbon", - "Common.define.smartArt.textAscendingPictureAccentProcess": "Ascending Picture Accent Process", + "Common.define.smartArt.textAlternatingPictureBlocks": "Alternating picture blocks", + "Common.define.smartArt.textAlternatingPictureCircles": "Alternating picture circles", + "Common.define.smartArt.textArchitectureLayout": "Architecture layout", + "Common.define.smartArt.textArrowRibbon": "Arrow ribbon", + "Common.define.smartArt.textAscendingPictureAccentProcess": "Ascending picture accent process", "Common.define.smartArt.textBalance": "Balance", - "Common.define.smartArt.textBasicBendingProcess": "Basic Bending Process", - "Common.define.smartArt.textBasicBlockList": "Basic Block List", - "Common.define.smartArt.textBasicChevronProcess": "Basic Chevron Process", - "Common.define.smartArt.textBasicCycle": "Basic Cycle", - "Common.define.smartArt.textBasicMatrix": "Basic Matrix", - "Common.define.smartArt.textBasicPie": "Basic Pie", - "Common.define.smartArt.textBasicProcess": "Basic Process", - "Common.define.smartArt.textBasicPyramid": "Basic Pyramid", - "Common.define.smartArt.textBasicRadial": "Basic Radial", - "Common.define.smartArt.textBasicTarget": "Basic Target", - "Common.define.smartArt.textBasicTimeline": "Basic Timeline", + "Common.define.smartArt.textBasicBendingProcess": "Basic bending process", + "Common.define.smartArt.textBasicBlockList": "Basic block list", + "Common.define.smartArt.textBasicChevronProcess": "Basic chevron process", + "Common.define.smartArt.textBasicCycle": "Basic cycle", + "Common.define.smartArt.textBasicMatrix": "Basic matrix", + "Common.define.smartArt.textBasicPie": "Basic pie", + "Common.define.smartArt.textBasicProcess": "Basic process", + "Common.define.smartArt.textBasicPyramid": "Basic pyramid", + "Common.define.smartArt.textBasicRadial": "Basic radial", + "Common.define.smartArt.textBasicTarget": "Basic target", + "Common.define.smartArt.textBasicTimeline": "Basic timeline", "Common.define.smartArt.textBasicVenn": "Basic Venn", - "Common.define.smartArt.textBendingPictureAccentList": "Bending Picture Accent List", - "Common.define.smartArt.textBendingPictureBlocks": "Bending Picture Blocks", - "Common.define.smartArt.textBendingPictureCaption": "Bending Picture Caption", - "Common.define.smartArt.textBendingPictureCaptionList": "Bending Picture Caption List", - "Common.define.smartArt.textBendingPictureSemiTranparentText": "Bending Picture Semi-Transparent Text", - "Common.define.smartArt.textBlockCycle": "Block Cycle", - "Common.define.smartArt.textBubblePictureList": "Bubble Picture List", - "Common.define.smartArt.textCaptionedPictures": "Captioned Pictures", - "Common.define.smartArt.textChevronAccentProcess": "Chevron Accent Process", - "Common.define.smartArt.textChevronList": "Chevron List", - "Common.define.smartArt.textCircleAccentTimeline": "Circle Accent Timeline", - "Common.define.smartArt.textCircleArrowProcess": "Circle Arrow Process", - "Common.define.smartArt.textCirclePictureHierarchy": "Circle Picture Hierarchy", - "Common.define.smartArt.textCircleProcess": "Circle Process", - "Common.define.smartArt.textCircleRelationship": "Circle Relationship", - "Common.define.smartArt.textCircularBendingProcess": "Circular Bending Process", - "Common.define.smartArt.textCircularPictureCallout": "Circular Picture Callout", - "Common.define.smartArt.textClosedChevronProcess": "Closed Chevron Process", - "Common.define.smartArt.textContinuousArrowProcess": "Continuous Arrow Process", - "Common.define.smartArt.textContinuousBlockProcess": "Continuous Block Process", - "Common.define.smartArt.textContinuousCycle": "Continuous Cycle", - "Common.define.smartArt.textContinuousPictureList": "Continuous Picture List", - "Common.define.smartArt.textConvergingArrows": "Converging Arrows", - "Common.define.smartArt.textConvergingRadial": "Converging Radial", - "Common.define.smartArt.textConvergingText": "Converging Text", - "Common.define.smartArt.textCounterbalanceArrows": "Counterbalance Arrows", + "Common.define.smartArt.textBendingPictureAccentList": "Bending picture accent list", + "Common.define.smartArt.textBendingPictureBlocks": "Bending picture blocks", + "Common.define.smartArt.textBendingPictureCaption": "Bending picture caption", + "Common.define.smartArt.textBendingPictureCaptionList": "Bending picture caption list", + "Common.define.smartArt.textBendingPictureSemiTranparentText": "Bending picture semi-transparent text", + "Common.define.smartArt.textBlockCycle": "Block cycle", + "Common.define.smartArt.textBubblePictureList": "Bubble picture list", + "Common.define.smartArt.textCaptionedPictures": "Captioned pictures", + "Common.define.smartArt.textChevronAccentProcess": "Chevron accent process", + "Common.define.smartArt.textChevronList": "Chevron list", + "Common.define.smartArt.textCircleAccentTimeline": "Circle accent timeline", + "Common.define.smartArt.textCircleArrowProcess": "Circle arrow process", + "Common.define.smartArt.textCirclePictureHierarchy": "Circle picture hierarchy", + "Common.define.smartArt.textCircleProcess": "Circle process", + "Common.define.smartArt.textCircleRelationship": "Circle relationship", + "Common.define.smartArt.textCircularBendingProcess": "Circular bending process", + "Common.define.smartArt.textCircularPictureCallout": "Circular picture callout", + "Common.define.smartArt.textClosedChevronProcess": "Closed chevron process", + "Common.define.smartArt.textContinuousArrowProcess": "Continuous arrow process", + "Common.define.smartArt.textContinuousBlockProcess": "Continuous block process", + "Common.define.smartArt.textContinuousCycle": "Continuous cycle", + "Common.define.smartArt.textContinuousPictureList": "Continuous picture list", + "Common.define.smartArt.textConvergingArrows": "Converging arrows", + "Common.define.smartArt.textConvergingRadial": "Converging radial", + "Common.define.smartArt.textConvergingText": "Converging text", + "Common.define.smartArt.textCounterbalanceArrows": "Counterbalance arrows", "Common.define.smartArt.textCycle": "Cycle", - "Common.define.smartArt.textCycleMatrix": "Cycle Matrix", - "Common.define.smartArt.textDescendingBlockList": "Descending Block List", - "Common.define.smartArt.textDescendingProcess": "Descending Process", - "Common.define.smartArt.textDetailedProcess": "Detailed Process", - "Common.define.smartArt.textDivergingArrows": "Diverging Arrows", - "Common.define.smartArt.textDivergingRadial": "Diverging Radial", + "Common.define.smartArt.textCycleMatrix": "Cycle matrix", + "Common.define.smartArt.textDescendingBlockList": "Descending block list", + "Common.define.smartArt.textDescendingProcess": "Descending process", + "Common.define.smartArt.textDetailedProcess": "Detailed process", + "Common.define.smartArt.textDivergingArrows": "Diverging arrows", + "Common.define.smartArt.textDivergingRadial": "Diverging radial", "Common.define.smartArt.textEquation": "Equation", - "Common.define.smartArt.textFramedTextPicture": "Framed Text Picture", + "Common.define.smartArt.textFramedTextPicture": "Framed text picture", "Common.define.smartArt.textFunnel": "Funnel", "Common.define.smartArt.textGear": "Gear", - "Common.define.smartArt.textGridMatrix": "Grid Matrix", - "Common.define.smartArt.textGroupedList": "Grouped List", - "Common.define.smartArt.textHalfCircleOrganizationChart": "Half Circle Organization Chart", - "Common.define.smartArt.textHexagonCluster": "Hexagon Cluster", + "Common.define.smartArt.textGridMatrix": "Grid matrix", + "Common.define.smartArt.textGroupedList": "Grouped list", + "Common.define.smartArt.textHalfCircleOrganizationChart": "Half circle organization chart", + "Common.define.smartArt.textHexagonCluster": "Hexagon cluster", "Common.define.smartArt.textHexagonRadial": "Hexagon Radial", "Common.define.smartArt.textHierarchy": "Hierarchy", - "Common.define.smartArt.textHierarchyList": "Hierarchy List", - "Common.define.smartArt.textHorizontalBulletList": "Horizontal Bullet List", - "Common.define.smartArt.textHorizontalHierarchy": "Horizontal Hierarchy", - "Common.define.smartArt.textHorizontalLabeledHierarchy": "Horizontal Labeled Hierarchy", - "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Horizontal Multi-Level Hierarchy", - "Common.define.smartArt.textHorizontalOrganizationChart": "Horizontal Organization Chart", - "Common.define.smartArt.textHorizontalPictureList": "Horizontal Picture List", - "Common.define.smartArt.textIncreasingArrowProcess": "Increasing Arrow Process", - "Common.define.smartArt.textIncreasingCircleProcess": "Increasing Circle Process", - "Common.define.smartArt.textInterconnectedBlockProcess": "Interconnected Block Process", - "Common.define.smartArt.textInterconnectedRings": "Interconnected Rings", - "Common.define.smartArt.textInvertedPyramid": "Inverted Pyramid", - "Common.define.smartArt.textLabeledHierarchy": "Labeled Hierarchy", + "Common.define.smartArt.textHierarchyList": "Hierarchy list", + "Common.define.smartArt.textHorizontalBulletList": "Horizontal bullet list", + "Common.define.smartArt.textHorizontalHierarchy": "Horizontal hierarchy", + "Common.define.smartArt.textHorizontalLabeledHierarchy": "Horizontal labeled hierarchy", + "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Horizontal multi-level hierarchy", + "Common.define.smartArt.textHorizontalOrganizationChart": "Horizontal organization chart", + "Common.define.smartArt.textHorizontalPictureList": "Horizontal picture list", + "Common.define.smartArt.textIncreasingArrowProcess": "Increasing arrow process", + "Common.define.smartArt.textIncreasingCircleProcess": "Increasing circle process", + "Common.define.smartArt.textInterconnectedBlockProcess": "Interconnected block process", + "Common.define.smartArt.textInterconnectedRings": "Interconnected rings", + "Common.define.smartArt.textInvertedPyramid": "Inverted pyramid", + "Common.define.smartArt.textLabeledHierarchy": "Labeled hierarchy", "Common.define.smartArt.textLinearVenn": "Linear Venn", "Common.define.smartArt.textLinedList": "Lined List", "Common.define.smartArt.textList": "List", "Common.define.smartArt.textMatrix": "Matrix", - "Common.define.smartArt.textMultidirectionalCycle": "Multidirectional Cycle", - "Common.define.smartArt.textNameAndTitleOrganizationChart": "Name and Title Organization Chart", - "Common.define.smartArt.textNestedTarget": "Nested Target", - "Common.define.smartArt.textNondirectionalCycle": "Nondirectional Cycle", - "Common.define.smartArt.textOpposingArrows": "Opposing Arrows", - "Common.define.smartArt.textOpposingIdeas": "Opposing Ideas", - "Common.define.smartArt.textOrganizationChart": "Organization Chart", + "Common.define.smartArt.textMultidirectionalCycle": "Multidirectional cycle", + "Common.define.smartArt.textNameAndTitleOrganizationChart": "Name and title organization chart", + "Common.define.smartArt.textNestedTarget": "Nested target", + "Common.define.smartArt.textNondirectionalCycle": "Nondirectional cycle", + "Common.define.smartArt.textOpposingArrows": "Opposing arrows", + "Common.define.smartArt.textOpposingIdeas": "Opposing ideas", + "Common.define.smartArt.textOrganizationChart": "Organization сhart", "Common.define.smartArt.textOther": "Other", - "Common.define.smartArt.textPhasedProcess": "Phased Process", + "Common.define.smartArt.textPhasedProcess": "Phased process", "Common.define.smartArt.textPicture": "Picture", - "Common.define.smartArt.textPictureAccentBlocks": "Picture Accent Blocks", - "Common.define.smartArt.textPictureAccentList": "Picture Accent List", - "Common.define.smartArt.textPictureAccentProcess": "Picture Accent Process", - "Common.define.smartArt.textPictureCaptionList": "Picture Caption List", + "Common.define.smartArt.textPictureAccentBlocks": "Picture accent blocks", + "Common.define.smartArt.textPictureAccentList": "Picture accent list", + "Common.define.smartArt.textPictureAccentProcess": "Picture accent process", + "Common.define.smartArt.textPictureCaptionList": "Picture caption list", "Common.define.smartArt.textPictureFrame": "PictureFrame", - "Common.define.smartArt.textPictureGrid": "Picture Grid", - "Common.define.smartArt.textPictureLineup": "Picture Lineup", - "Common.define.smartArt.textPictureOrganizationChart": "Picture Organization Chart", - "Common.define.smartArt.textPictureStrips": "Picture Strips", - "Common.define.smartArt.textPieProcess": "Pie Process", - "Common.define.smartArt.textPlusAndMinus": "Plus and Minus", + "Common.define.smartArt.textPictureGrid": "Picture grid", + "Common.define.smartArt.textPictureLineup": "Picture lineup", + "Common.define.smartArt.textPictureOrganizationChart": "Picture organization chart", + "Common.define.smartArt.textPictureStrips": "Picture strips", + "Common.define.smartArt.textPieProcess": "Pie process", + "Common.define.smartArt.textPlusAndMinus": "Plus and minus", "Common.define.smartArt.textProcess": "Process", - "Common.define.smartArt.textProcessArrows": "Process Arrows", - "Common.define.smartArt.textProcessList": "Process List", + "Common.define.smartArt.textProcessArrows": "Process arrows", + "Common.define.smartArt.textProcessList": "Process list", "Common.define.smartArt.textPyramid": "Pyramid", - "Common.define.smartArt.textPyramidList": "Pyramid List", - "Common.define.smartArt.textRadialCluster": "Radial Cluster", - "Common.define.smartArt.textRadialCycle": "Radial Cycle", - "Common.define.smartArt.textRadialList": "Radial List", - "Common.define.smartArt.textRadialPictureList": "Radial Picture List", + "Common.define.smartArt.textPyramidList": "Pyramid list", + "Common.define.smartArt.textRadialCluster": "Radial cluster", + "Common.define.smartArt.textRadialCycle": "Radial cycle", + "Common.define.smartArt.textRadialList": "Radial list", + "Common.define.smartArt.textRadialPictureList": "Radial picture list", "Common.define.smartArt.textRadialVenn": "Radial Venn", - "Common.define.smartArt.textRandomToResultProcess": "Random to Result Process", + "Common.define.smartArt.textRandomToResultProcess": "Random to result process", "Common.define.smartArt.textRelationship": "Relationship", - "Common.define.smartArt.textRepeatingBendingProcess": "Repeating Bending Process", - "Common.define.smartArt.textReverseList": "Reverse List", - "Common.define.smartArt.textSegmentedCycle": "Segmented Cycle", - "Common.define.smartArt.textSegmentedProcess": "Segmented Process", - "Common.define.smartArt.textSegmentedPyramid": "Segmented Pyramid", - "Common.define.smartArt.textSnapshotPictureList": "Snapshot Picture List", + "Common.define.smartArt.textRepeatingBendingProcess": "Repeating bending process", + "Common.define.smartArt.textReverseList": "Reverse list", + "Common.define.smartArt.textSegmentedCycle": "Segmented cycle", + "Common.define.smartArt.textSegmentedProcess": "Segmented process", + "Common.define.smartArt.textSegmentedPyramid": "Segmented pyramid", + "Common.define.smartArt.textSnapshotPictureList": "Snapshot picture list", "Common.define.smartArt.textSpiralPicture": "Spiral Picture", - "Common.define.smartArt.textSquareAccentList": "Square Accent List", - "Common.define.smartArt.textStackedList": "Stacked List", + "Common.define.smartArt.textSquareAccentList": "Square accent list", + "Common.define.smartArt.textStackedList": "Stacked list", "Common.define.smartArt.textStackedVenn": "Stacked Venn", - "Common.define.smartArt.textStaggeredProcess": "Staggered Process", - "Common.define.smartArt.textStepDownProcess": "Step Down Process", - "Common.define.smartArt.textStepUpProcess": "Step Up Process", - "Common.define.smartArt.textSubStepProcess": "Sub-Step Process", + "Common.define.smartArt.textStaggeredProcess": "Staggered process", + "Common.define.smartArt.textStepDownProcess": "Step down process", + "Common.define.smartArt.textStepUpProcess": "Step up process", + "Common.define.smartArt.textSubStepProcess": "Sub-step process", "Common.define.smartArt.textTabbedArc": "Tabbed Arc", - "Common.define.smartArt.textTableHierarchy": "Table Hierarchy", - "Common.define.smartArt.textTableList": "Table List", + "Common.define.smartArt.textTableHierarchy": "Table hierarchy", + "Common.define.smartArt.textTableList": "Table list", "Common.define.smartArt.textTabList": "Tab List", - "Common.define.smartArt.textTargetList": "Target List", - "Common.define.smartArt.textTextCycle": "Text Cycle", - "Common.define.smartArt.textThemePictureAccent": "Theme Picture Accent", - "Common.define.smartArt.textThemePictureAlternatingAccent": "Theme Picture Alternating Accent", - "Common.define.smartArt.textThemePictureGrid": "Theme Picture Grid", - "Common.define.smartArt.textTitledMatrix": "Titled Matrix", - "Common.define.smartArt.textTitledPictureAccentList": "Titled Picture Accent List", - "Common.define.smartArt.textTitledPictureBlocks": "Titled Picture Blocks", - "Common.define.smartArt.textTitlePictureLineup": "Title Picture Lineup", - "Common.define.smartArt.textTrapezoidList": "Trapezoid List", - "Common.define.smartArt.textUpwardArrow": "Upward Arrow", - "Common.define.smartArt.textVaryingWidthList": "Varying Width List", - "Common.define.smartArt.textVerticalAccentList": "Vertical Accent List", - "Common.define.smartArt.textVerticalArrowList": "Vertical Arrow List", - "Common.define.smartArt.textVerticalBendingProcess": "Vertical Bending Process", - "Common.define.smartArt.textVerticalBlockList": "Vertical Block List", - "Common.define.smartArt.textVerticalBoxList": "Vertical Box List", - "Common.define.smartArt.textVerticalBracketList": "Vertical Bracket List", - "Common.define.smartArt.textVerticalBulletList": "Vertical Bullet List", - "Common.define.smartArt.textVerticalChevronList": "Vertical Chevron List", - "Common.define.smartArt.textVerticalCircleList": "Vertical Circle List", - "Common.define.smartArt.textVerticalCurvedList": "Vertical Curved List", - "Common.define.smartArt.textVerticalEquation": "Vertical Equation", - "Common.define.smartArt.textVerticalPictureAccentList": "Vertical Picture Accent List", - "Common.define.smartArt.textVerticalPictureList": "Vertical Picture List", - "Common.define.smartArt.textVerticalProcess": "Vertical Process", + "Common.define.smartArt.textTargetList": "Target list", + "Common.define.smartArt.textTextCycle": "Text cycle", + "Common.define.smartArt.textThemePictureAccent": "Theme picture accent", + "Common.define.smartArt.textThemePictureAlternatingAccent": "Theme picture alternating accent", + "Common.define.smartArt.textThemePictureGrid": "Theme picture grid", + "Common.define.smartArt.textTitledMatrix": "Titled matrix", + "Common.define.smartArt.textTitledPictureAccentList": "Titled picture accent list", + "Common.define.smartArt.textTitledPictureBlocks": "Titled picture blocks", + "Common.define.smartArt.textTitlePictureLineup": "Title picture lineup", + "Common.define.smartArt.textTrapezoidList": "Trapezoid list", + "Common.define.smartArt.textUpwardArrow": "Upward arrow", + "Common.define.smartArt.textVaryingWidthList": "Varying width list", + "Common.define.smartArt.textVerticalAccentList": "Vertical accent list", + "Common.define.smartArt.textVerticalArrowList": "Vertical arrow list", + "Common.define.smartArt.textVerticalBendingProcess": "Vertical bending process", + "Common.define.smartArt.textVerticalBlockList": "Vertical block list", + "Common.define.smartArt.textVerticalBoxList": "Vertical box list", + "Common.define.smartArt.textVerticalBracketList": "Vertical bracket list", + "Common.define.smartArt.textVerticalBulletList": "Vertical bullet list", + "Common.define.smartArt.textVerticalChevronList": "Vertical chevron list", + "Common.define.smartArt.textVerticalCircleList": "Vertical circle list", + "Common.define.smartArt.textVerticalCurvedList": "Vertical curved list", + "Common.define.smartArt.textVerticalEquation": "Vertical equation", + "Common.define.smartArt.textVerticalPictureAccentList": "Vertical picture accent list", + "Common.define.smartArt.textVerticalPictureList": "Vertical picture list", + "Common.define.smartArt.textVerticalProcess": "Vertical process", "Common.Translation.textMoreButton": "More", "Common.Translation.tipFileLocked": "Document is locked for editing. You can make changes and save it as local copy later.", "Common.Translation.tipFileReadOnly": "The file is read-only. To keep your changes, save the file with a new name or in a different location.", @@ -339,7 +339,7 @@ "Common.UI.ExtendedColorDialog.textHexErr": "The entered value is incorrect.
Please enter a value between 000000 and FFFFFF.", "Common.UI.ExtendedColorDialog.textNew": "New", "Common.UI.ExtendedColorDialog.textRGBErr": "The entered value is incorrect.
Please enter a numeric value between 0 and 255.", - "Common.UI.HSBColorPicker.textNoColor": "No Color", + "Common.UI.HSBColorPicker.textNoColor": "No color", "Common.UI.InputFieldBtnCalendar.textDate": "Select date", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Hide password", "Common.UI.InputFieldBtnPassword.textHintHold": "Press and hold to show password", @@ -468,13 +468,13 @@ "Common.Views.Comments.mniAuthorDesc": "Author Z to A", "Common.Views.Comments.mniDateAsc": "Oldest", "Common.Views.Comments.mniDateDesc": "Newest", - "Common.Views.Comments.mniFilterGroups": "Filter by Group", + "Common.Views.Comments.mniFilterGroups": "Filter by group", "Common.Views.Comments.mniPositionAsc": "From top", "Common.Views.Comments.mniPositionDesc": "From bottom", "Common.Views.Comments.textAdd": "Add", - "Common.Views.Comments.textAddComment": "Add Comment", - "Common.Views.Comments.textAddCommentToDoc": "Add Comment to Document", - "Common.Views.Comments.textAddReply": "Add Reply", + "Common.Views.Comments.textAddComment": "Add comment", + "Common.Views.Comments.textAddCommentToDoc": "Add comment to document", + "Common.Views.Comments.textAddReply": "Add reply", "Common.Views.Comments.textAll": "All", "Common.Views.Comments.textAnonym": "Guest", "Common.Views.Comments.textCancel": "Cancel", @@ -484,7 +484,7 @@ "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "Enter your comment here", "Common.Views.Comments.textHintAddComment": "Add comment", - "Common.Views.Comments.textOpenAgain": "Open Again", + "Common.Views.Comments.textOpenAgain": "Open again", "Common.Views.Comments.textReply": "Reply", "Common.Views.Comments.textResolve": "Resolve", "Common.Views.Comments.textResolved": "Resolved", @@ -496,7 +496,7 @@ "Common.Views.Comments.txtEmpty": "There are no comments in the document.", "Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again", "Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using the editor toolbar buttons and context menu actions will be performed within this editor tab only.

To copy or paste to or from applications outside the editor tab use the following keyboard combinations:", - "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste actions", + "Common.Views.CopyWarningDialog.textTitle": "Copy, cut and paste actions", "Common.Views.CopyWarningDialog.textToCopy": "for Copy", "Common.Views.CopyWarningDialog.textToCut": "for Cut", "Common.Views.CopyWarningDialog.textToPaste": "for Paste", @@ -510,18 +510,18 @@ "Common.Views.Draw.txtPen": "Pen", "Common.Views.Draw.txtSelect": "Select", "Common.Views.Draw.txtSize": "Size", - "Common.Views.ExternalDiagramEditor.textTitle": "Chart Editor", + "Common.Views.ExternalDiagramEditor.textTitle": "Chart editor", "Common.Views.ExternalEditor.textClose": "Close", "Common.Views.ExternalEditor.textSave": "Save & Exit", - "Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients", + "Common.Views.ExternalMergeEditor.textTitle": "Mail merge recipients", "Common.Views.ExternalOleEditor.textTitle": "Spreadsheet Editor", "Common.Views.Header.labelCoUsersDescr": "Users who are editing the file:", "Common.Views.Header.textAddFavorite": "Mark as favorite", "Common.Views.Header.textAdvSettings": "Advanced settings", "Common.Views.Header.textBack": "Open file location", - "Common.Views.Header.textCompactView": "Hide Toolbar", + "Common.Views.Header.textCompactView": "Hide toolbar", "Common.Views.Header.textHideLines": "Hide Rulers", - "Common.Views.Header.textHideStatusBar": "Hide Status Bar", + "Common.Views.Header.textHideStatusBar": "Hide status bar", "Common.Views.Header.textReadOnly": "Read only", "Common.Views.Header.textRemoveFavorite": "Remove from Favorites", "Common.Views.Header.textShare": "Share", @@ -578,7 +578,7 @@ "Common.Views.PluginPanel.textLoading": "Loading", "Common.Views.Plugins.groupCaption": "Plugins", "Common.Views.Plugins.strPlugins": "Plugins", - "Common.Views.Plugins.textBackgroundPlugins": "Background Plugins", + "Common.Views.Plugins.textBackgroundPlugins": "Background plugins", "Common.Views.Plugins.textSettings": "Settings", "Common.Views.Plugins.textStart": "Start", "Common.Views.Plugins.textStop": "Stop", @@ -595,22 +595,22 @@ "Common.Views.Protection.txtInvisibleSignature": "Add digital signature", "Common.Views.Protection.txtSignature": "Signature", "Common.Views.Protection.txtSignatureLine": "Add signature line", - "Common.Views.RecentFiles.txtOpenRecent": "Open Recent", + "Common.Views.RecentFiles.txtOpenRecent": "Open recent", "Common.Views.RenameDialog.textName": "File name", "Common.Views.RenameDialog.txtInvalidName": "The file name cannot contain any of the following characters: ", "Common.Views.ReviewChanges.hintNext": "To next change", "Common.Views.ReviewChanges.hintPrev": "To previous change", - "Common.Views.ReviewChanges.mniFromFile": "Document from File", - "Common.Views.ReviewChanges.mniFromStorage": "Document from Storage", + "Common.Views.ReviewChanges.mniFromFile": "Document from file", + "Common.Views.ReviewChanges.mniFromStorage": "Document from storage", "Common.Views.ReviewChanges.mniFromUrl": "Document from URL", - "Common.Views.ReviewChanges.mniSettings": "Comparison Settings", + "Common.Views.ReviewChanges.mniSettings": "Comparison settings", "Common.Views.ReviewChanges.strFast": "Fast", "Common.Views.ReviewChanges.strFastDesc": "Real-time co-editing. All changes are saved automatically.", "Common.Views.ReviewChanges.strStrict": "Strict", "Common.Views.ReviewChanges.strStrictDesc": "Use the 'Save' button to sync the changes you and others make.", "Common.Views.ReviewChanges.textEnable": "Enable", "Common.Views.ReviewChanges.textWarnTrackChanges": "Track Changes will be switched ON for all users with full access. The next time anyone opens the doc, Track Changes will remain enabled.", - "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Enable Track Changes for everyone?", + "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Enable track changes for everyone?", "Common.Views.ReviewChanges.tipAcceptCurrent": "Accept current change and move to next", "Common.Views.ReviewChanges.tipCoAuthMode": "Set co-editing mode", "Common.Views.ReviewChanges.tipCombine": "Combine current document with another one", @@ -627,9 +627,9 @@ "Common.Views.ReviewChanges.tipSetSpelling": "Spell checking", "Common.Views.ReviewChanges.tipSharing": "Manage document access rights", "Common.Views.ReviewChanges.txtAccept": "Accept", - "Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes", + "Common.Views.ReviewChanges.txtAcceptAll": "Accept all changes", "Common.Views.ReviewChanges.txtAcceptChanges": "Accept changes", - "Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Change", + "Common.Views.ReviewChanges.txtAcceptCurrent": "Accept current change", "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Close", "Common.Views.ReviewChanges.txtCoAuthMode": "Co-editing Mode", @@ -637,19 +637,19 @@ "Common.Views.ReviewChanges.txtCommentRemAll": "Delete all comments", "Common.Views.ReviewChanges.txtCommentRemCurrent": "Delete current comments", "Common.Views.ReviewChanges.txtCommentRemMy": "Delete my comments", - "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Delete My Current Comments", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Delete my current comments", "Common.Views.ReviewChanges.txtCommentRemove": "Delete", "Common.Views.ReviewChanges.txtCommentResolve": "Resolve", "Common.Views.ReviewChanges.txtCommentResolveAll": "Resolve all comments", "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resolve current comments", "Common.Views.ReviewChanges.txtCommentResolveMy": "Resolve my comments", - "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resolve My Current Comments", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resolve my current comments", "Common.Views.ReviewChanges.txtCompare": "Compare", "Common.Views.ReviewChanges.txtDocLang": "Language", "Common.Views.ReviewChanges.txtEditing": "Editing", "Common.Views.ReviewChanges.txtFinal": "All changes accepted {0}", "Common.Views.ReviewChanges.txtFinalCap": "Final", - "Common.Views.ReviewChanges.txtHistory": "Version History", + "Common.Views.ReviewChanges.txtHistory": "Version history", "Common.Views.ReviewChanges.txtMarkup": "All changes {0}", "Common.Views.ReviewChanges.txtMarkupCap": "Markup and balloons", "Common.Views.ReviewChanges.txtMarkupSimple": "All changes {0}
No balloons", @@ -666,9 +666,9 @@ "Common.Views.ReviewChanges.txtReject": "Reject", "Common.Views.ReviewChanges.txtRejectAll": "Reject All Changes", "Common.Views.ReviewChanges.txtRejectChanges": "Reject changes", - "Common.Views.ReviewChanges.txtRejectCurrent": "Reject Current Change", + "Common.Views.ReviewChanges.txtRejectCurrent": "Reject current change", "Common.Views.ReviewChanges.txtSharing": "Sharing", - "Common.Views.ReviewChanges.txtSpelling": "Spell Checking", + "Common.Views.ReviewChanges.txtSpelling": "Spell checking", "Common.Views.ReviewChanges.txtTurnon": "Track Changes", "Common.Views.ReviewChanges.txtView": "Display Mode", "Common.Views.ReviewChangesDialog.textTitle": "Review changes", @@ -681,15 +681,15 @@ "Common.Views.ReviewChangesDialog.txtRejectAll": "Reject all changes", "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Reject current change", "Common.Views.ReviewPopover.textAdd": "Add", - "Common.Views.ReviewPopover.textAddReply": "Add Reply", + "Common.Views.ReviewPopover.textAddReply": "Add reply", "Common.Views.ReviewPopover.textCancel": "Cancel", "Common.Views.ReviewPopover.textClose": "Close", "Common.Views.ReviewPopover.textEdit": "OK", "Common.Views.ReviewPopover.textEnterComment": "Enter your comment here", - "Common.Views.ReviewPopover.textFollowMove": "Follow Move", + "Common.Views.ReviewPopover.textFollowMove": "Follow move", "Common.Views.ReviewPopover.textMention": "+mention will provide access to the document and send an email", "Common.Views.ReviewPopover.textMentionNotify": "+mention will notify the user via email", - "Common.Views.ReviewPopover.textOpenAgain": "Open Again", + "Common.Views.ReviewPopover.textOpenAgain": "Open again", "Common.Views.ReviewPopover.textReply": "Reply", "Common.Views.ReviewPopover.textResolve": "Resolve", "Common.Views.ReviewPopover.textViewResolved": "You have no permission to reopen the comment", @@ -808,7 +808,7 @@ "DE.Controllers.Main.downloadMergeText": "Downloading...", "DE.Controllers.Main.downloadMergeTitle": "Downloading", "DE.Controllers.Main.downloadTextText": "Downloading document...", - "DE.Controllers.Main.downloadTitleText": "Downloading Document", + "DE.Controllers.Main.downloadTitleText": "Downloading document", "DE.Controllers.Main.errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please contact your Document Server administrator.", "DE.Controllers.Main.errorBadImageUrl": "Image URL is incorrect", "DE.Controllers.Main.errorCannotPasteImg": "We can't paste this image from the Clipboard, but you can save it to your device and \ninsert it from there, or you can copy the image without text and paste it into the document.", @@ -873,7 +873,7 @@ "DE.Controllers.Main.notcriticalErrorTitle": "Warning", "DE.Controllers.Main.openErrorText": "An error has occurred while opening the file.", "DE.Controllers.Main.openTextText": "Opening document...", - "DE.Controllers.Main.openTitleText": "Opening Document", + "DE.Controllers.Main.openTitleText": "Opening document", "DE.Controllers.Main.printTextText": "Printing document...", "DE.Controllers.Main.printTitleText": "Printing Document", "DE.Controllers.Main.reloadButtonText": "Reload Page", @@ -882,10 +882,10 @@ "DE.Controllers.Main.saveErrorText": "An error has occurred while saving the file.", "DE.Controllers.Main.saveErrorTextDesktop": "This file cannot be saved or created.
Possible reasons are:
1. The file is read-only.
2. The file is being edited by other users.
3. The disk is full or corrupted.", "DE.Controllers.Main.saveTextText": "Saving document...", - "DE.Controllers.Main.saveTitleText": "Saving Document", + "DE.Controllers.Main.saveTitleText": "Saving document", "DE.Controllers.Main.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.", - "DE.Controllers.Main.sendMergeText": "Sending Merge...", - "DE.Controllers.Main.sendMergeTitle": "Sending Merge", + "DE.Controllers.Main.sendMergeText": "Sending merge...", + "DE.Controllers.Main.sendMergeTitle": "Sending merge", "DE.Controllers.Main.splitDividerErrorText": "The number of rows must be a divisor of %1.", "DE.Controllers.Main.splitMaxColsErrorText": "The number of columns must be less than %1.", "DE.Controllers.Main.splitMaxRowsErrorText": "The number of rows must be less than %1.", @@ -935,98 +935,98 @@ "DE.Controllers.Main.txtCharts": "Charts", "DE.Controllers.Main.txtChoose": "Choose an item", "DE.Controllers.Main.txtClickToLoad": "Click to load image", - "DE.Controllers.Main.txtCurrentDocument": "Current Document", - "DE.Controllers.Main.txtDiagramTitle": "Chart Title", + "DE.Controllers.Main.txtCurrentDocument": "Current document", + "DE.Controllers.Main.txtDiagramTitle": "Chart title", "DE.Controllers.Main.txtEditingMode": "Set editing mode...", - "DE.Controllers.Main.txtEndOfFormula": "Unexpected End of Formula", + "DE.Controllers.Main.txtEndOfFormula": "Unexpected end of formula", "DE.Controllers.Main.txtEnterDate": "Enter a date", "DE.Controllers.Main.txtErrorLoadHistory": "History loading failed", - "DE.Controllers.Main.txtEvenPage": "Even Page", + "DE.Controllers.Main.txtEvenPage": "Even page", "DE.Controllers.Main.txtFiguredArrows": "Figured arrows", - "DE.Controllers.Main.txtFirstPage": "First Page", + "DE.Controllers.Main.txtFirstPage": "First page", "DE.Controllers.Main.txtFooter": "Footer", "DE.Controllers.Main.txtFormulaNotInTable": "The Formula Not In Table", "DE.Controllers.Main.txtHeader": "Header", "DE.Controllers.Main.txtHyperlink": "Hyperlink", - "DE.Controllers.Main.txtIndTooLarge": "Index Too Large", + "DE.Controllers.Main.txtIndTooLarge": "Index too large", "DE.Controllers.Main.txtLines": "Lines", - "DE.Controllers.Main.txtMainDocOnly": "Error! Main Document Only.", + "DE.Controllers.Main.txtMainDocOnly": "Error! Main document only.", "DE.Controllers.Main.txtMath": "Math", - "DE.Controllers.Main.txtMissArg": "Missing Argument", - "DE.Controllers.Main.txtMissOperator": "Missing Operator", + "DE.Controllers.Main.txtMissArg": "Missing argument", + "DE.Controllers.Main.txtMissOperator": "Missing operator", "DE.Controllers.Main.txtNeedSynchronize": "You have updates", "DE.Controllers.Main.txtNone": "None", "DE.Controllers.Main.txtNoTableOfContents": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.", "DE.Controllers.Main.txtNoTableOfFigures": "No table of figures entries found.", "DE.Controllers.Main.txtNoText": "Error! No text of specified style in document.", - "DE.Controllers.Main.txtNotInTable": "Is Not In Table", + "DE.Controllers.Main.txtNotInTable": "Is not in table", "DE.Controllers.Main.txtNotValidBookmark": "Error! Not a valid bookmark self-reference.", - "DE.Controllers.Main.txtOddPage": "Odd Page", + "DE.Controllers.Main.txtOddPage": "Odd page", "DE.Controllers.Main.txtOnPage": "on page", "DE.Controllers.Main.txtRectangles": "Rectangles", - "DE.Controllers.Main.txtSameAsPrev": "Same as Previous", + "DE.Controllers.Main.txtSameAsPrev": "Same as previous", "DE.Controllers.Main.txtSection": "-Section", "DE.Controllers.Main.txtSeries": "Series", - "DE.Controllers.Main.txtShape_accentBorderCallout1": "Line Callout 1 (Border and Accent Bar)", - "DE.Controllers.Main.txtShape_accentBorderCallout2": "Line Callout 2 (Border and Accent Bar)", - "DE.Controllers.Main.txtShape_accentBorderCallout3": "Line Callout 3 (Border and Accent Bar)", - "DE.Controllers.Main.txtShape_accentCallout1": "Line Callout 1 (Accent Bar)", - "DE.Controllers.Main.txtShape_accentCallout2": "Line Callout 2 (Accent Bar)", - "DE.Controllers.Main.txtShape_accentCallout3": "Line Callout 3 (Accent Bar)", - "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Back or Previous Button", - "DE.Controllers.Main.txtShape_actionButtonBeginning": "Beginning Button", - "DE.Controllers.Main.txtShape_actionButtonBlank": "Blank Button", - "DE.Controllers.Main.txtShape_actionButtonDocument": "Document Button", - "DE.Controllers.Main.txtShape_actionButtonEnd": "End Button", - "DE.Controllers.Main.txtShape_actionButtonForwardNext": "Forward or Next Button", - "DE.Controllers.Main.txtShape_actionButtonHelp": "Help Button", - "DE.Controllers.Main.txtShape_actionButtonHome": "Home Button", - "DE.Controllers.Main.txtShape_actionButtonInformation": "Information Button", - "DE.Controllers.Main.txtShape_actionButtonMovie": "Movie Button", - "DE.Controllers.Main.txtShape_actionButtonReturn": "Return Button", - "DE.Controllers.Main.txtShape_actionButtonSound": "Sound Button", + "DE.Controllers.Main.txtShape_accentBorderCallout1": "Line callout 1 (Border and accent bar)", + "DE.Controllers.Main.txtShape_accentBorderCallout2": "Line callout 2 (Border and accent bar)", + "DE.Controllers.Main.txtShape_accentBorderCallout3": "Line callout 3 (Border and accent bar)", + "DE.Controllers.Main.txtShape_accentCallout1": "Line callout 1 (Accent bar)", + "DE.Controllers.Main.txtShape_accentCallout2": "Line callout 2 (Accent bar)", + "DE.Controllers.Main.txtShape_accentCallout3": "Line callout 3 (Accent bar)", + "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Back or previous button", + "DE.Controllers.Main.txtShape_actionButtonBeginning": "Beginning button", + "DE.Controllers.Main.txtShape_actionButtonBlank": "Blank button", + "DE.Controllers.Main.txtShape_actionButtonDocument": "Document button", + "DE.Controllers.Main.txtShape_actionButtonEnd": "End button", + "DE.Controllers.Main.txtShape_actionButtonForwardNext": "Forward or next button", + "DE.Controllers.Main.txtShape_actionButtonHelp": "Help button", + "DE.Controllers.Main.txtShape_actionButtonHome": "Home button", + "DE.Controllers.Main.txtShape_actionButtonInformation": "Information button", + "DE.Controllers.Main.txtShape_actionButtonMovie": "Movie button", + "DE.Controllers.Main.txtShape_actionButtonReturn": "Return button", + "DE.Controllers.Main.txtShape_actionButtonSound": "Sound button", "DE.Controllers.Main.txtShape_arc": "Arc", - "DE.Controllers.Main.txtShape_bentArrow": "Bent Arrow", - "DE.Controllers.Main.txtShape_bentConnector5": "Elbow Connector", - "DE.Controllers.Main.txtShape_bentConnector5WithArrow": "Elbow Arrow Connector", - "DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Elbow Double-Arrow Connector", - "DE.Controllers.Main.txtShape_bentUpArrow": "Bent Up Arrow", + "DE.Controllers.Main.txtShape_bentArrow": "Bent arrow", + "DE.Controllers.Main.txtShape_bentConnector5": "Elbow connector", + "DE.Controllers.Main.txtShape_bentConnector5WithArrow": "Elbow arrow connector", + "DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Elbow double-arrow connector", + "DE.Controllers.Main.txtShape_bentUpArrow": "Bent up arrow", "DE.Controllers.Main.txtShape_bevel": "Bevel", - "DE.Controllers.Main.txtShape_blockArc": "Block Arc", - "DE.Controllers.Main.txtShape_borderCallout1": "Line Callout 1", - "DE.Controllers.Main.txtShape_borderCallout2": "Line Callout 2", - "DE.Controllers.Main.txtShape_borderCallout3": "Line Callout 3", - "DE.Controllers.Main.txtShape_bracePair": "Double Brace", - "DE.Controllers.Main.txtShape_callout1": "Line Callout 1 (No Border)", - "DE.Controllers.Main.txtShape_callout2": "Line Callout 2 (No Border)", - "DE.Controllers.Main.txtShape_callout3": "Line Callout 3 (No Border)", + "DE.Controllers.Main.txtShape_blockArc": "Block arc", + "DE.Controllers.Main.txtShape_borderCallout1": "Line callout 1", + "DE.Controllers.Main.txtShape_borderCallout2": "Line callout 2", + "DE.Controllers.Main.txtShape_borderCallout3": "Line callout 3", + "DE.Controllers.Main.txtShape_bracePair": "Double brace", + "DE.Controllers.Main.txtShape_callout1": "Line callout 1 (No border)", + "DE.Controllers.Main.txtShape_callout2": "Line callout 2 (No border)", + "DE.Controllers.Main.txtShape_callout3": "Line Callout 3 (No border)", "DE.Controllers.Main.txtShape_can": "Can", "DE.Controllers.Main.txtShape_chevron": "Chevron", "DE.Controllers.Main.txtShape_chord": "Chord", - "DE.Controllers.Main.txtShape_circularArrow": "Circular Arrow", + "DE.Controllers.Main.txtShape_circularArrow": "Circular arrow", "DE.Controllers.Main.txtShape_cloud": "Cloud", - "DE.Controllers.Main.txtShape_cloudCallout": "Cloud Callout", + "DE.Controllers.Main.txtShape_cloudCallout": "Cloud callout", "DE.Controllers.Main.txtShape_corner": "Corner", "DE.Controllers.Main.txtShape_cube": "Cube", - "DE.Controllers.Main.txtShape_curvedConnector3": "Curved Connector", - "DE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Curved Arrow Connector", - "DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Curved Double-Arrow Connector", - "DE.Controllers.Main.txtShape_curvedDownArrow": "Curved Down Arrow", - "DE.Controllers.Main.txtShape_curvedLeftArrow": "Curved Left Arrow", - "DE.Controllers.Main.txtShape_curvedRightArrow": "Curved Right Arrow", - "DE.Controllers.Main.txtShape_curvedUpArrow": "Curved Up Arrow", + "DE.Controllers.Main.txtShape_curvedConnector3": "Curved connector", + "DE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Curved arrow connector", + "DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Curved double-arrow connector", + "DE.Controllers.Main.txtShape_curvedDownArrow": "Curved down arrow", + "DE.Controllers.Main.txtShape_curvedLeftArrow": "Curved left arrow", + "DE.Controllers.Main.txtShape_curvedRightArrow": "Curved right arrow", + "DE.Controllers.Main.txtShape_curvedUpArrow": "Curved up arrow", "DE.Controllers.Main.txtShape_decagon": "Decagon", - "DE.Controllers.Main.txtShape_diagStripe": "Diagonal Stripe", + "DE.Controllers.Main.txtShape_diagStripe": "Diagonal stripe", "DE.Controllers.Main.txtShape_diamond": "Diamond", "DE.Controllers.Main.txtShape_dodecagon": "Dodecagon", "DE.Controllers.Main.txtShape_donut": "Donut", - "DE.Controllers.Main.txtShape_doubleWave": "Double Wave", - "DE.Controllers.Main.txtShape_downArrow": "Down Arrow", - "DE.Controllers.Main.txtShape_downArrowCallout": "Down Arrow Callout", + "DE.Controllers.Main.txtShape_doubleWave": "Double wave", + "DE.Controllers.Main.txtShape_downArrow": "Down arrow", + "DE.Controllers.Main.txtShape_downArrowCallout": "Down arrow callout", "DE.Controllers.Main.txtShape_ellipse": "Ellipse", - "DE.Controllers.Main.txtShape_ellipseRibbon": "Curved Down Ribbon", - "DE.Controllers.Main.txtShape_ellipseRibbon2": "Curved Up Ribbon", - "DE.Controllers.Main.txtShape_flowChartAlternateProcess": "Flowchart: Alternate Process", + "DE.Controllers.Main.txtShape_ellipseRibbon": "Curved down ribbon", + "DE.Controllers.Main.txtShape_ellipseRibbon2": "Curved up ribbon", + "DE.Controllers.Main.txtShape_flowChartAlternateProcess": "Flowchart: Alternate process", "DE.Controllers.Main.txtShape_flowChartCollate": "Flowchart: Collate", "DE.Controllers.Main.txtShape_flowChartConnector": "Flowchart: Connector", "DE.Controllers.Main.txtShape_flowChartDecision": "Flowchart: Decision", @@ -1035,56 +1035,56 @@ "DE.Controllers.Main.txtShape_flowChartDocument": "Flowchart: Document", "DE.Controllers.Main.txtShape_flowChartExtract": "Flowchart: Extract", "DE.Controllers.Main.txtShape_flowChartInputOutput": "Flowchart: Data", - "DE.Controllers.Main.txtShape_flowChartInternalStorage": "Flowchart: Internal Storage", - "DE.Controllers.Main.txtShape_flowChartMagneticDisk": "Flowchart: Magnetic Disk", - "DE.Controllers.Main.txtShape_flowChartMagneticDrum": "Flowchart: Direct Access Storage", - "DE.Controllers.Main.txtShape_flowChartMagneticTape": "Flowchart: Sequential Access Storage", - "DE.Controllers.Main.txtShape_flowChartManualInput": "Flowchart: Manual Input", - "DE.Controllers.Main.txtShape_flowChartManualOperation": "Flowchart: Manual Operation", + "DE.Controllers.Main.txtShape_flowChartInternalStorage": "Flowchart: Internal storage", + "DE.Controllers.Main.txtShape_flowChartMagneticDisk": "Flowchart: Magnetic disk", + "DE.Controllers.Main.txtShape_flowChartMagneticDrum": "Flowchart: Direct access storage", + "DE.Controllers.Main.txtShape_flowChartMagneticTape": "Flowchart: Sequential access storage", + "DE.Controllers.Main.txtShape_flowChartManualInput": "Flowchart: Manual input", + "DE.Controllers.Main.txtShape_flowChartManualOperation": "Flowchart: Manual operation", "DE.Controllers.Main.txtShape_flowChartMerge": "Flowchart: Merge", "DE.Controllers.Main.txtShape_flowChartMultidocument": "Flowchart: Multidocument ", - "DE.Controllers.Main.txtShape_flowChartOffpageConnector": "Flowchart: Off-page Connector", - "DE.Controllers.Main.txtShape_flowChartOnlineStorage": "Flowchart: Stored Data", + "DE.Controllers.Main.txtShape_flowChartOffpageConnector": "Flowchart: Off-page connector", + "DE.Controllers.Main.txtShape_flowChartOnlineStorage": "Flowchart: Stored data", "DE.Controllers.Main.txtShape_flowChartOr": "Flowchart: Or", - "DE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Flowchart: Predefined Process", + "DE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Flowchart: Predefined process", "DE.Controllers.Main.txtShape_flowChartPreparation": "Flowchart: Preparation", "DE.Controllers.Main.txtShape_flowChartProcess": "Flowchart: Process", "DE.Controllers.Main.txtShape_flowChartPunchedCard": "Flowchart: Card", - "DE.Controllers.Main.txtShape_flowChartPunchedTape": "Flowchart: Punched Tape", + "DE.Controllers.Main.txtShape_flowChartPunchedTape": "Flowchart: Punched tape", "DE.Controllers.Main.txtShape_flowChartSort": "Flowchart: Sort", - "DE.Controllers.Main.txtShape_flowChartSummingJunction": "Flowchart: Summing Junction", + "DE.Controllers.Main.txtShape_flowChartSummingJunction": "Flowchart: Summing junction", "DE.Controllers.Main.txtShape_flowChartTerminator": "Flowchart: Terminator", - "DE.Controllers.Main.txtShape_foldedCorner": "Folded Corner", + "DE.Controllers.Main.txtShape_foldedCorner": "Folded corner", "DE.Controllers.Main.txtShape_frame": "Frame", - "DE.Controllers.Main.txtShape_halfFrame": "Half Frame", + "DE.Controllers.Main.txtShape_halfFrame": "Half frame", "DE.Controllers.Main.txtShape_heart": "Heart", "DE.Controllers.Main.txtShape_heptagon": "Heptagon", "DE.Controllers.Main.txtShape_hexagon": "Hexagon", "DE.Controllers.Main.txtShape_homePlate": "Pentagon", - "DE.Controllers.Main.txtShape_horizontalScroll": "Horizontal Scroll", + "DE.Controllers.Main.txtShape_horizontalScroll": "Horizontal scroll", "DE.Controllers.Main.txtShape_irregularSeal1": "Explosion 1", "DE.Controllers.Main.txtShape_irregularSeal2": "Explosion 2", - "DE.Controllers.Main.txtShape_leftArrow": "Left Arrow", - "DE.Controllers.Main.txtShape_leftArrowCallout": "Left Arrow Callout", - "DE.Controllers.Main.txtShape_leftBrace": "Left Brace", - "DE.Controllers.Main.txtShape_leftBracket": "Left Bracket", - "DE.Controllers.Main.txtShape_leftRightArrow": "Left Right Arrow", - "DE.Controllers.Main.txtShape_leftRightArrowCallout": "Left Right Arrow Callout", - "DE.Controllers.Main.txtShape_leftRightUpArrow": "Left Right Up Arrow", - "DE.Controllers.Main.txtShape_leftUpArrow": "Left Up Arrow", - "DE.Controllers.Main.txtShape_lightningBolt": "Lightning Bolt", + "DE.Controllers.Main.txtShape_leftArrow": "Left arrow", + "DE.Controllers.Main.txtShape_leftArrowCallout": "Left arrow callout", + "DE.Controllers.Main.txtShape_leftBrace": "Left brace", + "DE.Controllers.Main.txtShape_leftBracket": "Left bracket", + "DE.Controllers.Main.txtShape_leftRightArrow": "Left right arrow", + "DE.Controllers.Main.txtShape_leftRightArrowCallout": "Left right arrow callout", + "DE.Controllers.Main.txtShape_leftRightUpArrow": "Left right up arrow", + "DE.Controllers.Main.txtShape_leftUpArrow": "Left up arrow", + "DE.Controllers.Main.txtShape_lightningBolt": "Lightning bolt", "DE.Controllers.Main.txtShape_line": "Line", "DE.Controllers.Main.txtShape_lineWithArrow": "Arrow", - "DE.Controllers.Main.txtShape_lineWithTwoArrows": "Double Arrow", + "DE.Controllers.Main.txtShape_lineWithTwoArrows": "Double arrow", "DE.Controllers.Main.txtShape_mathDivide": "Division", "DE.Controllers.Main.txtShape_mathEqual": "Equal", "DE.Controllers.Main.txtShape_mathMinus": "Minus", "DE.Controllers.Main.txtShape_mathMultiply": "Multiply", - "DE.Controllers.Main.txtShape_mathNotEqual": "Not Equal", + "DE.Controllers.Main.txtShape_mathNotEqual": "Not equal", "DE.Controllers.Main.txtShape_mathPlus": "Plus", "DE.Controllers.Main.txtShape_moon": "Moon", - "DE.Controllers.Main.txtShape_noSmoking": "\"No\" Symbol", - "DE.Controllers.Main.txtShape_notchedRightArrow": "Notched Right Arrow", + "DE.Controllers.Main.txtShape_noSmoking": "\"No\" symbol", + "DE.Controllers.Main.txtShape_notchedRightArrow": "Notched right arrow", "DE.Controllers.Main.txtShape_octagon": "Octagon", "DE.Controllers.Main.txtShape_parallelogram": "Parallelogram", "DE.Controllers.Main.txtShape_pentagon": "Pentagon", @@ -1093,25 +1093,25 @@ "DE.Controllers.Main.txtShape_plus": "Plus", "DE.Controllers.Main.txtShape_polyline1": "Scribble", "DE.Controllers.Main.txtShape_polyline2": "Freeform", - "DE.Controllers.Main.txtShape_quadArrow": "Quad Arrow", - "DE.Controllers.Main.txtShape_quadArrowCallout": "Quad Arrow Callout", + "DE.Controllers.Main.txtShape_quadArrow": "Quad arrow", + "DE.Controllers.Main.txtShape_quadArrowCallout": "Quad arrow callout", "DE.Controllers.Main.txtShape_rect": "Rectangle", - "DE.Controllers.Main.txtShape_ribbon": "Down Ribbon", - "DE.Controllers.Main.txtShape_ribbon2": "Up Ribbon", + "DE.Controllers.Main.txtShape_ribbon": "Down ribbon", + "DE.Controllers.Main.txtShape_ribbon2": "Up ribbon", "DE.Controllers.Main.txtShape_rightArrow": "Right Arrow", - "DE.Controllers.Main.txtShape_rightArrowCallout": "Right Arrow Callout", - "DE.Controllers.Main.txtShape_rightBrace": "Right Brace", - "DE.Controllers.Main.txtShape_rightBracket": "Right Bracket", - "DE.Controllers.Main.txtShape_round1Rect": "Round Single Corner Rectangle", - "DE.Controllers.Main.txtShape_round2DiagRect": "Round Diagonal Corner Rectangle", - "DE.Controllers.Main.txtShape_round2SameRect": "Round Same Side Corner Rectangle", - "DE.Controllers.Main.txtShape_roundRect": "Round Corner Rectangle", - "DE.Controllers.Main.txtShape_rtTriangle": "Right Triangle", - "DE.Controllers.Main.txtShape_smileyFace": "Smiley Face", - "DE.Controllers.Main.txtShape_snip1Rect": "Snip Single Corner Rectangle", - "DE.Controllers.Main.txtShape_snip2DiagRect": "Snip Diagonal Corner Rectangle", - "DE.Controllers.Main.txtShape_snip2SameRect": "Snip Same Side Corner Rectangle", - "DE.Controllers.Main.txtShape_snipRoundRect": "Snip and Round Single Corner Rectangle", + "DE.Controllers.Main.txtShape_rightArrowCallout": "Right arrow callout", + "DE.Controllers.Main.txtShape_rightBrace": "Right brace", + "DE.Controllers.Main.txtShape_rightBracket": "Right bracket", + "DE.Controllers.Main.txtShape_round1Rect": "Round single corner rectangle", + "DE.Controllers.Main.txtShape_round2DiagRect": "Round diagonal corner rectangle", + "DE.Controllers.Main.txtShape_round2SameRect": "Round same side corner rectangle", + "DE.Controllers.Main.txtShape_roundRect": "Round corner rectangle", + "DE.Controllers.Main.txtShape_rtTriangle": "Right triangle", + "DE.Controllers.Main.txtShape_smileyFace": "Smiley face", + "DE.Controllers.Main.txtShape_snip1Rect": "Snip single corner rectangle", + "DE.Controllers.Main.txtShape_snip2DiagRect": "Snip diagonal corner rectangle", + "DE.Controllers.Main.txtShape_snip2SameRect": "Snip same side corner rectangle", + "DE.Controllers.Main.txtShape_snipRoundRect": "Snip and round single corner rectangle", "DE.Controllers.Main.txtShape_spline": "Curve", "DE.Controllers.Main.txtShape_star10": "10-Point Star", "DE.Controllers.Main.txtShape_star12": "12-Point Star", @@ -1123,22 +1123,22 @@ "DE.Controllers.Main.txtShape_star6": "6-Point Star", "DE.Controllers.Main.txtShape_star7": "7-Point Star", "DE.Controllers.Main.txtShape_star8": "8-Point Star", - "DE.Controllers.Main.txtShape_stripedRightArrow": "Striped Right Arrow", + "DE.Controllers.Main.txtShape_stripedRightArrow": "Striped right arrow", "DE.Controllers.Main.txtShape_sun": "Sun", "DE.Controllers.Main.txtShape_teardrop": "Teardrop", - "DE.Controllers.Main.txtShape_textRect": "Text Box", + "DE.Controllers.Main.txtShape_textRect": "Text box", "DE.Controllers.Main.txtShape_trapezoid": "Trapezoid", "DE.Controllers.Main.txtShape_triangle": "Triangle", - "DE.Controllers.Main.txtShape_upArrow": "Up Arrow", - "DE.Controllers.Main.txtShape_upArrowCallout": "Up Arrow Callout", - "DE.Controllers.Main.txtShape_upDownArrow": "Up Down Arrow", - "DE.Controllers.Main.txtShape_uturnArrow": "U-Turn Arrow", - "DE.Controllers.Main.txtShape_verticalScroll": "Vertical Scroll", + "DE.Controllers.Main.txtShape_upArrow": "Up arrow", + "DE.Controllers.Main.txtShape_upArrowCallout": "Up arrow callout", + "DE.Controllers.Main.txtShape_upDownArrow": "Up down arrow", + "DE.Controllers.Main.txtShape_uturnArrow": "U-Turn arrow", + "DE.Controllers.Main.txtShape_verticalScroll": "Vertical scroll", "DE.Controllers.Main.txtShape_wave": "Wave", - "DE.Controllers.Main.txtShape_wedgeEllipseCallout": "Oval Callout", - "DE.Controllers.Main.txtShape_wedgeRectCallout": "Rectangular Callout", - "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Rounded Rectangular Callout", - "DE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons", + "DE.Controllers.Main.txtShape_wedgeEllipseCallout": "Oval сallout", + "DE.Controllers.Main.txtShape_wedgeRectCallout": "Rectangular callout", + "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Rounded rectangular callout", + "DE.Controllers.Main.txtStarsRibbons": "Stars & ribbons", "DE.Controllers.Main.txtStyle_Caption": "Caption", "DE.Controllers.Main.txtStyle_endnote_text": "Endnote text", "DE.Controllers.Main.txtStyle_footnote_text": "Footnote text", @@ -1151,24 +1151,24 @@ "DE.Controllers.Main.txtStyle_Heading_7": "Heading 7", "DE.Controllers.Main.txtStyle_Heading_8": "Heading 8", "DE.Controllers.Main.txtStyle_Heading_9": "Heading 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Intense Quote", - "DE.Controllers.Main.txtStyle_List_Paragraph": "List Paragraph", - "DE.Controllers.Main.txtStyle_No_Spacing": "No Spacing", + "DE.Controllers.Main.txtStyle_Intense_Quote": "Intense quote", + "DE.Controllers.Main.txtStyle_List_Paragraph": "List paragraph", + "DE.Controllers.Main.txtStyle_No_Spacing": "No spacing", "DE.Controllers.Main.txtStyle_Normal": "Normal", "DE.Controllers.Main.txtStyle_Quote": "Quote", "DE.Controllers.Main.txtStyle_Subtitle": "Subtitle", "DE.Controllers.Main.txtStyle_Title": "Title", - "DE.Controllers.Main.txtSyntaxError": "Syntax Error", - "DE.Controllers.Main.txtTableInd": "Table Index Cannot be Zero", - "DE.Controllers.Main.txtTableOfContents": "Table of Contents", + "DE.Controllers.Main.txtSyntaxError": "Syntax error", + "DE.Controllers.Main.txtTableInd": "Table index cannot be zero", + "DE.Controllers.Main.txtTableOfContents": "Table of contents", "DE.Controllers.Main.txtTableOfFigures": "Table of figures", "DE.Controllers.Main.txtTOCHeading": "TOC Heading", - "DE.Controllers.Main.txtTooLarge": "Number Too Large To Format", + "DE.Controllers.Main.txtTooLarge": "Number too large to format", "DE.Controllers.Main.txtTypeEquation": "Type an equation here.", - "DE.Controllers.Main.txtUndefBookmark": "Undefined Bookmark", + "DE.Controllers.Main.txtUndefBookmark": "Undefined bookmark", "DE.Controllers.Main.txtXAxis": "X Axis", "DE.Controllers.Main.txtYAxis": "Y Axis", - "DE.Controllers.Main.txtZeroDivide": "Zero Divide", + "DE.Controllers.Main.txtZeroDivide": "Zero divide", "DE.Controllers.Main.unknownErrorText": "Unknown error.", "DE.Controllers.Main.unsupportedBrowserErrorText": "Your browser is not supported.", "DE.Controllers.Main.uploadDocExtMessage": "Unknown document format.", @@ -1178,7 +1178,7 @@ "DE.Controllers.Main.uploadImageFileCountMessage": "No images uploaded.", "DE.Controllers.Main.uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", "DE.Controllers.Main.uploadImageTextText": "Uploading image...", - "DE.Controllers.Main.uploadImageTitleText": "Uploading Image", + "DE.Controllers.Main.uploadImageTitleText": "Uploading image", "DE.Controllers.Main.waitText": "Please, wait...", "DE.Controllers.Main.warnBrowserIE9": "The application has low capabilities on IE9. Use IE10 or higher", "DE.Controllers.Main.warnBrowserZoom": "Your browser current zoom setting is not fully supported. Please reset to the default zoom by pressing Ctrl+0.", @@ -1216,7 +1216,7 @@ "DE.Controllers.Toolbar.textBracket": "Brackets", "DE.Controllers.Toolbar.textConvertFormDownload": "Download file as a fillable PDF form to be able to fill it out.", "DE.Controllers.Toolbar.textConvertFormSave": "Save file as a fillable PDF form to be able to fill it out.", - "DE.Controllers.Toolbar.textDownloadPdf": "Download pdf", + "DE.Controllers.Toolbar.textDownloadPdf": "Download PDF", "DE.Controllers.Toolbar.textEmptyImgUrl": "You need to specify image URL.", "DE.Controllers.Toolbar.textEmptyMMergeUrl": "You need to specify URL.", "DE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.
Please enter a numeric value between 1 and 300", @@ -1225,13 +1225,13 @@ "DE.Controllers.Toolbar.textGroup": "Group", "DE.Controllers.Toolbar.textInsert": "Insert", "DE.Controllers.Toolbar.textIntegral": "Integrals", - "DE.Controllers.Toolbar.textLargeOperator": "Large Operators", - "DE.Controllers.Toolbar.textLimitAndLog": "Limits and Logarithms", + "DE.Controllers.Toolbar.textLargeOperator": "Large operators", + "DE.Controllers.Toolbar.textLimitAndLog": "Limits and logarithms", "DE.Controllers.Toolbar.textMatrix": "Matrices", "DE.Controllers.Toolbar.textOperator": "Operators", "DE.Controllers.Toolbar.textRadical": "Radicals", - "DE.Controllers.Toolbar.textRecentlyUsed": "Recently Used", - "DE.Controllers.Toolbar.textSavePdf": "Save as pdf", + "DE.Controllers.Toolbar.textRecentlyUsed": "Recently used", + "DE.Controllers.Toolbar.textSavePdf": "Save as PDF", "DE.Controllers.Toolbar.textScript": "Scripts", "DE.Controllers.Toolbar.textSymbols": "Symbols", "DE.Controllers.Toolbar.textTabForms": "Forms", @@ -1543,7 +1543,7 @@ "DE.Controllers.Toolbar.txtSymbol_therefore": "Therefore", "DE.Controllers.Toolbar.txtSymbol_theta": "Theta", "DE.Controllers.Toolbar.txtSymbol_times": "Multiplication sign", - "DE.Controllers.Toolbar.txtSymbol_uparrow": "Up arrow", + "DE.Controllers.Toolbar.txtSymbol_uparrow": "Up Arrow", "DE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", "DE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon variant", "DE.Controllers.Toolbar.txtSymbol_varphi": "Phi variant", @@ -1607,17 +1607,17 @@ "DE.Views.ChartSettings.text3dRotation": "3D Rotation", "DE.Views.ChartSettings.textAdvanced": "Show advanced settings", "DE.Views.ChartSettings.textAutoscale": "Autoscale", - "DE.Views.ChartSettings.textChartType": "Change Chart Type", - "DE.Views.ChartSettings.textDefault": "Default Rotation", + "DE.Views.ChartSettings.textChartType": "Change chart type", + "DE.Views.ChartSettings.textDefault": "Default rotation", "DE.Views.ChartSettings.textDown": "Down", - "DE.Views.ChartSettings.textEditData": "Edit Data", + "DE.Views.ChartSettings.textEditData": "Edit data", "DE.Views.ChartSettings.textHeight": "Height", "DE.Views.ChartSettings.textLeft": "Left", "DE.Views.ChartSettings.textNarrow": "Narrow field of view", "DE.Views.ChartSettings.textOriginalSize": "Actual Size", "DE.Views.ChartSettings.textPerspective": "Perspective", "DE.Views.ChartSettings.textRight": "Right", - "DE.Views.ChartSettings.textRightAngle": "Right Angle Axes", + "DE.Views.ChartSettings.textRightAngle": "Right angle axes", "DE.Views.ChartSettings.textSize": "Size", "DE.Views.ChartSettings.textStyle": "Style", "DE.Views.ChartSettings.textUndock": "Undock from panel", @@ -1627,9 +1627,9 @@ "DE.Views.ChartSettings.textWrap": "Wrapping Style", "DE.Views.ChartSettings.textX": "X rotation", "DE.Views.ChartSettings.textY": "Y rotation", - "DE.Views.ChartSettings.txtBehind": "Behind Text", - "DE.Views.ChartSettings.txtInFront": "In Front of Text", - "DE.Views.ChartSettings.txtInline": "In Line with Text", + "DE.Views.ChartSettings.txtBehind": "Behind text", + "DE.Views.ChartSettings.txtInFront": "In front of Text", + "DE.Views.ChartSettings.txtInline": "In line with text", "DE.Views.ChartSettings.txtSquare": "Square", "DE.Views.ChartSettings.txtThrough": "Through", "DE.Views.ChartSettings.txtTight": "Tight", @@ -1718,7 +1718,7 @@ "DE.Views.DateTimeDialog.textFormat": "Formats", "DE.Views.DateTimeDialog.textLang": "Language", "DE.Views.DateTimeDialog.textUpdate": "Update automatically", - "DE.Views.DateTimeDialog.txtTitle": "Date & Time", + "DE.Views.DateTimeDialog.txtTitle": "Date & time", "DE.Views.DocProtection.hintProtectDoc": "Protect document", "DE.Views.DocProtection.txtDocProtectedComment": "Document is protected.
You may only insert comments to this document.", "DE.Views.DocProtection.txtDocProtectedForms": "Document is protected.
You may only fill in forms in this document.", @@ -1726,21 +1726,21 @@ "DE.Views.DocProtection.txtDocProtectedView": "Document is protected.
You may only view this document.", "DE.Views.DocProtection.txtDocUnlockDescription": "Enter a password to unprotect document", "DE.Views.DocProtection.txtProtectDoc": "Protect Document", - "DE.Views.DocProtection.txtUnlockTitle": "Unprotect Document", + "DE.Views.DocProtection.txtUnlockTitle": "Unprotect document", "DE.Views.DocumentHolder.aboveText": "Above", "DE.Views.DocumentHolder.addCommentText": "Add comment", - "DE.Views.DocumentHolder.advancedDropCapText": "Drop Cap Settings", - "DE.Views.DocumentHolder.advancedEquationText": "Equation Settings", - "DE.Views.DocumentHolder.advancedFrameText": "Frame Advanced Settings", + "DE.Views.DocumentHolder.advancedDropCapText": "Drop cap settings", + "DE.Views.DocumentHolder.advancedEquationText": "Equation settings", + "DE.Views.DocumentHolder.advancedFrameText": "Frame advanced settings", "DE.Views.DocumentHolder.advancedParagraphText": "Paragraph advanced settings", "DE.Views.DocumentHolder.advancedTableText": "Table advanced settings", - "DE.Views.DocumentHolder.advancedText": "Advanced Settings", + "DE.Views.DocumentHolder.advancedText": "Advanced settings", "DE.Views.DocumentHolder.alignmentText": "Alignment", "DE.Views.DocumentHolder.allLinearText": "All - Linear", "DE.Views.DocumentHolder.allProfText": "All - Professional", "DE.Views.DocumentHolder.belowText": "Below", "DE.Views.DocumentHolder.breakBeforeText": "Page break before", - "DE.Views.DocumentHolder.bulletsText": "Bullets and Numbering", + "DE.Views.DocumentHolder.bulletsText": "Bullets and numbering", "DE.Views.DocumentHolder.cellAlignText": "Cell vertical alignment", "DE.Views.DocumentHolder.cellText": "Cell", "DE.Views.DocumentHolder.centerText": "Center", @@ -1748,32 +1748,32 @@ "DE.Views.DocumentHolder.columnText": "Column", "DE.Views.DocumentHolder.currLinearText": "Current - Linear", "DE.Views.DocumentHolder.currProfText": "Current - Professional", - "DE.Views.DocumentHolder.deleteColumnText": "Delete Column", - "DE.Views.DocumentHolder.deleteRowText": "Delete Row", - "DE.Views.DocumentHolder.deleteTableText": "Delete Table", + "DE.Views.DocumentHolder.deleteColumnText": "Delete column", + "DE.Views.DocumentHolder.deleteRowText": "Delete row", + "DE.Views.DocumentHolder.deleteTableText": "Delete table", "DE.Views.DocumentHolder.deleteText": "Delete", - "DE.Views.DocumentHolder.direct270Text": "Rotate Text Up", - "DE.Views.DocumentHolder.direct90Text": "Rotate Text Down", + "DE.Views.DocumentHolder.direct270Text": "Rotate text up", + "DE.Views.DocumentHolder.direct90Text": "Rotate text down", "DE.Views.DocumentHolder.directHText": "Horizontal", "DE.Views.DocumentHolder.directionText": "Text direction", "DE.Views.DocumentHolder.editChartText": "Edit data", "DE.Views.DocumentHolder.editFooterText": "Edit footer", "DE.Views.DocumentHolder.editHeaderText": "Edit header", - "DE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink", + "DE.Views.DocumentHolder.editHyperlinkText": "Edit hyperlink", "DE.Views.DocumentHolder.eqToDisplayText": "Change to Display", "DE.Views.DocumentHolder.eqToInlineText": "Change to Inline", "DE.Views.DocumentHolder.guestText": "Guest", - "DE.Views.DocumentHolder.hideEqToolbar": "Hide Equation Toolbar", + "DE.Views.DocumentHolder.hideEqToolbar": "Hide equation toolbar", "DE.Views.DocumentHolder.hyperlinkText": "Hyperlink", "DE.Views.DocumentHolder.ignoreAllSpellText": "Ignore all", "DE.Views.DocumentHolder.ignoreSpellText": "Ignore", "DE.Views.DocumentHolder.imageText": "Image advanced settings", - "DE.Views.DocumentHolder.insertColumnLeftText": "Column Left", - "DE.Views.DocumentHolder.insertColumnRightText": "Column Right", + "DE.Views.DocumentHolder.insertColumnLeftText": "Column left", + "DE.Views.DocumentHolder.insertColumnRightText": "Column right", "DE.Views.DocumentHolder.insertColumnText": "Insert Column", - "DE.Views.DocumentHolder.insertRowAboveText": "Row Above", - "DE.Views.DocumentHolder.insertRowBelowText": "Row Below", - "DE.Views.DocumentHolder.insertRowText": "Insert Row", + "DE.Views.DocumentHolder.insertRowAboveText": "Row above", + "DE.Views.DocumentHolder.insertRowBelowText": "Row below", + "DE.Views.DocumentHolder.insertRowText": "Insert row", "DE.Views.DocumentHolder.insertText": "Insert", "DE.Views.DocumentHolder.keepLinesText": "Keep lines together", "DE.Views.DocumentHolder.langText": "Select language", @@ -1786,21 +1786,21 @@ "DE.Views.DocumentHolder.notcriticalErrorTitle": "Warning", "DE.Views.DocumentHolder.originalSizeText": "Actual size", "DE.Views.DocumentHolder.paragraphText": "Paragraph", - "DE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink", + "DE.Views.DocumentHolder.removeHyperlinkText": "Remove hyperlink", "DE.Views.DocumentHolder.rightText": "Right", "DE.Views.DocumentHolder.rowText": "Row", "DE.Views.DocumentHolder.saveStyleText": "Create new style", - "DE.Views.DocumentHolder.selectCellText": "Select Cell", - "DE.Views.DocumentHolder.selectColumnText": "Select Column", - "DE.Views.DocumentHolder.selectRowText": "Select Row", - "DE.Views.DocumentHolder.selectTableText": "Select Table", + "DE.Views.DocumentHolder.selectCellText": "Select cell", + "DE.Views.DocumentHolder.selectColumnText": "Select column", + "DE.Views.DocumentHolder.selectRowText": "Select row", + "DE.Views.DocumentHolder.selectTableText": "Select table", "DE.Views.DocumentHolder.selectText": "Select", "DE.Views.DocumentHolder.shapeText": "Shape advanced settings", - "DE.Views.DocumentHolder.showEqToolbar": "Show Equation Toolbar", + "DE.Views.DocumentHolder.showEqToolbar": "Show equation toolbar", "DE.Views.DocumentHolder.spellcheckText": "Spellcheck", "DE.Views.DocumentHolder.splitCellsText": "Split cell...", "DE.Views.DocumentHolder.splitCellTitleText": "Split Cell", - "DE.Views.DocumentHolder.strDelete": "Remove Signature", + "DE.Views.DocumentHolder.strDelete": "Remove signature", "DE.Views.DocumentHolder.strDetails": "Signature Details", "DE.Views.DocumentHolder.strSetup": "Signature Setup", "DE.Views.DocumentHolder.strSign": "Sign", @@ -1809,10 +1809,10 @@ "DE.Views.DocumentHolder.textAccept": "Accept change", "DE.Views.DocumentHolder.textAlign": "Align", "DE.Views.DocumentHolder.textArrange": "Arrange", - "DE.Views.DocumentHolder.textArrangeBack": "Send to Background", - "DE.Views.DocumentHolder.textArrangeBackward": "Send Backward", - "DE.Views.DocumentHolder.textArrangeForward": "Bring Forward", - "DE.Views.DocumentHolder.textArrangeFront": "Bring to Foreground", + "DE.Views.DocumentHolder.textArrangeBack": "Send to background", + "DE.Views.DocumentHolder.textArrangeBackward": "Send backward", + "DE.Views.DocumentHolder.textArrangeForward": "Bring forward", + "DE.Views.DocumentHolder.textArrangeFront": "Bring to foreground", "DE.Views.DocumentHolder.textCells": "Cells", "DE.Views.DocumentHolder.textCol": "Delete entire column", "DE.Views.DocumentHolder.textContentControls": "Content control", @@ -1825,20 +1825,20 @@ "DE.Views.DocumentHolder.textDistributeCols": "Distribute columns", "DE.Views.DocumentHolder.textDistributeRows": "Distribute rows", "DE.Views.DocumentHolder.textEditControls": "Content control settings", - "DE.Views.DocumentHolder.textEditPoints": "Edit Points", + "DE.Views.DocumentHolder.textEditPoints": "Edit points", "DE.Views.DocumentHolder.textEditWrapBoundary": "Edit wrap boundary", - "DE.Views.DocumentHolder.textFlipH": "Flip Horizontally", - "DE.Views.DocumentHolder.textFlipV": "Flip Vertically", + "DE.Views.DocumentHolder.textFlipH": "Flip horizontally", + "DE.Views.DocumentHolder.textFlipV": "Flip vertically", "DE.Views.DocumentHolder.textFollow": "Follow move", - "DE.Views.DocumentHolder.textFromFile": "From File", - "DE.Views.DocumentHolder.textFromStorage": "From Storage", + "DE.Views.DocumentHolder.textFromFile": "From file", + "DE.Views.DocumentHolder.textFromStorage": "From storage", "DE.Views.DocumentHolder.textFromUrl": "From URL", "DE.Views.DocumentHolder.textIndents": "Adjust list indents", "DE.Views.DocumentHolder.textJoinList": "Join to previous list", "DE.Views.DocumentHolder.textLeft": "Shift cells left", "DE.Views.DocumentHolder.textNest": "Nest table", - "DE.Views.DocumentHolder.textNextPage": "Next Page", - "DE.Views.DocumentHolder.textNumberingValue": "Numbering Value", + "DE.Views.DocumentHolder.textNextPage": "Next page", + "DE.Views.DocumentHolder.textNumberingValue": "Numbering value", "DE.Views.DocumentHolder.textPaste": "Paste", "DE.Views.DocumentHolder.textPrevPage": "Previous Page", "DE.Views.DocumentHolder.textRefreshField": "Update field", @@ -1846,11 +1846,11 @@ "DE.Views.DocumentHolder.textRemCheckBox": "Remove Checkbox", "DE.Views.DocumentHolder.textRemComboBox": "Remove Combo Box", "DE.Views.DocumentHolder.textRemDropdown": "Remove Dropdown", - "DE.Views.DocumentHolder.textRemField": "Remove Text Field", + "DE.Views.DocumentHolder.textRemField": "Remove text field", "DE.Views.DocumentHolder.textRemove": "Remove", "DE.Views.DocumentHolder.textRemoveControl": "Remove content control", - "DE.Views.DocumentHolder.textRemPicture": "Remove Image", - "DE.Views.DocumentHolder.textRemRadioBox": "Remove Radio Button", + "DE.Views.DocumentHolder.textRemPicture": "Remove image", + "DE.Views.DocumentHolder.textRemRadioBox": "Remove Radio button", "DE.Views.DocumentHolder.textReplace": "Replace image", "DE.Views.DocumentHolder.textRotate": "Rotate", "DE.Views.DocumentHolder.textRotate270": "Rotate 90° Counterclockwise", @@ -1859,16 +1859,16 @@ "DE.Views.DocumentHolder.textSaveAsPicture": "Save as picture", "DE.Views.DocumentHolder.textSeparateList": "Separate list", "DE.Views.DocumentHolder.textSettings": "Settings", - "DE.Views.DocumentHolder.textSeveral": "Several Rows/Columns", - "DE.Views.DocumentHolder.textShapeAlignBottom": "Align Bottom", - "DE.Views.DocumentHolder.textShapeAlignCenter": "Align Center", - "DE.Views.DocumentHolder.textShapeAlignLeft": "Align Left", - "DE.Views.DocumentHolder.textShapeAlignMiddle": "Align Middle", - "DE.Views.DocumentHolder.textShapeAlignRight": "Align Right", - "DE.Views.DocumentHolder.textShapeAlignTop": "Align Top", + "DE.Views.DocumentHolder.textSeveral": "Several rows/columns", + "DE.Views.DocumentHolder.textShapeAlignBottom": "Align bottom", + "DE.Views.DocumentHolder.textShapeAlignCenter": "Align center", + "DE.Views.DocumentHolder.textShapeAlignLeft": "Align left", + "DE.Views.DocumentHolder.textShapeAlignMiddle": "Align middle", + "DE.Views.DocumentHolder.textShapeAlignRight": "Align right", + "DE.Views.DocumentHolder.textShapeAlignTop": "Align top", "DE.Views.DocumentHolder.textStartNewList": "Start new list", "DE.Views.DocumentHolder.textStartNumberingFrom": "Set numbering value", - "DE.Views.DocumentHolder.textTitleCellsRemove": "Delete Cells", + "DE.Views.DocumentHolder.textTitleCellsRemove": "Delete cells", "DE.Views.DocumentHolder.textTOC": "Table of contents", "DE.Views.DocumentHolder.textTOCSettings": "Table of contents settings", "DE.Views.DocumentHolder.textUndo": "Undo", @@ -1932,7 +1932,7 @@ "DE.Views.DocumentHolder.txtInsertCaption": "Insert caption", "DE.Views.DocumentHolder.txtInsertEqAfter": "Insert equation after", "DE.Views.DocumentHolder.txtInsertEqBefore": "Insert equation before", - "DE.Views.DocumentHolder.txtInsImage": "Insert image from File", + "DE.Views.DocumentHolder.txtInsImage": "Insert image from file", "DE.Views.DocumentHolder.txtInsImageUrl": "Insert image from URL", "DE.Views.DocumentHolder.txtKeepTextOnly": "Keep text only", "DE.Views.DocumentHolder.txtLimitChange": "Change limits location", @@ -2007,8 +2007,8 @@ "DE.Views.DropcapSettingsAdvanced.textRelative": "Relative to", "DE.Views.DropcapSettingsAdvanced.textRight": "Right", "DE.Views.DropcapSettingsAdvanced.textRowHeight": "Height in rows", - "DE.Views.DropcapSettingsAdvanced.textTitle": "Drop cap - Advanced settings", - "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Frame - Advanced settings", + "DE.Views.DropcapSettingsAdvanced.textTitle": "Drop cap - advanced settings", + "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Frame - advanced settings", "DE.Views.DropcapSettingsAdvanced.textTop": "Top", "DE.Views.DropcapSettingsAdvanced.textVertical": "Vertical", "DE.Views.DropcapSettingsAdvanced.textWidth": "Width", @@ -2017,10 +2017,10 @@ "DE.Views.EditListItemDialog.textNameError": "Display name must not be empty.", "DE.Views.EditListItemDialog.textValue": "Value", "DE.Views.EditListItemDialog.textValueError": "An item with the same value already exists.", - "DE.Views.FileMenu.btnBackCaption": "Open file location", + "DE.Views.FileMenu.btnBackCaption": "Open File Location", "DE.Views.FileMenu.btnCloseMenuCaption": "Close Menu", "DE.Views.FileMenu.btnCreateNewCaption": "Create New", - "DE.Views.FileMenu.btnDownloadCaption": "Download as", + "DE.Views.FileMenu.btnDownloadCaption": "Download As", "DE.Views.FileMenu.btnExitCaption": "Close", "DE.Views.FileMenu.btnFileOpenCaption": "Open", "DE.Views.FileMenu.btnHelpCaption": "Help", @@ -2032,13 +2032,13 @@ "DE.Views.FileMenu.btnRenameCaption": "Rename", "DE.Views.FileMenu.btnReturnCaption": "Back to Document", "DE.Views.FileMenu.btnRightsCaption": "Access Rights", - "DE.Views.FileMenu.btnSaveAsCaption": "Save as", + "DE.Views.FileMenu.btnSaveAsCaption": "Save As", "DE.Views.FileMenu.btnSaveCaption": "Save", - "DE.Views.FileMenu.btnSaveCopyAsCaption": "Save Copy as", + "DE.Views.FileMenu.btnSaveCopyAsCaption": "Save Copy As", "DE.Views.FileMenu.btnSettingsCaption": "Advanced Settings", "DE.Views.FileMenu.btnToEditCaption": "Edit Document", "DE.Views.FileMenu.textDownload": "Download", - "DE.Views.FileMenuPanels.CreateNew.txtBlank": "Blank Document", + "DE.Views.FileMenuPanels.CreateNew.txtBlank": "Blank document", "DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Create New", "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Apply", "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Add Author", @@ -2049,9 +2049,9 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comment", "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Created", "DE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo": "Document Info", - "DE.Views.FileMenuPanels.DocumentInfo.txtFastWV": "Fast Web View", + "DE.Views.FileMenuPanels.DocumentInfo.txtFastWV": "Fast web view", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Loading...", - "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Last Modified By", + "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Last modified by", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Last Modified", "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "No", "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Owner", @@ -2072,7 +2072,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Uploaded", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Words", "DE.Views.FileMenuPanels.DocumentInfo.txtYes": "Yes", - "DE.Views.FileMenuPanels.DocumentRights.txtAccessRights": "Access Rights", + "DE.Views.FileMenuPanels.DocumentRights.txtAccessRights": "Access rights", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Change access rights", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Persons who have rights", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Warning", @@ -2090,35 +2090,35 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Some of the digital signatures in the document are invalid or could not be verified. The document is protected from editing.", "DE.Views.FileMenuPanels.ProtectDoc.txtView": "View signatures", "DE.Views.FileMenuPanels.Settings.okButtonText": "Apply", - "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing Mode", + "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode", "DE.Views.FileMenuPanels.Settings.strFast": "Fast", - "DE.Views.FileMenuPanels.Settings.strFontRender": "Font Hinting", + "DE.Views.FileMenuPanels.Settings.strFontRender": "Font hinting", "DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignore words in UPPERCASE", "DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignore words with numbers", - "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Macros Settings", + "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Macros settings", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Show the Paste Options button when the content is pasted", - "DE.Views.FileMenuPanels.Settings.strShowChanges": "Real-time Collaboration Changes", + "DE.Views.FileMenuPanels.Settings.strShowChanges": "Real-time collaboration changes", "DE.Views.FileMenuPanels.Settings.strShowComments": "Show comments in text", "DE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Show changes from other users", "DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Show resolved comments", "DE.Views.FileMenuPanels.Settings.strStrict": "Strict", "DE.Views.FileMenuPanels.Settings.strTheme": "Interface theme", - "DE.Views.FileMenuPanels.Settings.strUnit": "Unit of Measurement", - "DE.Views.FileMenuPanels.Settings.strZoom": "Default Zoom Value", + "DE.Views.FileMenuPanels.Settings.strUnit": "Unit of measurement", + "DE.Views.FileMenuPanels.Settings.strZoom": "Default zoom value", "DE.Views.FileMenuPanels.Settings.text10Minutes": "Every 10 Minutes", "DE.Views.FileMenuPanels.Settings.text30Minutes": "Every 30 Minutes", "DE.Views.FileMenuPanels.Settings.text5Minutes": "Every 5 Minutes", - "DE.Views.FileMenuPanels.Settings.text60Minutes": "Every Hour", - "DE.Views.FileMenuPanels.Settings.textAlignGuides": "Alignment Guides", + "DE.Views.FileMenuPanels.Settings.text60Minutes": "Every hour", + "DE.Views.FileMenuPanels.Settings.textAlignGuides": "Alignment guides", "DE.Views.FileMenuPanels.Settings.textAutoRecover": "Autorecover", "DE.Views.FileMenuPanels.Settings.textAutoSave": "Autosave", "DE.Views.FileMenuPanels.Settings.textDisabled": "Disabled", "DE.Views.FileMenuPanels.Settings.textForceSave": "Saving intermediate versions", - "DE.Views.FileMenuPanels.Settings.textMinute": "Every Minute", + "DE.Views.FileMenuPanels.Settings.textMinute": "Every minute", "DE.Views.FileMenuPanels.Settings.textOldVersions": "Make the files compatible with older MS Word versions when saved as DOCX, DOTX", "DE.Views.FileMenuPanels.Settings.textSmartSelection": "Use smart paragraph selection", - "DE.Views.FileMenuPanels.Settings.txtAdvancedSettings": "Advanced Settings", - "DE.Views.FileMenuPanels.Settings.txtAll": "View All", + "DE.Views.FileMenuPanels.Settings.txtAdvancedSettings": "Advanced settings", + "DE.Views.FileMenuPanels.Settings.txtAll": "View all", "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "AutoCorrect options...", "DE.Views.FileMenuPanels.Settings.txtCacheMode": "Default cache mode", "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Show by click in balloons", @@ -2128,35 +2128,35 @@ "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Turn on document dark mode", "DE.Views.FileMenuPanels.Settings.txtEditingSaving": "Editing and saving", "DE.Views.FileMenuPanels.Settings.txtFastTip": "Real-time co-editing. All changes are saved automatically", - "DE.Views.FileMenuPanels.Settings.txtFitPage": "Fit to Page", - "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Fit to Width", + "DE.Views.FileMenuPanels.Settings.txtFitPage": "Fit to page", + "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Fit to width", "DE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Hieroglyphs", "DE.Views.FileMenuPanels.Settings.txtInch": "Inch", - "DE.Views.FileMenuPanels.Settings.txtLast": "View Last", + "DE.Views.FileMenuPanels.Settings.txtLast": "View last", "DE.Views.FileMenuPanels.Settings.txtLastUsed": "Last used", "DE.Views.FileMenuPanels.Settings.txtMac": "as OS X", "DE.Views.FileMenuPanels.Settings.txtNative": "Native", - "DE.Views.FileMenuPanels.Settings.txtNone": "View None", + "DE.Views.FileMenuPanels.Settings.txtNone": "View none", "DE.Views.FileMenuPanels.Settings.txtProofing": "Proofing", "DE.Views.FileMenuPanels.Settings.txtPt": "Point", "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Show the Quick Print button in the editor header", "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "The document will be printed on the last selected or default printer", - "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Enable All", + "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Enable all", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Enable all macros without a notification", "DE.Views.FileMenuPanels.Settings.txtScreenReader": "Turn on screen reader support", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Show track changes", - "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Spell Checking", + "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Spell checking", "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Disable All", "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Disable all macros without a notification", "DE.Views.FileMenuPanels.Settings.txtStrictTip": "Use the \"Save\" button to sync the changes you and others make", "DE.Views.FileMenuPanels.Settings.txtUseAltKey": "Use Alt key to navigate the user interface using the keyboard", "DE.Views.FileMenuPanels.Settings.txtUseOptionKey": "Use Option key to navigate the user interface using the keyboard", - "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Show Notification", + "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Show notification", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Disable all macros with a notification", "DE.Views.FileMenuPanels.Settings.txtWin": "as Windows", "DE.Views.FileMenuPanels.Settings.txtWorkspace": "Workspace", "DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs": "Download as", - "DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs": "Save Copy as", + "DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs": "Save copy as", "DE.Views.FormSettings.textAlways": "Always", "DE.Views.FormSettings.textAnyone": "Anyone", "DE.Views.FormSettings.textAspect": "Lock aspect ratio", @@ -2168,11 +2168,11 @@ "DE.Views.FormSettings.textCheckDefault": "Checkbox is checked by default", "DE.Views.FormSettings.textColor": "Border color", "DE.Views.FormSettings.textComb": "Comb of characters", - "DE.Views.FormSettings.textCombobox": "Combo Box", - "DE.Views.FormSettings.textComplex": "Complex Field", + "DE.Views.FormSettings.textCombobox": "Combo box", + "DE.Views.FormSettings.textComplex": "Complex field", "DE.Views.FormSettings.textConnected": "Fields connected", - "DE.Views.FormSettings.textCreditCard": "Credit Card Number (e.g 4111-1111-1111-1111)", - "DE.Views.FormSettings.textDateField": "Date & Time Field", + "DE.Views.FormSettings.textCreditCard": "Credit card number (e.g 4111-1111-1111-1111)", + "DE.Views.FormSettings.textDateField": "Date & time field", "DE.Views.FormSettings.textDateFormat": "Display the date like this", "DE.Views.FormSettings.textDefValue": "Default value", "DE.Views.FormSettings.textDelete": "Delete", @@ -2180,13 +2180,13 @@ "DE.Views.FormSettings.textDisconnect": "Disconnect", "DE.Views.FormSettings.textDropDown": "Dropdown", "DE.Views.FormSettings.textExact": "Exactly", - "DE.Views.FormSettings.textField": "Text Field", + "DE.Views.FormSettings.textField": "Text field", "DE.Views.FormSettings.textFillRoles": "Who needs to fill this out?", "DE.Views.FormSettings.textFixed": "Fixed size field", "DE.Views.FormSettings.textFormat": "Format", "DE.Views.FormSettings.textFormatSymbols": "Allowed symbols", - "DE.Views.FormSettings.textFromFile": "From File", - "DE.Views.FormSettings.textFromStorage": "From Storage", + "DE.Views.FormSettings.textFromFile": "From file", + "DE.Views.FormSettings.textFromStorage": "From storage", "DE.Views.FormSettings.textFromUrl": "From URL", "DE.Views.FormSettings.textGroupKey": "Group key", "DE.Views.FormSettings.textImage": "Image", @@ -2203,10 +2203,10 @@ "DE.Views.FormSettings.textPhone1": "Phone Number (e.g. (123) 456-7890)", "DE.Views.FormSettings.textPhone2": "Phone Number (e.g. +447911123456)", "DE.Views.FormSettings.textPlaceholder": "Placeholder", - "DE.Views.FormSettings.textRadiobox": "Radio Button", + "DE.Views.FormSettings.textRadiobox": "Radio button", "DE.Views.FormSettings.textRadioChoice": "Radio button choice", "DE.Views.FormSettings.textRadioDefault": "Button is checked by default", - "DE.Views.FormSettings.textReg": "Regular Expression", + "DE.Views.FormSettings.textReg": "Regular expression", "DE.Views.FormSettings.textRequired": "Required", "DE.Views.FormSettings.textScale": "When to scale", "DE.Views.FormSettings.textSelectImage": "Select Image", @@ -2216,18 +2216,18 @@ "DE.Views.FormSettings.textTipDelete": "Delete value", "DE.Views.FormSettings.textTipDown": "Move down", "DE.Views.FormSettings.textTipUp": "Move up", - "DE.Views.FormSettings.textTooBig": "Image is Too Big", - "DE.Views.FormSettings.textTooSmall": "Image is Too Small", - "DE.Views.FormSettings.textUKPassport": "UK Passport Number (e.g. 925665416)", + "DE.Views.FormSettings.textTooBig": "Image is too big", + "DE.Views.FormSettings.textTooSmall": "Image is too small", + "DE.Views.FormSettings.textUKPassport": "UK Passport number (e.g. 925665416)", "DE.Views.FormSettings.textUnlock": "Unlock", "DE.Views.FormSettings.textUSSSN": "US SSN (e.g. 123-45-6789)", "DE.Views.FormSettings.textValue": "Value options", "DE.Views.FormSettings.textWidth": "Cell width", - "DE.Views.FormSettings.textZipCodeUS": "US Zip Code (e.g. 92663 or 92663-1234)", + "DE.Views.FormSettings.textZipCodeUS": "US ZIP Code (e.g. 92663 or 92663-1234)", "DE.Views.FormsTab.capBtnCheckBox": "Checkbox", "DE.Views.FormsTab.capBtnComboBox": "Combo Box", "DE.Views.FormsTab.capBtnComplex": "Complex Field", - "DE.Views.FormsTab.capBtnDownloadForm": "Download as pdf", + "DE.Views.FormsTab.capBtnDownloadForm": "Download As PDF", "DE.Views.FormsTab.capBtnDropDown": "Dropdown", "DE.Views.FormsTab.capBtnEmail": "Email Address", "DE.Views.FormsTab.capBtnImage": "Image", @@ -2236,13 +2236,13 @@ "DE.Views.FormsTab.capBtnPhone": "Phone Number", "DE.Views.FormsTab.capBtnPrev": "Previous Field", "DE.Views.FormsTab.capBtnRadioBox": "Radio Button", - "DE.Views.FormsTab.capBtnSaveForm": "Save as pdf", + "DE.Views.FormsTab.capBtnSaveForm": "Save As PDF", "DE.Views.FormsTab.capBtnSubmit": "Submit", "DE.Views.FormsTab.capBtnText": "Text Field", "DE.Views.FormsTab.capBtnView": "View Form", "DE.Views.FormsTab.capCreditCard": "Credit Card", "DE.Views.FormsTab.capDateTime": "Date & Time", - "DE.Views.FormsTab.capZipCode": "Zip Code", + "DE.Views.FormsTab.capZipCode": "ZIP Code", "DE.Views.FormsTab.textAnyone": "Anyone", "DE.Views.FormsTab.textClear": "Clear Fields", "DE.Views.FormsTab.textClearFields": "Clear All Fields", @@ -2269,18 +2269,18 @@ "DE.Views.FormsTab.tipHelpRoles": "Use the Manage Roles feature to group fields by purpose and assign the responsible team members.", "DE.Views.FormsTab.tipImageField": "Insert image", "DE.Views.FormsTab.tipInlineText": "Insert inline text field", - "DE.Views.FormsTab.tipManager": "Manage Roles", + "DE.Views.FormsTab.tipManager": "Manage roles", "DE.Views.FormsTab.tipNextForm": "Go to the next field", "DE.Views.FormsTab.tipPhoneField": "Insert phone number", "DE.Views.FormsTab.tipPrevForm": "Go to the previous field", "DE.Views.FormsTab.tipRadioBox": "Insert radio button", "DE.Views.FormsTab.tipRolesLink": "Learn more about roles", - "DE.Views.FormsTab.tipSaveFile": "Click “Save as pdf” to save the form in the format ready for filling.", + "DE.Views.FormsTab.tipSaveFile": "Click \"Save As PDF\" to save the form in the format ready for filling.", "DE.Views.FormsTab.tipSaveForm": "Save a file as a fillable PDF", "DE.Views.FormsTab.tipSubmit": "Submit form", "DE.Views.FormsTab.tipTextField": "Insert text field", "DE.Views.FormsTab.tipViewForm": "View form", - "DE.Views.FormsTab.tipZipCode": "Insert zip code", + "DE.Views.FormsTab.tipZipCode": "Insert ZIP code", "DE.Views.FormsTab.txtFixedDesc": "Insert fixed text field", "DE.Views.FormsTab.txtFixedText": "Fixed", "DE.Views.FormsTab.txtInlineDesc": "Insert inline text field", @@ -2288,23 +2288,23 @@ "DE.Views.FormsTab.txtUntitled": "Untitled", "DE.Views.HeaderFooterSettings.textBottomCenter": "Bottom center", "DE.Views.HeaderFooterSettings.textBottomLeft": "Bottom left", - "DE.Views.HeaderFooterSettings.textBottomPage": "Bottom of Page", + "DE.Views.HeaderFooterSettings.textBottomPage": "Bottom of page", "DE.Views.HeaderFooterSettings.textBottomRight": "Bottom right", "DE.Views.HeaderFooterSettings.textDiffFirst": "Different first page", "DE.Views.HeaderFooterSettings.textDiffOdd": "Different odd and even pages", "DE.Views.HeaderFooterSettings.textFrom": "Start at", - "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Footer from Bottom", + "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Footer from bottom", "DE.Views.HeaderFooterSettings.textHeaderFromTop": "Header from Top", - "DE.Views.HeaderFooterSettings.textInsertCurrent": "Insert to Current Position", + "DE.Views.HeaderFooterSettings.textInsertCurrent": "Insert to current position", "DE.Views.HeaderFooterSettings.textOptions": "Options", - "DE.Views.HeaderFooterSettings.textPageNum": "Insert Page Number", - "DE.Views.HeaderFooterSettings.textPageNumbering": "Page Numbering", + "DE.Views.HeaderFooterSettings.textPageNum": "Insert page number", + "DE.Views.HeaderFooterSettings.textPageNumbering": "Page numbering", "DE.Views.HeaderFooterSettings.textPosition": "Position", "DE.Views.HeaderFooterSettings.textPrev": "Continue from previous section", "DE.Views.HeaderFooterSettings.textSameAs": "Link to Previous", "DE.Views.HeaderFooterSettings.textTopCenter": "Top center", "DE.Views.HeaderFooterSettings.textTopLeft": "Top left", - "DE.Views.HeaderFooterSettings.textTopPage": "Top of Page", + "DE.Views.HeaderFooterSettings.textTopPage": "Top of page", "DE.Views.HeaderFooterSettings.textTopRight": "Top right", "DE.Views.HyperlinkSettingsDialog.textDefault": "Selected text fragment", "DE.Views.HyperlinkSettingsDialog.textDisplay": "Display", @@ -2331,28 +2331,28 @@ "DE.Views.ImageSettings.textCropFit": "Fit", "DE.Views.ImageSettings.textCropToShape": "Crop to shape", "DE.Views.ImageSettings.textEdit": "Edit", - "DE.Views.ImageSettings.textEditObject": "Edit Object", - "DE.Views.ImageSettings.textFitMargins": "Fit to Margin", + "DE.Views.ImageSettings.textEditObject": "Edit object", + "DE.Views.ImageSettings.textFitMargins": "Fit to margin", "DE.Views.ImageSettings.textFlip": "Flip", - "DE.Views.ImageSettings.textFromFile": "From File", - "DE.Views.ImageSettings.textFromStorage": "From Storage", + "DE.Views.ImageSettings.textFromFile": "From file", + "DE.Views.ImageSettings.textFromStorage": "From storage", "DE.Views.ImageSettings.textFromUrl": "From URL", "DE.Views.ImageSettings.textHeight": "Height", "DE.Views.ImageSettings.textHint270": "Rotate 90° Counterclockwise", "DE.Views.ImageSettings.textHint90": "Rotate 90° Clockwise", - "DE.Views.ImageSettings.textHintFlipH": "Flip Horizontally", - "DE.Views.ImageSettings.textHintFlipV": "Flip Vertically", + "DE.Views.ImageSettings.textHintFlipH": "Flip horizontally", + "DE.Views.ImageSettings.textHintFlipV": "Flip vertically", "DE.Views.ImageSettings.textInsert": "Replace Image", "DE.Views.ImageSettings.textOriginalSize": "Actual Size", - "DE.Views.ImageSettings.textRecentlyUsed": "Recently Used", + "DE.Views.ImageSettings.textRecentlyUsed": "Recently used", "DE.Views.ImageSettings.textRotate90": "Rotate 90°", "DE.Views.ImageSettings.textRotation": "Rotation", "DE.Views.ImageSettings.textSize": "Size", "DE.Views.ImageSettings.textWidth": "Width", "DE.Views.ImageSettings.textWrap": "Wrapping Style", - "DE.Views.ImageSettings.txtBehind": "Behind Text", - "DE.Views.ImageSettings.txtInFront": "In Front of Text", - "DE.Views.ImageSettings.txtInline": "In Line with Text", + "DE.Views.ImageSettings.txtBehind": "Behind text", + "DE.Views.ImageSettings.txtInFront": "In front of Text", + "DE.Views.ImageSettings.txtInline": "In line with text", "DE.Views.ImageSettings.txtSquare": "Square", "DE.Views.ImageSettings.txtThrough": "Through", "DE.Views.ImageSettings.txtTight": "Tight", @@ -2415,9 +2415,9 @@ "DE.Views.ImageSettingsAdvanced.textSize": "Size", "DE.Views.ImageSettingsAdvanced.textSquare": "Square", "DE.Views.ImageSettingsAdvanced.textTextBox": "Text box", - "DE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced settings", - "DE.Views.ImageSettingsAdvanced.textTitleChart": "Chart - Advanced settings", - "DE.Views.ImageSettingsAdvanced.textTitleShape": "Shape - Advanced settings", + "DE.Views.ImageSettingsAdvanced.textTitle": "Image - advanced settings", + "DE.Views.ImageSettingsAdvanced.textTitleChart": "Chart - advanced settings", + "DE.Views.ImageSettingsAdvanced.textTitleShape": "Shape - advanced settings", "DE.Views.ImageSettingsAdvanced.textTop": "Top", "DE.Views.ImageSettingsAdvanced.textTopMargin": "Top margin", "DE.Views.ImageSettingsAdvanced.textVertical": "Vertical", @@ -2437,14 +2437,14 @@ "DE.Views.LeftMenu.tipComments": "Comments", "DE.Views.LeftMenu.tipNavigation": "Navigation", "DE.Views.LeftMenu.tipOutline": "Headings", - "DE.Views.LeftMenu.tipPageThumbnails": "Page Thumbnails", + "DE.Views.LeftMenu.tipPageThumbnails": "Page thumbnails", "DE.Views.LeftMenu.tipPlugins": "Plugins", "DE.Views.LeftMenu.tipSearch": "Search", "DE.Views.LeftMenu.tipSupport": "Feedback & Support", "DE.Views.LeftMenu.tipTitles": "Titles", "DE.Views.LeftMenu.txtDeveloper": "DEVELOPER MODE", "DE.Views.LeftMenu.txtEditor": "Document Editor", - "DE.Views.LeftMenu.txtLimit": "Limit Access", + "DE.Views.LeftMenu.txtLimit": "Limit access", "DE.Views.LeftMenu.txtTrial": "TRIAL MODE", "DE.Views.LeftMenu.txtTrialDev": "Trial Developer Mode", "DE.Views.LineNumbersDialog.textAddLineNumbering": "Add line numbering", @@ -2479,11 +2479,11 @@ "DE.Views.Links.mniNoteSettings": "Notes settings", "DE.Views.Links.textContentsRemove": "Remove table of contents", "DE.Views.Links.textContentsSettings": "Settings", - "DE.Views.Links.textConvertToEndnotes": "Convert All Footnotes to Endnotes", - "DE.Views.Links.textConvertToFootnotes": "Convert All Endnotes to Footnotes", + "DE.Views.Links.textConvertToEndnotes": "Convert all footnotes to endnotes", + "DE.Views.Links.textConvertToFootnotes": "Convert all endnotes to footnotes", "DE.Views.Links.textGotoEndnote": "Go to endnotes", "DE.Views.Links.textGotoFootnote": "Go to footnotes", - "DE.Views.Links.textSwapNotes": "Swap Footnotes and Endnotes", + "DE.Views.Links.textSwapNotes": "Swap footnotes and endnotes", "DE.Views.Links.textUpdateAll": "Update entire table", "DE.Views.Links.textUpdatePages": "Update page numbers only", "DE.Views.Links.tipAddText": "Include heading in the table of contents", @@ -2496,7 +2496,7 @@ "DE.Views.Links.tipNotes": "Insert or edit footnotes", "DE.Views.Links.tipTableFigures": "Insert table of figures", "DE.Views.Links.tipTableFiguresUpdate": "Update table of figures", - "DE.Views.Links.titleUpdateTOF": "Update Table of Figures", + "DE.Views.Links.titleUpdateTOF": "Update table of figures", "DE.Views.Links.txtDontShowTof": "Do not show in table of contents", "DE.Views.Links.txtLevel": "Level", "DE.Views.ListIndentsDialog.textSpace": "Space", @@ -2528,7 +2528,7 @@ "DE.Views.ListSettingsDialog.txtFollow": "Follow number with", "DE.Views.ListSettingsDialog.txtFontName": "Font", "DE.Views.ListSettingsDialog.txtInclcudeLevel": "Include level number", - "DE.Views.ListSettingsDialog.txtIndent": "Text Indent", + "DE.Views.ListSettingsDialog.txtIndent": "Text indent", "DE.Views.ListSettingsDialog.txtLikeText": "Like a text", "DE.Views.ListSettingsDialog.txtMoreTypes": "More types", "DE.Views.ListSettingsDialog.txtNewBullet": "New bullet", @@ -2563,7 +2563,7 @@ "DE.Views.MailMergeSettings.textAddRecipients": "Add some recipients to the list first", "DE.Views.MailMergeSettings.textAll": "All records", "DE.Views.MailMergeSettings.textCurrent": "Current record", - "DE.Views.MailMergeSettings.textDataSource": "Data Source", + "DE.Views.MailMergeSettings.textDataSource": "Data source", "DE.Views.MailMergeSettings.textDocx": "Docx", "DE.Views.MailMergeSettings.textDownload": "Download", "DE.Views.MailMergeSettings.textEditData": "Edit recipient list", @@ -2571,10 +2571,10 @@ "DE.Views.MailMergeSettings.textFrom": "From", "DE.Views.MailMergeSettings.textGoToMail": "Go to Mail", "DE.Views.MailMergeSettings.textHighlight": "Highlight merge fields", - "DE.Views.MailMergeSettings.textInsertField": "Insert Merge Field", + "DE.Views.MailMergeSettings.textInsertField": "Insert merge field", "DE.Views.MailMergeSettings.textMaxRecepients": "Max 100 recipients.", "DE.Views.MailMergeSettings.textMerge": "Merge", - "DE.Views.MailMergeSettings.textMergeFields": "Merge Fields", + "DE.Views.MailMergeSettings.textMergeFields": "Merge fields", "DE.Views.MailMergeSettings.textMergeTo": "Merge to", "DE.Views.MailMergeSettings.textPdf": "PDF", "DE.Views.MailMergeSettings.textPortal": "Save", @@ -2594,7 +2594,7 @@ "DE.Views.Navigation.txtCollapse": "Collapse all", "DE.Views.Navigation.txtDemote": "Demote", "DE.Views.Navigation.txtEmpty": "There are no headings in the document.
Apply a heading style to the text so that it appears in the table of contents.", - "DE.Views.Navigation.txtEmptyItem": "Empty Heading", + "DE.Views.Navigation.txtEmptyItem": "Empty heading", "DE.Views.Navigation.txtEmptyViewer": "There are no headings in the document.", "DE.Views.Navigation.txtExpand": "Expand all", "DE.Views.Navigation.txtExpandToLevel": "Expand to level", @@ -2659,15 +2659,15 @@ "DE.Views.PageSizeDialog.txtCustom": "Custom", "DE.Views.PageThumbnails.textClosePanel": "Close page thumbnails", "DE.Views.PageThumbnails.textHighlightVisiblePart": "Highlight visible part of page", - "DE.Views.PageThumbnails.textPageThumbnails": "Page Thumbnails", + "DE.Views.PageThumbnails.textPageThumbnails": "Page thumbnails", "DE.Views.PageThumbnails.textThumbnailsSettings": "Thumbnails settings", "DE.Views.PageThumbnails.textThumbnailsSize": "Thumbnails size", "DE.Views.ParagraphSettings.strIndent": "Indents", "DE.Views.ParagraphSettings.strIndentsLeftText": "Left", "DE.Views.ParagraphSettings.strIndentsRightText": "Right", "DE.Views.ParagraphSettings.strIndentsSpecial": "Special", - "DE.Views.ParagraphSettings.strLineHeight": "Line Spacing", - "DE.Views.ParagraphSettings.strParagraphSpacing": "Paragraph Spacing", + "DE.Views.ParagraphSettings.strLineHeight": "Line spacing", + "DE.Views.ParagraphSettings.strParagraphSpacing": "Paragraph spacing", "DE.Views.ParagraphSettings.strSomeParagraphSpace": "Don't add interval between paragraphs of the same style", "DE.Views.ParagraphSettings.strSpacingAfter": "After", "DE.Views.ParagraphSettings.strSpacingBefore": "Before", @@ -2699,8 +2699,8 @@ "DE.Views.ParagraphSettingsAdvanced.strMargins": "Paddings", "DE.Views.ParagraphSettingsAdvanced.strOrphan": "Orphan control", "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font", - "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indents & Spacing", - "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Line & Page breaks", + "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indents & spacing", + "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Line & page breaks", "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Placement", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Small caps", "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Don't add interval between paragraphs of the same style", @@ -2759,7 +2759,7 @@ "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Left", "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab position", "DE.Views.ParagraphSettingsAdvanced.textTabRight": "Right", - "DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced settings", + "DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - advanced settings", "DE.Views.ParagraphSettingsAdvanced.textTop": "Top", "DE.Views.ParagraphSettingsAdvanced.tipAll": "Set outer border and all inner lines", "DE.Views.ParagraphSettingsAdvanced.tipBottom": "Set bottom border only", @@ -2819,7 +2819,7 @@ "DE.Views.ProtectDialog.txtTitle": "Protect", "DE.Views.ProtectDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.", "DE.Views.RightMenu.txtChartSettings": "Chart settings", - "DE.Views.RightMenu.txtFormSettings": "Form Settings", + "DE.Views.RightMenu.txtFormSettings": "Form settings", "DE.Views.RightMenu.txtHeaderFooterSettings": "Header and footer settings", "DE.Views.RightMenu.txtImageSettings": "Image settings", "DE.Views.RightMenu.txtMailMergeSettings": "Mail merge settings", @@ -2830,14 +2830,14 @@ "DE.Views.RightMenu.txtTextArtSettings": "Text Art settings", "DE.Views.RoleDeleteDlg.textLabel": "To delete this role, you need to move the fields associated with it to another role.", "DE.Views.RoleDeleteDlg.textSelect": "Select for field merger role", - "DE.Views.RoleDeleteDlg.textTitle": "Delete Role", + "DE.Views.RoleDeleteDlg.textTitle": "Delete role", "DE.Views.RoleEditDlg.errNameExists": "Role with such a name already exists.", "DE.Views.RoleEditDlg.textEmptyError": "Role name must not be empty.", "DE.Views.RoleEditDlg.textName": "Role name", "DE.Views.RoleEditDlg.textNameEx": "Example: Applicant, Client, Sales Rep", "DE.Views.RoleEditDlg.textNoHighlight": "No highlighting", "DE.Views.RoleEditDlg.txtTitleEdit": "Edit Role", - "DE.Views.RoleEditDlg.txtTitleNew": "Create New Role", + "DE.Views.RoleEditDlg.txtTitleNew": "Create new role", "DE.Views.RolesManagerDlg.textAnyone": "Anyone", "DE.Views.RolesManagerDlg.textDelete": "Delete", "DE.Views.RolesManagerDlg.textDeleteLast": "Are you sure you want to delete the role {0}?
Once deleted, the default role will be created.", @@ -2847,17 +2847,17 @@ "DE.Views.RolesManagerDlg.textEmpty": "No roles have been created yet.
Create at least one role and it will appear in this field.", "DE.Views.RolesManagerDlg.textNew": "New", "DE.Views.RolesManagerDlg.textUp": "Move role up", - "DE.Views.RolesManagerDlg.txtTitle": "Manage Roles", + "DE.Views.RolesManagerDlg.txtTitle": "Manage roles", "DE.Views.RolesManagerDlg.warnCantDelete": "You cannot delete this role because it has associated fields.", "DE.Views.RolesManagerDlg.warnDelete": "Are you sure you want to delete the role {0}?", "DE.Views.SaveFormDlg.saveButtonText": "Save", "DE.Views.SaveFormDlg.textAnyone": "Anyone", - "DE.Views.SaveFormDlg.textDescription": "When saving to the pdf, only roles with fields are added to the filling list", + "DE.Views.SaveFormDlg.textDescription": "When saving to the PDF, only roles with fields are added to the filling list", "DE.Views.SaveFormDlg.textEmpty": "There are no roles associated with fields.", "DE.Views.SaveFormDlg.textFill": "Filling list", - "DE.Views.SaveFormDlg.txtTitle": "Save as Form", + "DE.Views.SaveFormDlg.txtTitle": "Save as form", "DE.Views.ShapeSettings.strBackground": "Background color", - "DE.Views.ShapeSettings.strChange": "Change Shape", + "DE.Views.ShapeSettings.strChange": "Change shape", "DE.Views.ShapeSettings.strColor": "Color", "DE.Views.ShapeSettings.strFill": "Fill", "DE.Views.ShapeSettings.strForeground": "Foreground color", @@ -2870,52 +2870,52 @@ "DE.Views.ShapeSettings.textAdvanced": "Show advanced settings", "DE.Views.ShapeSettings.textAngle": "Angle", "DE.Views.ShapeSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", - "DE.Views.ShapeSettings.textColor": "Color Fill", + "DE.Views.ShapeSettings.textColor": "Color fill", "DE.Views.ShapeSettings.textDirection": "Direction", "DE.Views.ShapeSettings.textEditPoints": "Edit points", "DE.Views.ShapeSettings.textEditShape": "Edit shape", - "DE.Views.ShapeSettings.textEmptyPattern": "No Pattern", + "DE.Views.ShapeSettings.textEmptyPattern": "No pattern", "DE.Views.ShapeSettings.textFlip": "Flip", - "DE.Views.ShapeSettings.textFromFile": "From File", - "DE.Views.ShapeSettings.textFromStorage": "From Storage", + "DE.Views.ShapeSettings.textFromFile": "From file", + "DE.Views.ShapeSettings.textFromStorage": "From storage", "DE.Views.ShapeSettings.textFromUrl": "From URL", "DE.Views.ShapeSettings.textGradient": "Gradient points", - "DE.Views.ShapeSettings.textGradientFill": "Gradient Fill", + "DE.Views.ShapeSettings.textGradientFill": "Gradient fill", "DE.Views.ShapeSettings.textHint270": "Rotate 90° Counterclockwise", "DE.Views.ShapeSettings.textHint90": "Rotate 90° Clockwise", - "DE.Views.ShapeSettings.textHintFlipH": "Flip Horizontally", - "DE.Views.ShapeSettings.textHintFlipV": "Flip Vertically", - "DE.Views.ShapeSettings.textImageTexture": "Picture or Texture", + "DE.Views.ShapeSettings.textHintFlipH": "Flip horizontally", + "DE.Views.ShapeSettings.textHintFlipV": "Flip vertically", + "DE.Views.ShapeSettings.textImageTexture": "Picture or texture", "DE.Views.ShapeSettings.textLinear": "Linear", - "DE.Views.ShapeSettings.textNoFill": "No Fill", + "DE.Views.ShapeSettings.textNoFill": "No fill", "DE.Views.ShapeSettings.textPatternFill": "Pattern", "DE.Views.ShapeSettings.textPosition": "Position", "DE.Views.ShapeSettings.textRadial": "Radial", "DE.Views.ShapeSettings.textRecentlyUsed": "Recently used", "DE.Views.ShapeSettings.textRotate90": "Rotate 90°", "DE.Views.ShapeSettings.textRotation": "Rotation", - "DE.Views.ShapeSettings.textSelectImage": "Select Picture", + "DE.Views.ShapeSettings.textSelectImage": "Select picture", "DE.Views.ShapeSettings.textSelectTexture": "Select", "DE.Views.ShapeSettings.textStretch": "Stretch", "DE.Views.ShapeSettings.textStyle": "Style", - "DE.Views.ShapeSettings.textTexture": "From Texture", + "DE.Views.ShapeSettings.textTexture": "From texture", "DE.Views.ShapeSettings.textTile": "Tile", "DE.Views.ShapeSettings.textWrap": "Wrapping Style", "DE.Views.ShapeSettings.tipAddGradientPoint": "Add gradient point", "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Remove gradient point", - "DE.Views.ShapeSettings.txtBehind": "Behind Text", - "DE.Views.ShapeSettings.txtBrownPaper": "Brown Paper", + "DE.Views.ShapeSettings.txtBehind": "Behind text", + "DE.Views.ShapeSettings.txtBrownPaper": "Brown paper", "DE.Views.ShapeSettings.txtCanvas": "Canvas", "DE.Views.ShapeSettings.txtCarton": "Carton", - "DE.Views.ShapeSettings.txtDarkFabric": "Dark Fabric", + "DE.Views.ShapeSettings.txtDarkFabric": "Dark fabric", "DE.Views.ShapeSettings.txtGrain": "Grain", "DE.Views.ShapeSettings.txtGranite": "Granite", "DE.Views.ShapeSettings.txtGreyPaper": "Gray Paper", - "DE.Views.ShapeSettings.txtInFront": "In Front of Text", - "DE.Views.ShapeSettings.txtInline": "In Line with Text", + "DE.Views.ShapeSettings.txtInFront": "In front of Text", + "DE.Views.ShapeSettings.txtInline": "In line with text", "DE.Views.ShapeSettings.txtKnit": "Knit", "DE.Views.ShapeSettings.txtLeather": "Leather", - "DE.Views.ShapeSettings.txtNoBorders": "No Line", + "DE.Views.ShapeSettings.txtNoBorders": "No line", "DE.Views.ShapeSettings.txtPapyrus": "Papyrus", "DE.Views.ShapeSettings.txtSquare": "Square", "DE.Views.ShapeSettings.txtThrough": "Through", @@ -2924,10 +2924,10 @@ "DE.Views.ShapeSettings.txtWood": "Wood", "DE.Views.SignatureSettings.notcriticalErrorTitle": "Warning", "DE.Views.SignatureSettings.strDelete": "Remove Signature", - "DE.Views.SignatureSettings.strDetails": "Signature Details", + "DE.Views.SignatureSettings.strDetails": "Signature details", "DE.Views.SignatureSettings.strInvalid": "Invalid signatures", "DE.Views.SignatureSettings.strRequested": "Requested signatures", - "DE.Views.SignatureSettings.strSetup": "Signature Setup", + "DE.Views.SignatureSettings.strSetup": "Signature setup", "DE.Views.SignatureSettings.strSign": "Sign", "DE.Views.SignatureSettings.strSignature": "Signature", "DE.Views.SignatureSettings.strSigner": "Signer", @@ -2997,18 +2997,18 @@ "DE.Views.TableOfContentsSettings.txtOnline": "Online", "DE.Views.TableOfContentsSettings.txtSimple": "Simple", "DE.Views.TableOfContentsSettings.txtStandard": "Standard", - "DE.Views.TableSettings.deleteColumnText": "Delete Column", - "DE.Views.TableSettings.deleteRowText": "Delete Row", - "DE.Views.TableSettings.deleteTableText": "Delete Table", - "DE.Views.TableSettings.insertColumnLeftText": "Insert Column Left", - "DE.Views.TableSettings.insertColumnRightText": "Insert Column Right", - "DE.Views.TableSettings.insertRowAboveText": "Insert Row Above", - "DE.Views.TableSettings.insertRowBelowText": "Insert Row Below", - "DE.Views.TableSettings.mergeCellsText": "Merge Cells", - "DE.Views.TableSettings.selectCellText": "Select Cell", - "DE.Views.TableSettings.selectColumnText": "Select Column", - "DE.Views.TableSettings.selectRowText": "Select Row", - "DE.Views.TableSettings.selectTableText": "Select Table", + "DE.Views.TableSettings.deleteColumnText": "Delete column", + "DE.Views.TableSettings.deleteRowText": "Delete row", + "DE.Views.TableSettings.deleteTableText": "Delete table", + "DE.Views.TableSettings.insertColumnLeftText": "Insert column left", + "DE.Views.TableSettings.insertColumnRightText": "Insert column right", + "DE.Views.TableSettings.insertRowAboveText": "Insert row above", + "DE.Views.TableSettings.insertRowBelowText": "Insert row below", + "DE.Views.TableSettings.mergeCellsText": "Merge cells", + "DE.Views.TableSettings.selectCellText": "Select cell", + "DE.Views.TableSettings.selectColumnText": "Select column", + "DE.Views.TableSettings.selectRowText": "Select row", + "DE.Views.TableSettings.selectTableText": "Select table", "DE.Views.TableSettings.splitCellsText": "Split Cell...", "DE.Views.TableSettings.splitCellTitleText": "Split Cell", "DE.Views.TableSettings.strRepeatRow": "Repeat as header row at the top of each page", @@ -3017,13 +3017,13 @@ "DE.Views.TableSettings.textBackColor": "Background Color", "DE.Views.TableSettings.textBanded": "Banded", "DE.Views.TableSettings.textBorderColor": "Color", - "DE.Views.TableSettings.textBorders": "Borders Style", - "DE.Views.TableSettings.textCellSize": "Rows & Columns Size", + "DE.Views.TableSettings.textBorders": "Borders style", + "DE.Views.TableSettings.textCellSize": "Rows & columns size", "DE.Views.TableSettings.textColumns": "Columns", - "DE.Views.TableSettings.textConvert": "Convert Table to Text", + "DE.Views.TableSettings.textConvert": "Convert table to text", "DE.Views.TableSettings.textDistributeCols": "Distribute columns", "DE.Views.TableSettings.textDistributeRows": "Distribute rows", - "DE.Views.TableSettings.textEdit": "Rows & Columns", + "DE.Views.TableSettings.textEdit": "Rows & columns", "DE.Views.TableSettings.textEmptyTemplate": "No templates", "DE.Views.TableSettings.textFirst": "First", "DE.Views.TableSettings.textHeader": "Header", @@ -3031,7 +3031,7 @@ "DE.Views.TableSettings.textLast": "Last", "DE.Views.TableSettings.textRows": "Rows", "DE.Views.TableSettings.textSelectBorders": "Select borders you want to change applying style chosen above", - "DE.Views.TableSettings.textTemplate": "Select From Template", + "DE.Views.TableSettings.textTemplate": "Select from template", "DE.Views.TableSettings.textTotal": "Total", "DE.Views.TableSettings.textWidth": "Width", "DE.Views.TableSettings.tipAll": "Set outer border and all inner lines", @@ -3044,23 +3044,23 @@ "DE.Views.TableSettings.tipOuter": "Set outer border only", "DE.Views.TableSettings.tipRight": "Set outer right border only", "DE.Views.TableSettings.tipTop": "Set outer top border only", - "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Bordered & Lined Tables", + "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Bordered & Lined tables", "DE.Views.TableSettings.txtGroupTable_Custom": "Custom", - "DE.Views.TableSettings.txtGroupTable_Grid": "Grid Tables", - "DE.Views.TableSettings.txtGroupTable_List": "List Tables", - "DE.Views.TableSettings.txtGroupTable_Plain": "Plain Tables", + "DE.Views.TableSettings.txtGroupTable_Grid": "Grid tables", + "DE.Views.TableSettings.txtGroupTable_List": "List tables", + "DE.Views.TableSettings.txtGroupTable_Plain": "Plain tables", "DE.Views.TableSettings.txtNoBorders": "No borders", "DE.Views.TableSettings.txtTable_Accent": "Accent", "DE.Views.TableSettings.txtTable_Bordered": "Bordered", "DE.Views.TableSettings.txtTable_BorderedAndLined": "Bordered & Lined", "DE.Views.TableSettings.txtTable_Colorful": "Colorful", "DE.Views.TableSettings.txtTable_Dark": "Dark", - "DE.Views.TableSettings.txtTable_GridTable": "Grid Table", + "DE.Views.TableSettings.txtTable_GridTable": "Grid table", "DE.Views.TableSettings.txtTable_Light": "Light", "DE.Views.TableSettings.txtTable_Lined": "Lined", - "DE.Views.TableSettings.txtTable_ListTable": "List Table", - "DE.Views.TableSettings.txtTable_PlainTable": "Plain Table", - "DE.Views.TableSettings.txtTable_TableGrid": "Table Grid", + "DE.Views.TableSettings.txtTable_ListTable": "List table", + "DE.Views.TableSettings.txtTable_PlainTable": "Plain table", + "DE.Views.TableSettings.txtTable_TableGrid": "Table grid", "DE.Views.TableSettingsAdvanced.textAlign": "Alignment", "DE.Views.TableSettingsAdvanced.textAlignment": "Alignment", "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Spacing between cells", @@ -3108,7 +3108,7 @@ "DE.Views.TableSettingsAdvanced.textTableBackColor": "Table background", "DE.Views.TableSettingsAdvanced.textTablePosition": "Table position", "DE.Views.TableSettingsAdvanced.textTableSize": "Table size", - "DE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced settings", + "DE.Views.TableSettingsAdvanced.textTitle": "Table - advanced settings", "DE.Views.TableSettingsAdvanced.textTop": "Top", "DE.Views.TableSettingsAdvanced.textVertical": "Vertical", "DE.Views.TableSettingsAdvanced.textWidth": "Width", @@ -3149,12 +3149,12 @@ "DE.Views.TextArtSettings.strType": "Type", "DE.Views.TextArtSettings.textAngle": "Angle", "DE.Views.TextArtSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", - "DE.Views.TextArtSettings.textColor": "Color Fill", + "DE.Views.TextArtSettings.textColor": "Color fill", "DE.Views.TextArtSettings.textDirection": "Direction", "DE.Views.TextArtSettings.textGradient": "Gradient points", - "DE.Views.TextArtSettings.textGradientFill": "Gradient Fill", + "DE.Views.TextArtSettings.textGradientFill": "Gradient fill", "DE.Views.TextArtSettings.textLinear": "Linear", - "DE.Views.TextArtSettings.textNoFill": "No Fill", + "DE.Views.TextArtSettings.textNoFill": "No fill", "DE.Views.TextArtSettings.textPosition": "Position", "DE.Views.TextArtSettings.textRadial": "Radial", "DE.Views.TextArtSettings.textSelectTexture": "Select", @@ -3163,7 +3163,7 @@ "DE.Views.TextArtSettings.textTransform": "Transform", "DE.Views.TextArtSettings.tipAddGradientPoint": "Add gradient point", "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Remove gradient point", - "DE.Views.TextArtSettings.txtNoBorders": "No Line", + "DE.Views.TextArtSettings.txtNoBorders": "No line", "DE.Views.TextToTableDialog.textAutofit": "Autofit behavior", "DE.Views.TextToTableDialog.textColumns": "Columns", "DE.Views.TextToTableDialog.textContents": "Autofit to contents", @@ -3211,7 +3211,7 @@ "DE.Views.Toolbar.mniCapitalizeWords": "Capitalize Each Word", "DE.Views.Toolbar.mniCustomTable": "Insert custom table", "DE.Views.Toolbar.mniDrawTable": "Draw table", - "DE.Views.Toolbar.mniEditControls": "Control Settings", + "DE.Views.Toolbar.mniEditControls": "Control settings", "DE.Views.Toolbar.mniEditDropCap": "Drop Cap Settings", "DE.Views.Toolbar.mniEditFooter": "Edit footer", "DE.Views.Toolbar.mniEditHeader": "Edit header", @@ -3222,27 +3222,27 @@ "DE.Views.Toolbar.mniHiddenBorders": "Hidden table borders", "DE.Views.Toolbar.mniHiddenChars": "Nonprinting characters", "DE.Views.Toolbar.mniHighlightControls": "Highlight settings", - "DE.Views.Toolbar.mniImageFromFile": "Image from File", - "DE.Views.Toolbar.mniImageFromStorage": "Image from Storage", + "DE.Views.Toolbar.mniImageFromFile": "Image from file", + "DE.Views.Toolbar.mniImageFromStorage": "Image from storage", "DE.Views.Toolbar.mniImageFromUrl": "Image from URL", "DE.Views.Toolbar.mniInsertSSE": "Insert Spreadsheet", "DE.Views.Toolbar.mniLowerCase": "lowercase", "DE.Views.Toolbar.mniRemoveFooter": "Remove footer", "DE.Views.Toolbar.mniRemoveHeader": "Remove header", "DE.Views.Toolbar.mniSentenceCase": "Sentence case.", - "DE.Views.Toolbar.mniTextToTable": "Convert text to table", + "DE.Views.Toolbar.mniTextToTable": "Convert Text to Table", "DE.Views.Toolbar.mniToggleCase": "tOGGLE cASE", "DE.Views.Toolbar.mniUpperCase": "UPPERCASE", - "DE.Views.Toolbar.strMenuNoFill": "No fill", + "DE.Views.Toolbar.strMenuNoFill": "No Fill", "DE.Views.Toolbar.textAlpha": "Greek Small Letter Alpha", "DE.Views.Toolbar.textAuto": "Automatic", "DE.Views.Toolbar.textAutoColor": "Automatic", "DE.Views.Toolbar.textBetta": "Greek Small Letter Beta", - "DE.Views.Toolbar.textBlackHeart": "Black Heart Suit", + "DE.Views.Toolbar.textBlackHeart": "Black heart suit", "DE.Views.Toolbar.textBold": "Bold", "DE.Views.Toolbar.textBottom": "Bottom: ", "DE.Views.Toolbar.textBullet": "Bullet", - "DE.Views.Toolbar.textChangeLevel": "Change List Level", + "DE.Views.Toolbar.textChangeLevel": "Change list level", "DE.Views.Toolbar.textCheckboxControl": "Check box", "DE.Views.Toolbar.textColumnsCustom": "Custom columns", "DE.Views.Toolbar.textColumnsLeft": "Left", @@ -3250,7 +3250,7 @@ "DE.Views.Toolbar.textColumnsRight": "Right", "DE.Views.Toolbar.textColumnsThree": "Three", "DE.Views.Toolbar.textColumnsTwo": "Two", - "DE.Views.Toolbar.textComboboxControl": "Combo box", + "DE.Views.Toolbar.textComboboxControl": "Combo Box", "DE.Views.Toolbar.textContinuous": "Continuous", "DE.Views.Toolbar.textContPage": "Continuous page", "DE.Views.Toolbar.textCopyright": "Copyright Sign", @@ -3267,19 +3267,19 @@ "DE.Views.Toolbar.textEvenPage": "Even page", "DE.Views.Toolbar.textGreaterEqual": "Greater Than Or Equal To", "DE.Views.Toolbar.textInfinity": "Infinity", - "DE.Views.Toolbar.textInMargin": "In Margin", + "DE.Views.Toolbar.textInMargin": "In margin", "DE.Views.Toolbar.textInsColumnBreak": "Insert column break", "DE.Views.Toolbar.textInsertPageCount": "Insert number of pages", - "DE.Views.Toolbar.textInsertPageNumber": "Insert Page Number", + "DE.Views.Toolbar.textInsertPageNumber": "Insert page number", "DE.Views.Toolbar.textInsPageBreak": "Insert page break", "DE.Views.Toolbar.textInsSectionBreak": "Insert section break", - "DE.Views.Toolbar.textInText": "In Text", + "DE.Views.Toolbar.textInText": "In text", "DE.Views.Toolbar.textItalic": "Italic", "DE.Views.Toolbar.textLandscape": "Landscape", "DE.Views.Toolbar.textLeft": "Left: ", "DE.Views.Toolbar.textLessEqual": "Less Than Or Equal To", "DE.Views.Toolbar.textLetterPi": "Greek Small Letter Pi", - "DE.Views.Toolbar.textListSettings": "List Settings", + "DE.Views.Toolbar.textListSettings": "List settings", "DE.Views.Toolbar.textMarginsLast": "Last Custom", "DE.Views.Toolbar.textMarginsModerate": "Moderate", "DE.Views.Toolbar.textMarginsNarrow": "Narrow", @@ -3287,12 +3287,12 @@ "DE.Views.Toolbar.textMarginsUsNormal": "US Normal", "DE.Views.Toolbar.textMarginsWide": "Wide", "DE.Views.Toolbar.textMoreSymbols": "More symbols", - "DE.Views.Toolbar.textNewColor": "More Colors", - "DE.Views.Toolbar.textNextPage": "Next page", + "DE.Views.Toolbar.textNewColor": "More colors", + "DE.Views.Toolbar.textNextPage": "Next Page", "DE.Views.Toolbar.textNoHighlight": "No highlighting", "DE.Views.Toolbar.textNone": "None", "DE.Views.Toolbar.textNotEqualTo": "Not Equal To", - "DE.Views.Toolbar.textOddPage": "Odd page", + "DE.Views.Toolbar.textOddPage": "Odd Page", "DE.Views.Toolbar.textOneHalf": "Vulgar Fraction One Half", "DE.Views.Toolbar.textOneQuarter": "Vulgar Fraction One Quarter", "DE.Views.Toolbar.textPageMarginsCustom": "Custom margins", @@ -3302,7 +3302,7 @@ "DE.Views.Toolbar.textPlusMinus": "Plus-Minus Sign", "DE.Views.Toolbar.textPortrait": "Portrait", "DE.Views.Toolbar.textRegistered": "Registered Sign", - "DE.Views.Toolbar.textRemoveControl": "Remove Content Control", + "DE.Views.Toolbar.textRemoveControl": "Remove content control", "DE.Views.Toolbar.textRemWatermark": "Remove watermark", "DE.Views.Toolbar.textRestartEachPage": "Restart each page", "DE.Views.Toolbar.textRestartEachSection": "Restart each section", @@ -3430,7 +3430,7 @@ "DE.Views.Toolbar.txtGroupNumLib": "Numbering library", "DE.Views.Toolbar.txtGroupRecent": "Recently used", "DE.Views.Toolbar.txtMarginAlign": "Align to margin", - "DE.Views.Toolbar.txtObjectsAlign": "Align Selected Objects", + "DE.Views.Toolbar.txtObjectsAlign": "Align selected objects", "DE.Views.Toolbar.txtPageAlign": "Align to page", "DE.Views.Toolbar.txtScheme1": "Office", "DE.Views.Toolbar.txtScheme10": "Median", diff --git a/apps/documenteditor/main/locale/fi.json b/apps/documenteditor/main/locale/fi.json index 90d8503919..4326ee602b 100644 --- a/apps/documenteditor/main/locale/fi.json +++ b/apps/documenteditor/main/locale/fi.json @@ -1,6 +1,7 @@ { "Common.Controllers.Chat.notcriticalErrorTitle": "Varoitus", "Common.Controllers.Chat.textEnterMessage": "Syötä viestisi tässä", + "Common.Controllers.Desktop.hintBtnHome": "Näytä pääikkuna", "Common.Controllers.Desktop.itemCreateFromTemplate": "Luo mallitiedostosta", "Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonyymi", "Common.Controllers.ExternalDiagramEditor.textClose": "Sulje", @@ -12,6 +13,7 @@ "Common.Controllers.ExternalMergeEditor.warningTitle": "Varoitus", "Common.Controllers.ExternalOleEditor.textAnonymous": "Anonyymi", "Common.Controllers.ExternalOleEditor.textClose": "Sulje", + "Common.Controllers.ExternalOleEditor.warningText": "Ohjekti ei ole käytössä koska toinen käyttäjä muokkaa sitä.", "Common.Controllers.History.notcriticalErrorTitle": "Varoitus", "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Voidaksesi verrata asiakirjoja, kaikki niissä olevat seuratut muutokset katsotaan hyväksytyiksi. Haluatko varmasti jatkaa?", "Common.Controllers.ReviewChanges.textAtLeast": "vähintään", @@ -82,29 +84,35 @@ "Common.Controllers.ReviewChanges.textUrl": "Liitä asiakirjan verkko-osoite", "Common.Controllers.ReviewChanges.textWidow": "Leskirivien hallinta", "Common.define.chartData.textArea": "Alue", + "Common.define.chartData.textAreaStacked": "Pinottu alue", "Common.define.chartData.textAreaStackedPer": "100% Pinottu alue", "Common.define.chartData.textBar": "Pylväs", "Common.define.chartData.textBarNormal": "Ryhmitelty sarakekaavio", "Common.define.chartData.textBarNormal3d": "Kolmiulotteinen ryhmitelty sarake", "Common.define.chartData.textBarNormal3dPerspective": "Kolmiulotteinen sarake", + "Common.define.chartData.textBarStacked": "Pinottu sarake", "Common.define.chartData.textBarStacked3d": "Kolmiulotteinen pinottu sarake", "Common.define.chartData.textBarStackedPer": "100% Pinottu sarake", "Common.define.chartData.textBarStackedPer3d": "Kolmiulotteinen pinottu sarake", "Common.define.chartData.textCharts": "Kaaviot", "Common.define.chartData.textColumn": "Sarake", "Common.define.chartData.textCombo": "Yhdistelmä", + "Common.define.chartData.textComboAreaBar": "Pinottu alue - ryhmitelty sarake", "Common.define.chartData.textComboBarLine": "Ryhmitelty sarake- ja viivadiagrammi", "Common.define.chartData.textComboBarLineSecondary": "Ryhmitelty sarakekaavio ja viiva toisella akselilla", "Common.define.chartData.textComboCustom": "Mukautettu yhdistelmä", "Common.define.chartData.textDoughnut": "Ympyräkaavio", "Common.define.chartData.textHBarNormal": "Ryhmitelty pylväsdiagrammi", "Common.define.chartData.textHBarNormal3d": "Kolmiulotteinen ryhmitelty palkki", + "Common.define.chartData.textHBarStacked": "Pinottu palkki", "Common.define.chartData.textHBarStacked3d": "Kolmiulotteinen pinottu palkki", "Common.define.chartData.textHBarStackedPer": "100% Pinottu palkki", "Common.define.chartData.textHBarStackedPer3d": "Kolmiulotteinen pinottu palkki", "Common.define.chartData.textLine": "Viiva", "Common.define.chartData.textLine3d": "Kolmiulotteinen rivi", "Common.define.chartData.textLineMarker": "Viiva ja merkit", + "Common.define.chartData.textLineStacked": "Pinottu viiva", + "Common.define.chartData.textLineStackedMarker": "Pinottu viiva ja merkit", "Common.define.chartData.textLineStackedPer": "100% Pinottu rivi", "Common.define.chartData.textLineStackedPerMarker": "100% Pinottu rivi ja merkit", "Common.define.chartData.textPie": "Ympyrädiagrammi", @@ -117,6 +125,8 @@ "Common.define.chartData.textScatterLineMarker": "Pistekaavio suorilla viivoilla ja merkeillä", "Common.define.chartData.textScatterSmooth": "Pistekaavio pyöreillä viivoilla", "Common.define.chartData.textScatterSmoothMarker": "Pistekaavio pyöreillä viivoilla ja merkeillä", + "Common.define.chartData.textStock": "Pörssikaavio", + "Common.define.chartData.textSurface": "Pinta", "Common.define.smartArt.textAccentedPicture": "Korostettu kuva", "Common.define.smartArt.textAccentProcess": "Prosessikaavio", "Common.define.smartArt.textAlternatingFlow": "Vaihteleva virta", @@ -237,8 +247,32 @@ "Common.define.smartArt.textSegmentedCycle": "Segmentoitu sykli", "Common.define.smartArt.textSegmentedProcess": "Segmentoitu prosessi", "Common.define.smartArt.textSegmentedPyramid": "Segmentoitu pyramidi", + "Common.define.smartArt.textSnapshotPictureList": "Tilannekuvaluettelo", + "Common.define.smartArt.textSpiralPicture": "Spiraalikuvio", + "Common.define.smartArt.textSquareAccentList": "Korostusluettelo, neliö-luettelomerkit", + "Common.define.smartArt.textStackedList": "Pinottu luettelo", + "Common.define.smartArt.textStackedVenn": "Pinottu Venn", + "Common.define.smartArt.textStaggeredProcess": "Porrastettu prosessi", + "Common.define.smartArt.textStepDownProcess": "Laskeutuvat portaat -prosessikaavio", + "Common.define.smartArt.textStepUpProcess": "Nousevat portaat -prosessikaavio", + "Common.define.smartArt.textSubStepProcess": "Alivaiheprosessi", + "Common.define.smartArt.textTabbedArc": "Kaari kielekkeillä", + "Common.define.smartArt.textTableHierarchy": "Taulukkohierarkia", + "Common.define.smartArt.textTableList": "Taulukkoluettelo", + "Common.define.smartArt.textTabList": "Välilehtiluettelo", + "Common.define.smartArt.textTargetList": "Kohdeluettelo", + "Common.define.smartArt.textTextCycle": "Tekstisykli", + "Common.define.smartArt.textThemePictureAccent": "Theme Picture Accent", + "Common.define.smartArt.textThemePictureAlternatingAccent": "Theme Picture Alternating Accent", + "Common.define.smartArt.textThemePictureGrid": "Theme Picture Grid", + "Common.define.smartArt.textTitledMatrix": "Otsikoitu matriisi", + "Common.define.smartArt.textTitledPictureAccentList": "Titled Picture Accent List", + "Common.define.smartArt.textTitledPictureBlocks": "Otsikoidut kuvalohkot", + "Common.define.smartArt.textTitlePictureLineup": "Title Picture Lineup", + "Common.define.smartArt.textTrapezoidList": "Puolisuunnikkaista koostuva luettelokaavio", "Common.Translation.textMoreButton": "Enemmän", "Common.Translation.tipFileLocked": "Asiakirja on lukittu. Voit kuitenkin tehdä siihen muutoksia ja tallentaa sen paikallisena kopiona myöhemmin.", + "Common.Translation.tipFileReadOnly": "Tiedosto on vain luku -muodossa. Säilyyttääksesi tekemäsi muutokset, tallenna tiedosto eri nimellä tai eri tiedostosijaintiin.", "Common.Translation.warnFileLockedBtnEdit": "Luo kopio", "Common.Translation.warnFileLockedBtnView": "Avaa katselua varten", "Common.UI.ButtonColored.textAutoColor": "Automaattinen", @@ -272,6 +306,9 @@ "Common.UI.Calendar.textShortOctober": "Lok", "Common.UI.Calendar.textShortSaturday": "La", "Common.UI.Calendar.textShortSeptember": "Syy", + "Common.UI.Calendar.textShortSunday": "Su", + "Common.UI.Calendar.textShortThursday": "To", + "Common.UI.Calendar.textShortTuesday": "Ti", "Common.UI.ComboBorderSize.txtNoBorders": "Ei reunusta", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ei reunuksia", "Common.UI.ComboDataView.emptyComboText": "Ei tyylejä", @@ -284,6 +321,7 @@ "Common.UI.InputFieldBtnCalendar.textDate": "Valitse päivämäärä", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Piilota salasana", "Common.UI.InputFieldBtnPassword.textHintHold": "Paina ja pidä pohjassa näyttääksesi salasanan", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Näytä salasana", "Common.UI.SearchBar.textFind": "Etsi", "Common.UI.SearchBar.tipCloseSearch": "Sulje haku", "Common.UI.SearchBar.tipNextResult": "Seuraava tulos", @@ -304,6 +342,7 @@ "Common.UI.ThemeColorPalette.textRecentColors": "Viimeaikaiset värit", "Common.UI.ThemeColorPalette.textStandartColors": "Vakiovärit", "Common.UI.ThemeColorPalette.textThemeColors": "Teeman värit", + "Common.UI.ThemeColorPalette.textTransparent": "Läpinäkyvä", "Common.UI.Themes.txtThemeClassicLight": "Klassinen vaalea", "Common.UI.Themes.txtThemeContrastDark": "Tumma kontrasti", "Common.UI.Themes.txtThemeDark": "Tumma", @@ -355,6 +394,10 @@ "Common.Utils.ThemeColor.txtPurple": "Violetti", "Common.Utils.ThemeColor.txtRed": "Punainen", "Common.Utils.ThemeColor.txtRose": "Roosa", + "Common.Utils.ThemeColor.txtSkyBlue": "Taivaansininen", + "Common.Utils.ThemeColor.txtTeal": "Sinivihreä", + "Common.Utils.ThemeColor.txttext": "Teksti", + "Common.Utils.ThemeColor.txtTurquosie": "Turkoosi", "Common.Views.About.txtAddress": "osoite: ", "Common.Views.About.txtLicensee": "LISENSSINSAAJA", "Common.Views.About.txtLicensor": "LISENSSINANTAJA", @@ -364,6 +407,7 @@ "Common.Views.About.txtVersion": "Versio", "Common.Views.AutoCorrectDialog.textAdd": "Lisää", "Common.Views.AutoCorrectDialog.textApplyText": "Käytä kirjoittamisen aikana", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Tekstin automaattinen korjaus", "Common.Views.AutoCorrectDialog.textAutoFormat": "Muotoile automaattisesti kirjoittamisen aikana", "Common.Views.AutoCorrectDialog.textBulleted": "Automaattiset luettelomerkit", "Common.Views.AutoCorrectDialog.textBy": "mukaan", @@ -379,6 +423,7 @@ "Common.Views.AutoCorrectDialog.textNumbered": "Automaattinen numeroitu luettelo", "Common.Views.AutoCorrectDialog.textQuotes": "\"Suorat lainaukset\" \"älylainausten\" kanssa", "Common.Views.AutoCorrectDialog.textRecognized": "Tunnistetut funktiot", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Seuraavat lausekkeet on tunnistettu matemaattisiksi. Niitä ei kursivoida automaattisesti.", "Common.Views.AutoCorrectDialog.textReplace": "Korvaa", "Common.Views.AutoCorrectDialog.textReplaceText": "Korvaa kirjoittamisen aikana", "Common.Views.AutoCorrectDialog.textReplaceType": "Korvaa teksti kirjoittaessasi", @@ -390,7 +435,9 @@ "Common.Views.AutoCorrectDialog.textWarnAddRec": "Tunnistetut funktiot voivat sisältää ainoastaan kirjaimia A-Z, pieniä tai isoja", "Common.Views.AutoCorrectDialog.textWarnResetFL": "Kaikki lisäämäsi poikkeukset poistetaan ja poistetut kohdat palautetaan alkuperäisiksi. Haluatko jatkaa?", "Common.Views.AutoCorrectDialog.textWarnResetRec": "Kaikki lisäämäsi ilmaukset poistetaan ja poistetut kohdat palautetaan alkuperäisiksi. Haluatko jatkaa?", + "Common.Views.AutoCorrectDialog.warnReplace": "Automaattinen korjaus sisältää jo kohdan %1. Haluatko korvata sen?", "Common.Views.AutoCorrectDialog.warnReset": "Kaikki asettamasi automaattisen korjauksen asetukset poistetaan ja korjatut kohdat palautetaan alkuperäisiksi. Haluatko jatkaa?", + "Common.Views.AutoCorrectDialog.warnRestore": "Automaattisen korjauksen kohta %1 palautetaan alkuperäiseen alkuperäiseen arvoonsa. Haluatko jatkaa?", "Common.Views.Chat.textSend": "Lähetä", "Common.Views.Comments.mniAuthorAsc": "Tekijät A:sta Ö:hön", "Common.Views.Comments.mniAuthorDesc": "Tekijät Ö:stä A:han", @@ -416,6 +463,11 @@ "Common.Views.Comments.textReply": "Vastaus", "Common.Views.Comments.textResolve": "Ratkaise", "Common.Views.Comments.textResolved": "Ratkaistu", + "Common.Views.Comments.textSort": "Järjestä kommentit", + "Common.Views.Comments.textSortFilter": "Järjestele ja suodata kommentteja", + "Common.Views.Comments.textSortFilterMore": "Järjestele, suodata ja enemmän", + "Common.Views.Comments.textSortMore": "Järjestä ja enemmän", + "Common.Views.Comments.txtEmpty": "Asiakirjassa ei ole yhtään kommenttia.", "Common.Views.CopyWarningDialog.textDontShow": "Älä näytä tätä viestiä uudelleen", "Common.Views.CopyWarningDialog.textMsg": "Kopioinnin, leikkaamisen ja liittämisen toiminnot muokkaajan työkaluvalikon painikkeilla ja valikoiden toiminnoilla suoritetaan vain tässä muokkaajan välilehdessä.

Jos haluat kopioida tai liittää muokkaajan ulkopuolisiin sovelluksiin tai sovelluksista, niin voit käyttää seuraavia näppäimistöyhdistelmiä:", "Common.Views.CopyWarningDialog.textTitle": "Kopioi, leikkaa ja liitä toiminnot", @@ -431,10 +483,12 @@ "Common.Views.Draw.txtMM": "mm", "Common.Views.Draw.txtPen": "Kynä", "Common.Views.Draw.txtSelect": "Valitse", + "Common.Views.Draw.txtSize": "Koko", "Common.Views.ExternalDiagramEditor.textTitle": "Kaavio editori", "Common.Views.ExternalEditor.textClose": "Sulje", "Common.Views.ExternalEditor.textSave": "Tallenna & Poistu", "Common.Views.ExternalMergeEditor.textTitle": "Sähköpostin yhdistelmän vastaanottajat", + "Common.Views.ExternalOleEditor.textTitle": "Taulukkolaskentaohjelma", "Common.Views.Header.labelCoUsersDescr": "Useat käyttäjät muokkaavat tällä hetkellä asiakirjaa.", "Common.Views.Header.textAddFavorite": "Merkitse suosikiksi", "Common.Views.Header.textAdvSettings": "Laajennetut asetukset", @@ -454,6 +508,7 @@ "Common.Views.Header.tipRedo": "Tee uudelleen", "Common.Views.Header.tipSave": "Tallenna", "Common.Views.Header.tipSearch": "Hae", + "Common.Views.Header.tipUndo": "Kumoa", "Common.Views.Header.tipViewSettings": "Näytä asetukset", "Common.Views.Header.tipViewUsers": "Näytä käyttäjät ja hallinnoi asiakirjan käyttöoikeuksia", "Common.Views.Header.txtAccessRights": "Muuta käyttöoikeuksia", @@ -500,6 +555,7 @@ "Common.Views.Plugins.textSettings": "Asetukset", "Common.Views.Plugins.textStart": "Aloita", "Common.Views.Plugins.textStop": "Pysäytä", + "Common.Views.Plugins.textTheListOfBackgroundPlugins": "Luettelo taustalaajennuksista", "Common.Views.Plugins.tipMore": "Enemmän", "Common.Views.Protection.hintAddPwd": "Käytä salasanasuojattua salausta", "Common.Views.Protection.hintDelPwd": "Poista salasana", @@ -525,6 +581,7 @@ "Common.Views.ReviewChanges.strFastDesc": "Reaaliaikainen yhteismuokkaus. Kaikki muutokset tallennetaan automaattisesti.", "Common.Views.ReviewChanges.strStrict": "Ehdoton", "Common.Views.ReviewChanges.textEnable": "Ota käyttöön", + "Common.Views.ReviewChanges.textWarnTrackChanges": "Muutosten seuranta kytketään PÄÄLLE kaikilla käyttäjillä, joilla on täydet pääsyoikeudet. Seuraavalla kerralla kun joku avaa asiakirjan, muutosten seuranta pysyy käytössä.", "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Otetaanko muutosten seuranta käyttöön kaikille?", "Common.Views.ReviewChanges.tipAcceptCurrent": "Hyväksy äskettäiset muutokset", "Common.Views.ReviewChanges.tipCoAuthMode": "Aseta yhteismuokkaustila", @@ -629,6 +686,7 @@ "Common.Views.SearchPanel.textSearchAgain": "{0}Suorita uusi haku{1} saadaksesi tarkempia tuloksia.", "Common.Views.SearchPanel.textSearchHasStopped": "Haku on keskeytynyt", "Common.Views.SearchPanel.textSearchResults": "Hakutulokset: [0}/{1}", + "Common.Views.SearchPanel.textTooManyResults": "Tuloksia on liian paljon näytettäväksi tässä", "Common.Views.SearchPanel.tipNextResult": "Seuraava tulos", "Common.Views.SearchPanel.tipPreviousResult": "Edellinen tulos", "Common.Views.SelectFileDlg.textLoading": "Ladataan", @@ -638,9 +696,11 @@ "Common.Views.SignDialog.textChange": "Muuta", "Common.Views.SignDialog.textInputName": "Syötä allekirjoittajan nimi", "Common.Views.SignDialog.textItalic": "Kursivoitu", + "Common.Views.SignDialog.textNameError": "Allekirjoittajan nimi ei voi olla tyhjä.", "Common.Views.SignDialog.textPurpose": "Tämän asiakirjan allekirjoittamisen tarkoitus", "Common.Views.SignDialog.textSelect": "Valitse", "Common.Views.SignDialog.textSelectImage": "Valitse kuva", + "Common.Views.SignDialog.textSignature": "Allekirjoitus näyttää", "Common.Views.SignDialog.textTitle": "Allekirjoita tiedosto", "Common.Views.SignDialog.textUseImage": "tai klikkaa 'Valitse kuva' käyttääksesi kuvaa allekirjoituksena", "Common.Views.SignDialog.tipFontName": "Fontti", @@ -649,9 +709,13 @@ "Common.Views.SignSettingsDialog.textDefInstruction": "Tarkasta tietojen oikeellisuus ennen asiakirjan allekirjoittamista.", "Common.Views.SignSettingsDialog.textInfoEmail": "Sähköposti", "Common.Views.SignSettingsDialog.textInfoName": "Nimi", + "Common.Views.SignSettingsDialog.textInfoTitle": "Allekirjoittajan titteli", "Common.Views.SignSettingsDialog.textInstructions": "Ohjeet allekirjoittajalle", + "Common.Views.SignSettingsDialog.textShowDate": "Näytä päivämäärä allekirjoitusrivillä", + "Common.Views.SignSettingsDialog.textTitle": "Allekirjoituksen asettaminen", "Common.Views.SignSettingsDialog.txtEmpty": "Tämä kenttä tarvitaan", "Common.Views.SymbolTableDialog.textCharacter": "Merkki", + "Common.Views.SymbolTableDialog.textCode": "Unicode HEX arvo", "Common.Views.SymbolTableDialog.textCopyright": "Tekijänoikeusmerkki", "Common.Views.SymbolTableDialog.textDCQuote": "Loppulainaus", "Common.Views.SymbolTableDialog.textDOQuote": "Avaava lainausmerkki (kokonainen)", @@ -671,7 +735,12 @@ "Common.Views.SymbolTableDialog.textSCQuote": "Yksittäisen lainauksen päätös", "Common.Views.SymbolTableDialog.textSection": "Pykälämerkki", "Common.Views.SymbolTableDialog.textShortcut": "Pikanäppäin", + "Common.Views.SymbolTableDialog.textSHyphen": "Tavutuskohtamerkki (SHY)", "Common.Views.SymbolTableDialog.textSOQuote": "Avaava lainausmerkki (puolikas)", + "Common.Views.SymbolTableDialog.textSpecial": "Erikoismerkit", + "Common.Views.SymbolTableDialog.textSymbols": "Symbolit", + "Common.Views.SymbolTableDialog.textTitle": "Symboli", + "Common.Views.SymbolTableDialog.textTradeMark": "Tavaramerkkisymboli", "Common.Views.UserNameDialog.textDontShow": "Älä kysy uudestaan", "Common.Views.UserNameDialog.textLabel": "Tunniste:", "Common.Views.UserNameDialog.textLabelError": "Tunniste ei voi olla tyhjä.", @@ -692,12 +761,14 @@ "DE.Controllers.LeftMenu.textNoTextFound": "Etsimääsi tietoa ei löytynyt. Ole hyvä ja muokkaa hakuvaihtoehtoja.", "DE.Controllers.LeftMenu.textReplaceSkipped": "Korvaus on suoritettu. {0} tapausta ohitettiin.", "DE.Controllers.LeftMenu.textReplaceSuccess": "Haku on suoritettu. Korvaustapahtumia: {0}", + "DE.Controllers.LeftMenu.txtCompatible": "Asiakirja tallennetaan eri tiedostomuodossa. Se tarjoaa mahdollisuuden käyttää muokkaustyökalun kaikkia toimintoja, mutta voi muuttaa asiakirjan asettelua.
Käytä Lisäasetusten 'Yhteensopivuus' -optiota, jos haluat säilyttää yhteensopivuuden vanhempien MS Word -versioiden kanssa.", "DE.Controllers.LeftMenu.txtUntitled": "Ei otsikkoa", "DE.Controllers.LeftMenu.warnDownloadAs": "Jos jatkat tässä muodossa talletusta, niin kaikki ominaisuudet, paitsi teksti, menetetään.
Oletko varma että haluat jatkaa?", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Jos haluat tallentaa tässä muodossa, osa muotoiluista saattaa kadota.
Haluatko varmasti jatkaa?", "DE.Controllers.LeftMenu.warnReplaceString": "{0} ei ole sopiva erikoismerkki käytettäväksi korvauskentässä.", "DE.Controllers.Main.applyChangesTextText": "Ladataan muutoksia...", "DE.Controllers.Main.applyChangesTitleText": "Ladataan muutoksia", + "DE.Controllers.Main.confirmMaxChangesSize": "Toimintojen koko ylittää palvelimelle asetetun rajan.
Paina \"Kumoa\" peruuttaaksesi viimeisen toiminnon tai paina \"Jatka\" säilyttääksesi toiminnon paikallisesti (sinun tulee ladata tämä tiedosto tai kopioida sen sisältö voidaksesi varmistaa, että kaikki on tallessa).", "DE.Controllers.Main.convertationTimeoutText": "Muunnoksen aikaraja saavutettiin.", "DE.Controllers.Main.criticalErrorExtText": "Klikkaa \"OK\" niin voit palata asiakirjaluetteloon.", "DE.Controllers.Main.criticalErrorTitle": "Virhe", @@ -709,6 +780,8 @@ "DE.Controllers.Main.errorAccessDeny": "Olet yrittämässä toimintoa, johon sinulla ei ole käyttöoikeuksia.
Ole hyvä ja ota yhteyttä asiakirjan palvelimen pääkäyttäjään.", "DE.Controllers.Main.errorBadImageUrl": "Kuvan verkko-osoite on virheellinen", "DE.Controllers.Main.errorCoAuthoringDisconnect": "Palvelimen yhteys menetetty. Asiakirjaa ei voida tällä hetkellä muokata.", + "DE.Controllers.Main.errorComboSeries": "Luodaksesi yhdistelmäkaavion valitse ainakin kaksi tietosarjaa.", + "DE.Controllers.Main.errorCompare": "Asiakirjojen vertailutoiminto ei ole käytössä yhteismuokkaustilassa.", "DE.Controllers.Main.errorConnectToServer": "Asiakirjaa ei voitu tallentaa. Ole hyvä ja tarkista yhteysasetukset tai ota yhteyttä pääkäyttäjään.
Kun klikkaat 'OK' painiketta, sinua pyydetään lataamaan asiakirja.", "DE.Controllers.Main.errorDatabaseConnection": "Ulkoinen virhe.
Tietokannan yhteysvirhe. Ole hyvä ja ota yhteyttä asiakastukeen, jos virhe tuntuu pysyvän.", "DE.Controllers.Main.errorDataEncrypted": "On tullut salattuja muutoksia, joita ei pystytä tulkitsemaan.", @@ -718,7 +791,9 @@ "DE.Controllers.Main.errorEditingDownloadas": "Tapahtui virhe asiakirjan käsittelyn aikana.
Käytä 'Tallenna muodossa' -toimintoa luodaksesi tiedostosta paikallisen varmuuskopion.", "DE.Controllers.Main.errorEditingSaveas": "Tapahtui virhe asiakirjaa käsitellessä.
Käytä 'Tallenna nimellä...' -toimintoa luodaksesi tiedostosta paikallisen varmuuskopion", "DE.Controllers.Main.errorEmailClient": "Sähköpostiohjelmaa ei löydetty.", + "DE.Controllers.Main.errorEmptyTOC": "Aloita sisällysluettelon kokoaminen käyttämällä jotakin Tyyligallerian otsikkotyyliä valittuun tekstinosaan.", "DE.Controllers.Main.errorFilePassProtect": "Asiakirja on suojattu salasanalla ja sitä ei voitu avata.", + "DE.Controllers.Main.errorFileSizeExceed": "Tiedoston koko ylittää palvelimelle asetetun rajan.
Ota yhteyttä asiakirjapalvelimen ylläpitäjään saadaksesi lisätietoja.", "DE.Controllers.Main.errorForceSave": "Tapahtui virhe asiakirjaa tallennettaessa. Käytä 'Lataa muodossa' -toimintoa tallentaaksesi tiedoston levylle tai yritä myöhemmin uudelleen.", "DE.Controllers.Main.errorInconsistentExt": "Tapahtui virhe avatessa tiedostoa.
Tiedoston sisältö ei vastaa tiedostopäätettä.", "DE.Controllers.Main.errorInconsistentExtDocx": "Tapahtui virhe avatessa tiedostoa.
Tiedoston sisältö viittaa tekstiasiakirjoihin (esim. .docx), mutta tiedostopääte on virheellinen: %1", @@ -730,6 +805,8 @@ "DE.Controllers.Main.errorLoadingFont": "Fontteja ei ole ladattu.
Ota yhteyttä asiakirjapalvelimen ylläpitäjään.", "DE.Controllers.Main.errorMailMergeLoadFile": "Lataaminen epäonnistui", "DE.Controllers.Main.errorMailMergeSaveFile": "Yhdistäminen epäonnistui.", + "DE.Controllers.Main.errorNoTOC": "Ei ole sisällysluetteloa, jota päivittää. Voit luoda uuden luettelon Viittaukset-välilehdellä.", + "DE.Controllers.Main.errorPasswordIsNotCorrect": "Antamasi salasana on väärä.
Varmista, ettei CAPS LOCK ole päällä ja että käytät oikeaa kirjainkokoa.", "DE.Controllers.Main.errorProcessSaveResult": "Tallennus epäonnistui.", "DE.Controllers.Main.errorServerVersion": "Editori on päivitetty. Sivu ladataan uudelleen, jotta muutokset voidaan tehdä.", "DE.Controllers.Main.errorSessionAbsolute": "Asiakirjan muokkauksen istunnon aika on erääntynyt. Ole hyvä ja lataa uudelleen sivu.", @@ -737,6 +814,8 @@ "DE.Controllers.Main.errorSessionToken": "Yhteys palvelimelle on keskeytynyt. Ole hyvä ja lataa uudelleen sivu.", "DE.Controllers.Main.errorSetPassword": "Salasanan asettaminen ei onnistunut.", "DE.Controllers.Main.errorStockChart": "Virheellinen rivin järjestys. Jotta voit luoda pörssikaavion, niin aseta tiedot seuraavassa järjestyksessä:
avaushinta, korkein hinta, halvin hinta, sulkuhinta.", + "DE.Controllers.Main.errorSubmit": "Lähettäminen epäonnistui.", + "DE.Controllers.Main.errorTextFormWrongFormat": "Syöttämäsi arvo ei vastaa kentälle asetettua muotoa.", "DE.Controllers.Main.errorToken": "Asiakirjan turvatunnus ei ole oikeassa muodossa.
Ole hyvä ja ota yhteyttä asiakirjan palvelimen pääkäyttäjään.", "DE.Controllers.Main.errorTokenExpire": "Asiakirjan turvatunnus on erääntynyt.
Ole hyvä ja ota yhteyttä asiakirjan palvelimen pääkäyttäjään.", "DE.Controllers.Main.errorUpdateVersion": "Tiedoston versio on muuttunut. Sivu ladataan uudelleen.", @@ -768,6 +847,7 @@ "DE.Controllers.Main.requestEditFailedMessageText": "Joku on paraikaa muokkaamassa tätä asiakirjaa. Ole hyvä ja yritä myöhemmin uudelleen.", "DE.Controllers.Main.requestEditFailedTitleText": "Pääsy kielletty", "DE.Controllers.Main.saveErrorText": "Virhe tapahtui tallennettaessa tiedostoa", + "DE.Controllers.Main.saveErrorTextDesktop": "Tätä tiedostoa ei voida tallentaa tai luoda.
Mahdollisia syitä:
1. Tiedosto on vain-luku -tilassa.
2. Tiedosto on käytössä toisella käyttäjällä.
3. Kiintolevy on täysi tai vioittunut.", "DE.Controllers.Main.saveTextText": "Tallennetaan asiakirjaa...", "DE.Controllers.Main.saveTitleText": "Tallennetaan asiakirjaa", "DE.Controllers.Main.scriptLoadError": "Yhteys on liian hidas, joitakin komponentteja ei voitu ladata. Lataa sivu uudelleen.", @@ -785,9 +865,11 @@ "DE.Controllers.Main.textCloseTip": "Klikkaa ja sulje vinkki", "DE.Controllers.Main.textContactUs": "Ota yhteyttä myyntiin", "DE.Controllers.Main.textContinue": "Jatka", + "DE.Controllers.Main.textConvertEquation": "Tämä yhtälö on luotu yhtälötyökalun vanhemmalla versiolla, jota ei enää tueta. Jos haluat muokata sitä, se täytyy ensin muuntaa Office Math ML -muotoon. Muunnetaanko? ", "DE.Controllers.Main.textCustomLoader": "Huomaa, että lisenssiehtojen mukaisesti sinulla ei ole oikeutta muuttaa latausikkunaa. Ota yhteyttä myyntitiimiimme luodaksesi pyynnön.", "DE.Controllers.Main.textDisconnect": "Yhteys on katkennut", "DE.Controllers.Main.textGuest": "Vierailija", + "DE.Controllers.Main.textHasMacros": "Tiedosto sisältää automaattisia makroja.
Haluatko suorittaa makrot?", "DE.Controllers.Main.textLearnMore": "Lue lisää", "DE.Controllers.Main.textLoadingDocument": "Ladataan asiakirjaa", "DE.Controllers.Main.textLongName": "Syötä nimi, jonka pituus on alle 128 merkkiä.", @@ -802,6 +884,8 @@ "DE.Controllers.Main.textStrict": "Ehdoton tila", "DE.Controllers.Main.textText": "Teksti", "DE.Controllers.Main.textTryUndoRedo": "Peruutus/tee uudelleen -toiminnot eivät ole käytössä yhteismuokkauksen pikatilassa.
Klikkaa \"Ehdoton\" tilan painiketta, jotta voit vaihtaa ehdottomaan yhteismuokkauksen tilaan tai muokata tiedostoa ilman että muut käyttäjät häiritsevät sitä. Tässä tilassa lähetät muutokset vain kun olet tallentanut ne. Voit vaihdella yhteismuokkauksen tilojen välillä editorin Laajennetuissa asetuksissa.", + "DE.Controllers.Main.textTryUndoRedoWarn": "Kumoa/Tee uudelleen -toiminnot eivät ole käytössä nopeassa yhteismuokkaustilassa.", + "DE.Controllers.Main.textUndo": "Kumoa", "DE.Controllers.Main.titleLicenseExp": "Lisenssi erääntynyt", "DE.Controllers.Main.titleLicenseNotActive": "Lisenssi ei ole aktiivinen", "DE.Controllers.Main.titleServerVersion": "Editori päivitetty", @@ -819,12 +903,14 @@ "DE.Controllers.Main.txtCurrentDocument": "Nykyinen asiakirja", "DE.Controllers.Main.txtDiagramTitle": "Kaavion otsikko", "DE.Controllers.Main.txtEditingMode": "Aseta muokkauksen tila...", + "DE.Controllers.Main.txtEndOfFormula": "Odottamaton kaavan lopetus", "DE.Controllers.Main.txtEnterDate": "Syötä päivämäärä", "DE.Controllers.Main.txtErrorLoadHistory": "Historian lataus epäonnistui", "DE.Controllers.Main.txtEvenPage": "Parillinen sivu", "DE.Controllers.Main.txtFiguredArrows": "Kuvionuolet", "DE.Controllers.Main.txtFirstPage": "Ensimmäinen sivu", "DE.Controllers.Main.txtFooter": "Alaosa", + "DE.Controllers.Main.txtFormulaNotInTable": "Kaavaa ei ole taulukossa", "DE.Controllers.Main.txtHeader": "Otsikko", "DE.Controllers.Main.txtHyperlink": "Hyperlinkki", "DE.Controllers.Main.txtIndTooLarge": "Indeksi liian suuri", @@ -835,6 +921,7 @@ "DE.Controllers.Main.txtMissOperator": "Puuttuva operaattori", "DE.Controllers.Main.txtNeedSynchronize": "Sinulla on päivityksiä", "DE.Controllers.Main.txtNone": "Ei mitään", + "DE.Controllers.Main.txtNoTableOfContents": "Asiakirjassa ei ole yhtään otsikkoa. Käytä otsikkotyylejä saadaksesi otsikot näkymään sisällysluettelossa.", "DE.Controllers.Main.txtNoTableOfFigures": "Yhtään kuvioluettelon merkintää ei löytynyt.", "DE.Controllers.Main.txtNoText": "Virhe! Asiakirjassa ei ole määritetyn tyylistä tekstiä.", "DE.Controllers.Main.txtNotInTable": "ei ole taulukossa", @@ -985,6 +1072,10 @@ "DE.Controllers.Main.txtShape_roundRect": "Pyöreäkulmainen suorakulmio", "DE.Controllers.Main.txtShape_rtTriangle": "Oikea kolmio", "DE.Controllers.Main.txtShape_smileyFace": "Hymynaama", + "DE.Controllers.Main.txtShape_snip1Rect": "Suorakulmio, jonka yksi kulma on leikattu", + "DE.Controllers.Main.txtShape_snip2DiagRect": "Suorakulmio, jonka yksi kulma on viistetty", + "DE.Controllers.Main.txtShape_snip2SameRect": "Suorakulmio, jonka kaksi vierekkäistä kulmaa on leikattu", + "DE.Controllers.Main.txtShape_snipRoundRect": "Suorakulmio, jossa yksi kulma on pyöristetty", "DE.Controllers.Main.txtShape_spline": "Käyrä", "DE.Controllers.Main.txtShape_star10": "10-Pisteinen Tähti", "DE.Controllers.Main.txtShape_star12": "12-Pisteinen Tähti", @@ -996,9 +1087,11 @@ "DE.Controllers.Main.txtShape_star6": "6-Pisteinen Tähti", "DE.Controllers.Main.txtShape_star7": "7-Pisteinen Tähti", "DE.Controllers.Main.txtShape_star8": "8-Pisteinen Tähti", + "DE.Controllers.Main.txtShape_stripedRightArrow": "Raidallinen nuoli oikealle", "DE.Controllers.Main.txtShape_sun": "Aurinko", "DE.Controllers.Main.txtShape_teardrop": "Kyynel", "DE.Controllers.Main.txtShape_textRect": "Tekstilaatikko", + "DE.Controllers.Main.txtShape_trapezoid": "Puolisuunnikas", "DE.Controllers.Main.txtShape_triangle": "Kolmio", "DE.Controllers.Main.txtShape_upArrow": "Nuoli ylös", "DE.Controllers.Main.txtShape_wave": "Aalto", @@ -1023,13 +1116,21 @@ "DE.Controllers.Main.txtStyle_No_Spacing": "Ei välejä", "DE.Controllers.Main.txtStyle_Normal": "Normaali", "DE.Controllers.Main.txtStyle_Quote": "Lainaus", + "DE.Controllers.Main.txtStyle_Subtitle": "Alaotsikko", "DE.Controllers.Main.txtStyle_Title": "Otsikko", + "DE.Controllers.Main.txtSyntaxError": "Syntaksivirhe", + "DE.Controllers.Main.txtTableInd": "Taulukon indeksi ei voi olla nolla", "DE.Controllers.Main.txtTableOfContents": "Sisällysluettelo", + "DE.Controllers.Main.txtTableOfFigures": "Luettelo kuvista", + "DE.Controllers.Main.txtTOCHeading": "Sisällysluettelon otsikko", "DE.Controllers.Main.txtTooLarge": "Numero on liian suuri", + "DE.Controllers.Main.txtTypeEquation": "Kirjoita yhtälö tähän.", + "DE.Controllers.Main.txtUndefBookmark": "Määrittämätön kirjanmerkki", "DE.Controllers.Main.txtXAxis": "X akseli", "DE.Controllers.Main.txtYAxis": "Y akseli", "DE.Controllers.Main.unknownErrorText": "Tuntematon virhe. ", "DE.Controllers.Main.unsupportedBrowserErrorText": "Selaintasi ei ole tuettu", + "DE.Controllers.Main.uploadDocExtMessage": "Tunnistamaton tiedostomuoto.", "DE.Controllers.Main.uploadDocFileCountMessage": "Ei asiakirjoja lähetetty.", "DE.Controllers.Main.uploadDocSizeMessage": "Asiakirjan maksimikoko ylittyi.", "DE.Controllers.Main.uploadImageExtMessage": "Tuntematon kuvan formaatti.", @@ -1053,6 +1154,8 @@ "DE.Controllers.Print.txtCustom": "Mukautettu", "DE.Controllers.Print.txtPrintRangeInvalid": "Virheellinen tulostusalue", "DE.Controllers.Print.txtPrintRangeSingleRange": "Syötä joko yksittäinen sivunumero tai yksittäinen sivualue (esim. 5-12). Voit myös tulostaa PDF-tiedostoon.", + "DE.Controllers.Search.textNoTextFound": "Etsimääsi tietoa ei löytynyt. Ole hyvä ja muokkaa hakuvaihtoehtoja.", + "DE.Controllers.Search.textReplaceSkipped": "Korvaus on suoritettu. {0} tapausta ohitettiin.", "DE.Controllers.Search.textReplaceSuccess": "Haku on valmis. {0} osumaa korvattu", "DE.Controllers.Search.warnReplaceString": "{0} ei ole sopiva erikoismerkki käytettäväksi korvaustyökalussa.", "DE.Controllers.Statusbar.textDisconnect": "Connection is lost
Yhteyttä yritetään luoda. Tarkasta yhteysasetukset.", @@ -1404,6 +1507,7 @@ "DE.Controllers.Toolbar.txtSymbol_vdots": "Vertikaalinen ellipsi", "DE.Controllers.Toolbar.txtSymbol_xsi": "Xi", "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "DE.Controllers.Toolbar.txtUntitled": "Ei otsikkoa", "DE.Controllers.Viewport.textFitPage": "Sovita sivulle", "DE.Controllers.Viewport.textFitWidth": "Sovita leveyden mukaan", "DE.Controllers.Viewport.txtDarkMode": "Tumma tila", @@ -1441,9 +1545,12 @@ "DE.Views.CaptionDialog.textLongDash": "ajatusviiva", "DE.Views.CaptionDialog.textNumbering": "Numerointi", "DE.Views.CaptionDialog.textPeriod": "piste", + "DE.Views.CaptionDialog.textTable": "Taulukko", "DE.Views.CaptionDialog.textTitle": "Lisää otsikko", "DE.Views.CellsAddDialog.textCol": "Sarakkeet", "DE.Views.CellsAddDialog.textDown": "Kohdistimen alapuolella", + "DE.Views.CellsAddDialog.textLeft": "Vasemmalle", + "DE.Views.CellsAddDialog.textRight": "Oikealle", "DE.Views.CellsAddDialog.textRow": "Rivit", "DE.Views.CellsAddDialog.textTitle": "Lisää useita", "DE.Views.CellsAddDialog.textUp": "Kohdistimen yläpuolella", @@ -1466,6 +1573,7 @@ "DE.Views.ChartSettings.textSize": "Koko", "DE.Views.ChartSettings.textStyle": "Tyyli", "DE.Views.ChartSettings.textUndock": "Irrota paneelista", + "DE.Views.ChartSettings.textUp": "Ylös", "DE.Views.ChartSettings.textWidth": "Leveys", "DE.Views.ChartSettings.textWrap": "Rivityksen tyyli", "DE.Views.ChartSettings.txtBehind": "Takana", @@ -1498,8 +1606,11 @@ "DE.Views.ControlSettingsDialog.textNone": "Ei mitään", "DE.Views.ControlSettingsDialog.textPlaceholder": "Paikanpitäjä", "DE.Views.ControlSettingsDialog.textShowAs": "Näytä muodossa", + "DE.Views.ControlSettingsDialog.textSystemColor": "Järjestelmä", "DE.Views.ControlSettingsDialog.textTag": "Tunniste", "DE.Views.ControlSettingsDialog.textTitle": "Sisällönhallinnan asetukset", + "DE.Views.ControlSettingsDialog.textUnchecked": "valitsematon -symboli", + "DE.Views.ControlSettingsDialog.textUp": "Ylös", "DE.Views.ControlSettingsDialog.tipChange": "Vaihda symboli", "DE.Views.ControlSettingsDialog.txtLockDelete": "Sisällönhallintaa ei voida poistaa", "DE.Views.ControlSettingsDialog.txtLockEdit": "Sisätöä ei voida muokata", @@ -1508,6 +1619,7 @@ "DE.Views.CrossReferenceDialog.textBookmark": "Kirjanmerkki", "DE.Views.CrossReferenceDialog.textBookmarkText": "Kirjanmerkin teksti", "DE.Views.CrossReferenceDialog.textCaption": "Koko kuvateksti", + "DE.Views.CrossReferenceDialog.textEmpty": "Pyydetty viite on tyhjä.", "DE.Views.CrossReferenceDialog.textEndnote": "Loppuviite", "DE.Views.CrossReferenceDialog.textEndNoteNum": "Loppuviitteen numero", "DE.Views.CrossReferenceDialog.textEndNoteNumForm": "Loppuviitteen numero (muotoiltu)", @@ -1532,6 +1644,7 @@ "DE.Views.CrossReferenceDialog.textParaNumFull": "Kappaleen numero (koko sisältö)", "DE.Views.CrossReferenceDialog.textParaNumNo": "Kappaleen numero (ei sisältöä)", "DE.Views.CrossReferenceDialog.textSeparate": "Erota numerot merkillä", + "DE.Views.CrossReferenceDialog.textTable": "Taulukko", "DE.Views.CrossReferenceDialog.textText": "Kappaleen teksti", "DE.Views.CrossReferenceDialog.textWhich": "Mihin otsikkoon", "DE.Views.CrossReferenceDialog.textWhichBookmark": "Mille kirjanmerkille", @@ -1546,6 +1659,7 @@ "DE.Views.CustomColumnsDialog.textEqualWidth": "Yhtenäinen sarakkeenleveys", "DE.Views.CustomColumnsDialog.textSeparator": "Sarakkeiden jakaja", "DE.Views.CustomColumnsDialog.textTitle": "Sarakkeet", + "DE.Views.CustomColumnsDialog.textTitleSpacing": "Välistys", "DE.Views.DateTimeDialog.confirmDefault": "Aseta oletusmuotoilu {0}: \"{1}\"", "DE.Views.DateTimeDialog.textDefault": "Aseta oletukseksi", "DE.Views.DateTimeDialog.textFormat": "Muodot", @@ -1558,6 +1672,7 @@ "DE.Views.DocProtection.txtDocProtectedView": "Asiakirja on suojattu.
Voit ainoastaan katsella tätä asiakirjaa.", "DE.Views.DocProtection.txtDocUnlockDescription": "Syötä salasana poistaaksesi asiakirjan suojauksen.", "DE.Views.DocProtection.txtProtectDoc": "Suojaa asiakirja", + "DE.Views.DocProtection.txtUnlockTitle": "Pura asiakirjan suojaus", "DE.Views.DocumentHolder.aboveText": "Yllä", "DE.Views.DocumentHolder.addCommentText": "Lisää kommentti", "DE.Views.DocumentHolder.advancedDropCapText": "Kappaleen aloittavan kirjaimen pudotuksen asetukset", @@ -1622,10 +1737,13 @@ "DE.Views.DocumentHolder.selectTableText": "Valitse taulukko", "DE.Views.DocumentHolder.selectText": "Valitse", "DE.Views.DocumentHolder.shapeText": "Muodon laajennetut asetukset", + "DE.Views.DocumentHolder.showEqToolbar": "Näytä Yhtälö-työkalurivi", "DE.Views.DocumentHolder.spellcheckText": "Oikeinkirjoituksen tarkistus", "DE.Views.DocumentHolder.splitCellsText": "Jaa solu...", "DE.Views.DocumentHolder.splitCellTitleText": "Jaa solu", "DE.Views.DocumentHolder.strDelete": "Poista allekirjoitus", + "DE.Views.DocumentHolder.strDetails": "Allekirjoituksen yksityiskohdat", + "DE.Views.DocumentHolder.strSetup": "Allekirjoituksen asettaminen", "DE.Views.DocumentHolder.strSign": "Allekirjoita", "DE.Views.DocumentHolder.styleText": "Muotoilu tyylin mukaan", "DE.Views.DocumentHolder.tableText": "Taulukko", @@ -1688,9 +1806,11 @@ "DE.Views.DocumentHolder.textShapeAlignMiddle": "Tasaa keskelle", "DE.Views.DocumentHolder.textShapeAlignRight": "Tasaa oikea", "DE.Views.DocumentHolder.textShapeAlignTop": "Tasaa ylös", + "DE.Views.DocumentHolder.textStartNewList": "Aloita uusi luettelo", "DE.Views.DocumentHolder.textStartNumberingFrom": "Syötä numeroinnin arvo", "DE.Views.DocumentHolder.textTitleCellsRemove": "Poista solut", "DE.Views.DocumentHolder.textTOC": "Sisällysluettelo", + "DE.Views.DocumentHolder.textTOCSettings": "Sisällysluettelon asetukset", "DE.Views.DocumentHolder.textUndo": "Kumoa", "DE.Views.DocumentHolder.textWrap": "Rivityksen tyyli", "DE.Views.DocumentHolder.tipIsLocked": "Toinen käyttäjä muokkaa paraikaa tätä elementtiä.", @@ -1787,6 +1907,7 @@ "DE.Views.DocumentHolder.txtUnderbar": "Tekstin alapalkki", "DE.Views.DocumentHolder.txtUngroup": "Poista ryhmitys", "DE.Views.DocumentHolder.txtWarnUrl": "Tämän linkin avaaminen voi vahingoittaa laitetta ja tietoja.
Haluatko varmasti jatkaa?", + "DE.Views.DocumentHolder.unicodeText": "Unicode", "DE.Views.DocumentHolder.updateStyleText": "Päivitä %1 tyyli", "DE.Views.DocumentHolder.vertAlignText": "Vertikaalinen tasaus", "DE.Views.DropcapSettingsAdvanced.strBorders": "Reunukset & Täyttö", @@ -1874,12 +1995,15 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Sivun koko", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragraphs", "DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer": "PDF-luoja", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged": "PDF tunnisteilla", "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF versio", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Sijainti", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Henkilöt, joilla ovat oikeudet", "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Merkkiä välilyönneillä", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Tilastot", + "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Aihe", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbolit", + "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tunnisteet", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Asiakirjan otsikko", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Sanat", "DE.Views.FileMenuPanels.DocumentRights.txtAccessRights": "Pääsyoikeudet", @@ -1890,7 +2014,10 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtAddSignature": "Varmista asiakirjan eheys lisäämällä
näkymätön digitaalinen allekirjoitus", "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Muokkaa asiakirjaa", "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Muokkaaminen poistaa tiedoston allekirjoitukset.
Jatketaanko?", + "DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Asiakirja on suojattu salasanalla.", "DE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument": "Käytä salasanasuojattua salausta tässä asiakirjassa", + "DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Asiakirja täytyy allekirjoittaa.", + "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Kaikki asiakirjan digitaaliset allekirjoitukset eivät ole kelvollisia tai niitä ei voitu varmistaa. Asiakirja on suojattu muokkauksilta.", "DE.Views.FileMenuPanels.Settings.okButtonText": "Käytä", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Yhteismuokkauksen tila", "DE.Views.FileMenuPanels.Settings.strFast": "Nopea", @@ -1898,7 +2025,11 @@ "DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Sivuuta ISOLLA kirjoitetut sanat", "DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Sivuuta sanat, joissa on numeroita", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makroasetukset", + "DE.Views.FileMenuPanels.Settings.strPasteButton": "Näytä Liittämisasetukset -painike kun Liitä-toimintoa käytetään", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Reaaliaikaiset yhteistyöhön perustuvat muutokset ", + "DE.Views.FileMenuPanels.Settings.strShowComments": "Näytä kommentit tekstissä", + "DE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Näytä toisten käyttäjien tekemät muutokset", + "DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Näytä ratkaistut kommentit", "DE.Views.FileMenuPanels.Settings.strStrict": "Ehdoton", "DE.Views.FileMenuPanels.Settings.strTheme": "Käyttöliittymän teema", "DE.Views.FileMenuPanels.Settings.strUnit": "Mittausyksikkö", @@ -1922,6 +2053,7 @@ "DE.Views.FileMenuPanels.Settings.txtChangesTip": "Näytä vihjeet osoittamalla hiirellä", "DE.Views.FileMenuPanels.Settings.txtCm": "Senttimetriä", "DE.Views.FileMenuPanels.Settings.txtCollaboration": "Yhteistoiminta", + "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Ota tumma tila käyttöön asiakirjassa", "DE.Views.FileMenuPanels.Settings.txtEditingSaving": "Muokkaus ja tallennus", "DE.Views.FileMenuPanels.Settings.txtFastTip": "Reaaliaikainen yhteismuokkaus. Kaikki muutokset tallennetaan automaattisesti", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Sovita sivulle", @@ -1935,11 +2067,16 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "Älä näytä mitään", "DE.Views.FileMenuPanels.Settings.txtProofing": "Oikeinkirjoitus", "DE.Views.FileMenuPanels.Settings.txtPt": "Piste", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Näytä Pikatulostus-painike editorin yläpalkissa", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Asiakirja tulostetaan viimeksi käytetyllä tulostimella tai oletustulostimella", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Ota käyttöön kaikki", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Ota käyttöön kaikki makrot ilman ilmoitusta", + "DE.Views.FileMenuPanels.Settings.txtScreenReader": "Ota käyttöön tuki ruudunlukuohjelmalle", + "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Näytä seuratut muutokset", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Oikeinkirjoituksen tarkistus", "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Poista kaikki käytöstä", "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Poista käytöstä kaikki makrot ilman ilmoitusta", + "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Näytä ilmoitus", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Poista kaikki ilmoitusmakrot käytöstä", "DE.Views.FileMenuPanels.Settings.txtWin": "kuten Windows", "DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs": "Lataa muodossa", @@ -1967,6 +2104,7 @@ "DE.Views.FormSettings.textDisconnect": "Katkaise yhteys", "DE.Views.FormSettings.textDropDown": "Pudotusvalikko", "DE.Views.FormSettings.textExact": "Täsmälleen", + "DE.Views.FormSettings.textField": "Tekstikenttä", "DE.Views.FormSettings.textFixed": "Kiinteäkokoinen kenttä", "DE.Views.FormSettings.textFormat": "Muoto", "DE.Views.FormSettings.textFormatSymbols": "Sallitut symbolit", @@ -1994,12 +2132,16 @@ "DE.Views.FormSettings.textReg": "Regular Expression", "DE.Views.FormSettings.textRequired": "Vaaditaan", "DE.Views.FormSettings.textSelectImage": "Valitse kuva", + "DE.Views.FormSettings.textTag": "Tunniste", + "DE.Views.FormSettings.textTip": "Vihje", "DE.Views.FormSettings.textTipAdd": "Lisää arvo", "DE.Views.FormSettings.textTipDelete": "Poista arvo", "DE.Views.FormSettings.textTipDown": "Siirrä alas", "DE.Views.FormSettings.textTipUp": "Siirrä ylös", "DE.Views.FormSettings.textTooBig": "Kuva on liian suuri", "DE.Views.FormSettings.textTooSmall": "Kuva on liian pieni", + "DE.Views.FormSettings.textUKPassport": "Iso-Britannian passinumero (esim. 925665416)", + "DE.Views.FormSettings.textUnlock": "Avaa lukitus", "DE.Views.FormSettings.textWidth": "Solun leveys", "DE.Views.FormsTab.capBtnCheckBox": "Valintaruutu", "DE.Views.FormsTab.capBtnComboBox": "Yhdistelmälaatikko", @@ -2014,6 +2156,8 @@ "DE.Views.FormsTab.capBtnPrev": "Edellinen kenttä", "DE.Views.FormsTab.capBtnRadioBox": "Kytkin", "DE.Views.FormsTab.capBtnSaveForm": "Tallenna PDF-muodossa", + "DE.Views.FormsTab.capBtnSubmit": "Lähetä", + "DE.Views.FormsTab.capBtnText": "Tekstikenttä", "DE.Views.FormsTab.capCreditCard": "Luottokortti", "DE.Views.FormsTab.capDateTime": "Pvm & Kellonaika", "DE.Views.FormsTab.textAnyone": "Kuka tahansa", @@ -2028,6 +2172,7 @@ "DE.Views.FormsTab.tipCheckBox": "Lisää valintaruutu", "DE.Views.FormsTab.tipComboBox": "Lisää yhdistelmävalikko", "DE.Views.FormsTab.tipComplexField": "Lisää monimuotoinen kenttä", + "DE.Views.FormsTab.tipCreateField": "Valitse haluamasi kenttätyyppi työkaluriviltä ja klikkaa sitä tuodaksesi sen asiakirjaan.", "DE.Views.FormsTab.tipCreditCard": "Lisää luottokortin numero", "DE.Views.FormsTab.tipDateTime": "Lisää päivämäärä ja aika", "DE.Views.FormsTab.tipDownloadForm": "Lataa tiedosto täytettävänä PDF-lomakkeena", @@ -2046,18 +2191,21 @@ "DE.Views.FormsTab.tipRolesLink": "Lue lisää rooleista", "DE.Views.FormsTab.tipSaveFile": "Klikkaa \"Tallenna pdf-muodossa\" tallentaaksesi lomakkeen täyttämistä vaille valmiina.", "DE.Views.FormsTab.tipSaveForm": "Tallena täytettvänä PDF-lomakkeena", + "DE.Views.FormsTab.tipSubmit": "Lähetä lomake", "DE.Views.FormsTab.tipTextField": "Lisää tekstikenttä", "DE.Views.FormsTab.tipZipCode": "Lisää postinumero", "DE.Views.FormsTab.txtFixedDesc": "Lisää kiinteä tekstikenttä", "DE.Views.FormsTab.txtFixedText": "Korjattu", "DE.Views.FormsTab.txtInlineDesc": "Lisää tekstikenttä", "DE.Views.FormsTab.txtInlineText": "Linjassa", + "DE.Views.FormsTab.txtUntitled": "Ei otsikkoa", "DE.Views.HeaderFooterSettings.textBottomCenter": "Alhaalla keskellä", "DE.Views.HeaderFooterSettings.textBottomLeft": "Alhaalla vasemmalla", "DE.Views.HeaderFooterSettings.textBottomPage": "Sivun alaosassa", "DE.Views.HeaderFooterSettings.textBottomRight": "Alhaalla oikealla", "DE.Views.HeaderFooterSettings.textDiffFirst": "Erilainen alkusivu", "DE.Views.HeaderFooterSettings.textDiffOdd": "Erilaiset parittomat ja parilliset sivut", + "DE.Views.HeaderFooterSettings.textFrom": "Aloita:", "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Alavyöhyke alhaalta", "DE.Views.HeaderFooterSettings.textHeaderFromTop": "Ylävyöhyke ylhäältä", "DE.Views.HeaderFooterSettings.textInsertCurrent": "Lisää nykyiseen sijaintiin", @@ -2069,6 +2217,7 @@ "DE.Views.HeaderFooterSettings.textSameAs": "Linkki edelliseen", "DE.Views.HeaderFooterSettings.textTopCenter": "Ylhäällä keskellä", "DE.Views.HeaderFooterSettings.textTopLeft": "Ylhäällä vasemmalla", + "DE.Views.HeaderFooterSettings.textTopPage": "Sivun yläreuna", "DE.Views.HeaderFooterSettings.textTopRight": "Ylhäällä oikealla", "DE.Views.HyperlinkSettingsDialog.textDefault": "Valitse tekstin pala", "DE.Views.HyperlinkSettingsDialog.textDisplay": "Näyttö", @@ -2082,6 +2231,7 @@ "DE.Views.HyperlinkSettingsDialog.txtEmpty": "Tämä kenttä tarvitaan", "DE.Views.HyperlinkSettingsDialog.txtHeadings": "Otsikot", "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Tämän tiedoston tulisi olla verkko-osoite \"http://www.esimerkki.com\" muodossa", + "DE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Tämä kenttä on rajoitettu 2083 merkkiin", "DE.Views.HyphenationDialog.textAuto": "Automaattinen tavutus", "DE.Views.HyphenationDialog.textCaps": "Tavuta isolla kirjoitetut sanat", "DE.Views.HyphenationDialog.textLimit": "Rajoita peräkkäiser yhdysmerkit", @@ -2125,6 +2275,7 @@ "DE.Views.ImageSettingsAdvanced.textAlignment": "Tasaus", "DE.Views.ImageSettingsAdvanced.textAlt": "Vaihtoehtoinen teksti", "DE.Views.ImageSettingsAdvanced.textAltDescription": "Kuvaus", + "DE.Views.ImageSettingsAdvanced.textAltTip": "Visuaalisen kohteen vaihtoehtoinen, tekstipohjainen kuvaus, joka luetaan henkilöille, joilla on näkövamma tai kognitiivisia vaikeuksia ja joka auttaa heitä paremmin ymmärtämään kuvan, muodon tai taulukon sisältämää tietoa.", "DE.Views.ImageSettingsAdvanced.textAltTitle": "Otsikko", "DE.Views.ImageSettingsAdvanced.textAngle": "Kulma", "DE.Views.ImageSettingsAdvanced.textArrows": "Nuolet", @@ -2176,6 +2327,7 @@ "DE.Views.ImageSettingsAdvanced.textShape": "Muodon asetukset", "DE.Views.ImageSettingsAdvanced.textSize": "Koko", "DE.Views.ImageSettingsAdvanced.textSquare": "Neliö", + "DE.Views.ImageSettingsAdvanced.textTextBox": "Tekstilaatikko", "DE.Views.ImageSettingsAdvanced.textTitle": "Kuva - Laajennetut Asetukset", "DE.Views.ImageSettingsAdvanced.textTitleChart": "Kaavio - Laajennetut asetukset", "DE.Views.ImageSettingsAdvanced.textTitleShape": "Muoto - Laajennetut asetukset", @@ -2205,15 +2357,19 @@ "DE.Views.LeftMenu.txtDeveloper": "KEHITTÄJÄN TILA", "DE.Views.LeftMenu.txtEditor": "Asiakirjan muokkaustyökalu", "DE.Views.LeftMenu.txtLimit": "Rajoita pääsyä", + "DE.Views.LeftMenu.txtTrial": "KOKEILUVERSIO", + "DE.Views.LeftMenu.txtTrialDev": "Kehittäjätilan kokeiluversio", "DE.Views.LineNumbersDialog.textAddLineNumbering": "Lisää rivinumerointi", "DE.Views.LineNumbersDialog.textApplyTo": "Hyväksy muutokset", "DE.Views.LineNumbersDialog.textContinuous": "Jatkuva", "DE.Views.LineNumbersDialog.textCountBy": "Laskuväli", + "DE.Views.LineNumbersDialog.textForward": "Tästä kohdasta eteenpäin", "DE.Views.LineNumbersDialog.textFromText": "Tekstistä", "DE.Views.LineNumbersDialog.textNumbering": "Numerointi", "DE.Views.LineNumbersDialog.textRestartEachPage": "Aloita uudelleen jokainen sivu", "DE.Views.LineNumbersDialog.textRestartEachSection": "Aloita uudelleen jokainen osio", "DE.Views.LineNumbersDialog.textSection": "Nykyinen osio", + "DE.Views.LineNumbersDialog.textStartAt": "Aloita:", "DE.Views.LineNumbersDialog.textTitle": "Rivinumerot", "DE.Views.LineNumbersDialog.txtAutoText": "Automaattinen", "DE.Views.Links.capBtnAddText": "Lisää tekstiä", @@ -2224,6 +2380,7 @@ "DE.Views.Links.capBtnInsContents": "Sisällysluettelo", "DE.Views.Links.capBtnInsFootnote": "Alaviite", "DE.Views.Links.capBtnInsLink": "Linkki", + "DE.Views.Links.capBtnTOF": "Luettelo kuvista", "DE.Views.Links.confirmDeleteFootnotes": "Haluatko poistaa kaikki alaviitteet?", "DE.Views.Links.confirmReplaceTOF": "Haluatko korvata valitun taulukon?", "DE.Views.Links.mniConvertNote": "Muunna kaikki muistiinpanot", @@ -2237,6 +2394,7 @@ "DE.Views.Links.textConvertToFootnotes": "Muunna kaikki loppuviitteet alaviitteiksi", "DE.Views.Links.textGotoEndnote": "Siirry loppuviitteisiin", "DE.Views.Links.textGotoFootnote": "Siirry alaviitteisiin", + "DE.Views.Links.textSwapNotes": "Vaihda alaviitteet ja loppuviitteet", "DE.Views.Links.tipAddText": "Sisällytä otsikko sisällysluetteloon", "DE.Views.Links.tipBookmarks": "Luo kirjanmerkki", "DE.Views.Links.tipCaption": "Lisää otsikko", @@ -2247,9 +2405,12 @@ "DE.Views.Links.tipTableFigures": "Lisää kuvioluettelo", "DE.Views.Links.txtDontShowTof": "Älä näytä sisällysluettelossa", "DE.Views.Links.txtLevel": "Taso", + "DE.Views.ListIndentsDialog.textSpace": "Väli", + "DE.Views.ListIndentsDialog.textTab": "Sarkainmerkki", "DE.Views.ListIndentsDialog.textTitle": "Luettelon sisennykset", "DE.Views.ListIndentsDialog.txtFollowBullet": "Luettelomerkkiä seuraa", "DE.Views.ListIndentsDialog.txtFollowNumber": "Numeron jälkeen tulee", + "DE.Views.ListIndentsDialog.txtIndent": "Tekstin sisennys", "DE.Views.ListIndentsDialog.txtNone": "Ei mitään", "DE.Views.ListIndentsDialog.txtPosBullet": "Luettelomerkin sijainti", "DE.Views.ListIndentsDialog.txtPosNumber": "Numeron sijainti", @@ -2260,9 +2421,12 @@ "DE.Views.ListSettingsDialog.textItalic": "Kursivoitu", "DE.Views.ListSettingsDialog.textLeft": "Vasen", "DE.Views.ListSettingsDialog.textLevel": "Taso", + "DE.Views.ListSettingsDialog.textMore": "Näytä lisää asetuksia", "DE.Views.ListSettingsDialog.textPreview": "Esikatsele", "DE.Views.ListSettingsDialog.textRight": "Oikea", "DE.Views.ListSettingsDialog.textSelectLevel": "Valitse taso", + "DE.Views.ListSettingsDialog.textSpace": "Väli", + "DE.Views.ListSettingsDialog.textTab": "Sarkainmerkki", "DE.Views.ListSettingsDialog.txtAlign": "Tasaus", "DE.Views.ListSettingsDialog.txtAlignAt": "kello", "DE.Views.ListSettingsDialog.txtBullet": "Luettelomerkki", @@ -2270,14 +2434,19 @@ "DE.Views.ListSettingsDialog.txtFollow": "Numeron jälkeen tulee", "DE.Views.ListSettingsDialog.txtFontName": "Fontti", "DE.Views.ListSettingsDialog.txtInclcudeLevel": "Sisällytä tasonumero", + "DE.Views.ListSettingsDialog.txtIndent": "Tekstin sisennys", "DE.Views.ListSettingsDialog.txtLikeText": "Kuin teksi", "DE.Views.ListSettingsDialog.txtMoreTypes": "Lisää tyyppejä", "DE.Views.ListSettingsDialog.txtNewBullet": "Uusi luettelo", "DE.Views.ListSettingsDialog.txtNone": "Ei mitään", "DE.Views.ListSettingsDialog.txtNumFormatString": "Numeron muoto", "DE.Views.ListSettingsDialog.txtRestart": "Aloita luettelointi alusta", + "DE.Views.ListSettingsDialog.txtSize": "Koko", + "DE.Views.ListSettingsDialog.txtStart": "Aloita:", + "DE.Views.ListSettingsDialog.txtSymbol": "Symboli", "DE.Views.ListSettingsDialog.txtTabStop": "Lisää sarkain kohtaan", "DE.Views.ListSettingsDialog.txtTitle": "Luettelon asetukset", + "DE.Views.ListSettingsDialog.txtType": "Tyyppi", "DE.Views.ListTypesAdvanced.labelSelect": "Valitse luettelotyyppi", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "Lähetä", @@ -2330,7 +2499,9 @@ "DE.Views.Navigation.txtClosePanel": "Sulje otsikot", "DE.Views.Navigation.txtCollapse": "Piilota kaikki", "DE.Views.Navigation.txtDemote": "Alenna", + "DE.Views.Navigation.txtEmpty": "Asiakirjassa ei ole yhtään otsikkoa.
Käytä otsikkotyylejä saadaksesi otsikot näkymään sisällysluettelossa.", "DE.Views.Navigation.txtEmptyItem": "Tyhjä otsikko", + "DE.Views.Navigation.txtEmptyViewer": "Asiakirjassa ei ole yhtään otsikkoa.", "DE.Views.Navigation.txtExpand": "Näytä kaikki", "DE.Views.Navigation.txtExpandToLevel": "Laajenna tasolle", "DE.Views.Navigation.txtFontSize": "Fonttikoko", @@ -2342,6 +2513,7 @@ "DE.Views.Navigation.txtPromote": "Korota tasoa", "DE.Views.Navigation.txtSelect": "Valitse sisältö", "DE.Views.Navigation.txtSettings": "Otsikkoasetukset", + "DE.Views.Navigation.txtSmall": "Pieni", "DE.Views.NoteSettingsDialog.textApply": "Käytä", "DE.Views.NoteSettingsDialog.textApplyTo": "Käytä muutokset:", "DE.Views.NoteSettingsDialog.textContinue": "Jatkuva", @@ -2393,9 +2565,12 @@ "DE.Views.PageThumbnails.textClosePanel": "Sulje sivun pikkukuvat", "DE.Views.PageThumbnails.textHighlightVisiblePart": "Korosta sivun näkyvä osa", "DE.Views.PageThumbnails.textPageThumbnails": "Sivun pikkukuvat", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Esikatselukuvien asetukset", + "DE.Views.PageThumbnails.textThumbnailsSize": "Esikatselukuvien koko", "DE.Views.ParagraphSettings.strIndent": "Sisennykset", "DE.Views.ParagraphSettings.strIndentsLeftText": "Vasen", "DE.Views.ParagraphSettings.strIndentsRightText": "Oikea", + "DE.Views.ParagraphSettings.strIndentsSpecial": "Erityinen", "DE.Views.ParagraphSettings.strLineHeight": "Viivaväli", "DE.Views.ParagraphSettings.strParagraphSpacing": "Kappaleväli", "DE.Views.ParagraphSettings.strSomeParagraphSpace": "Älä lisää kappalevälejä samalla tyylillä", @@ -2434,9 +2609,11 @@ "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Sijoitus", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Kapiteelit", "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Älä lisää kappalevälejä samalla tyylillä", + "DE.Views.ParagraphSettingsAdvanced.strSpacing": "Väli", "DE.Views.ParagraphSettingsAdvanced.strStrike": "Yliviivaus", "DE.Views.ParagraphSettingsAdvanced.strSubscript": "Alaindeksi", "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Yläindeksi", + "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Piilota rivinumerot", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Välilehti", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Tasaus", "DE.Views.ParagraphSettingsAdvanced.textAll": "Kaikki", @@ -2476,6 +2653,13 @@ "DE.Views.ParagraphSettingsAdvanced.textRight": "Oikea", "DE.Views.ParagraphSettingsAdvanced.textSet": "Määrittele", "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Väli", + "DE.Views.ParagraphSettingsAdvanced.textStandard": "Vain standardi", + "DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standardi ja kontekstuaalinen", + "DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standardi, kontekstuaalinen ja harkinnanvarainen", + "DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standardi, kontekstuaalinen ja historiallinen", + "DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standardi ja harkinnanvarainen", + "DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standardi, historiallinen ja harkinnanvarainen", + "DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standardi ja historialinen", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Keskellä", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Vasen", "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Välilehden asema", @@ -2522,8 +2706,10 @@ "DE.Views.PrintWithPreview.txtPrintSides": "Tulosta sivun puolille", "DE.Views.PrintWithPreview.txtRight": "Oikea", "DE.Views.PrintWithPreview.txtSelection": "Valinta", + "DE.Views.PrintWithPreview.txtTop": "Yläosa", "DE.Views.ProtectDialog.textComments": "Kommentit", "DE.Views.ProtectDialog.textForms": "Lomakkeiden täyttäminen", + "DE.Views.ProtectDialog.textReview": "Seuratut muutokset", "DE.Views.ProtectDialog.textView": "Ei muutoksia (vain-luku)", "DE.Views.ProtectDialog.txtAllow": "Salli vain tämäntyyppinen muokkaus", "DE.Views.ProtectDialog.txtIncorrectPwd": "Salasanat eivät vastaa toisiaan", @@ -2540,8 +2726,10 @@ "DE.Views.RightMenu.txtMailMergeSettings": "Sähköpostin yhdistämisen asetukset", "DE.Views.RightMenu.txtParagraphSettings": "Kappaleen asetukset", "DE.Views.RightMenu.txtShapeSettings": "Muodon asetukset", + "DE.Views.RightMenu.txtSignatureSettings": "Allekirjoitusasetukset", "DE.Views.RightMenu.txtTableSettings": "Taulukon asetukset", "DE.Views.RightMenu.txtTextArtSettings": "Taiteellisen tekstin asetukset", + "DE.Views.RoleDeleteDlg.textLabel": "Poistaaksesi tämän roolin sinun tulee ensin siirtää tähän rooliin liitetyt kentät johonkin toiseen rooliin.", "DE.Views.RoleDeleteDlg.textSelect": "Valitse kentän yhdistämisrooli", "DE.Views.RoleDeleteDlg.textTitle": "Poista rooli", "DE.Views.RoleEditDlg.errNameExists": "Samanniminen rooli on jo olemassa.", @@ -2564,6 +2752,7 @@ "DE.Views.RolesManagerDlg.warnDelete": "Oletko varma, että haluat poistaa roolin {0}?", "DE.Views.SaveFormDlg.saveButtonText": "Tallenna", "DE.Views.SaveFormDlg.textAnyone": "Kuka tahansa", + "DE.Views.SaveFormDlg.textEmpty": "Kenttiin liittyviä rooleja ei ole.", "DE.Views.SaveFormDlg.textFill": "Täyttölista", "DE.Views.SaveFormDlg.txtTitle": "Tallenna lomakkeena", "DE.Views.ShapeSettings.strBackground": "Taustan väri", @@ -2572,6 +2761,7 @@ "DE.Views.ShapeSettings.strFill": "Täytä", "DE.Views.ShapeSettings.strForeground": "Etualan väri", "DE.Views.ShapeSettings.strPattern": "Kuvio", + "DE.Views.ShapeSettings.strShadow": "Näytä varjo", "DE.Views.ShapeSettings.strSize": "Koko", "DE.Views.ShapeSettings.strStroke": "Viiva", "DE.Views.ShapeSettings.strTransparency": "Läpikuultamattomuus", @@ -2633,13 +2823,18 @@ "DE.Views.ShapeSettings.txtWood": "Puu", "DE.Views.SignatureSettings.notcriticalErrorTitle": "Varoitus", "DE.Views.SignatureSettings.strDelete": "Poista allekirjoitus", + "DE.Views.SignatureSettings.strDetails": "Allekirjoituksen yksityiskohdat", "DE.Views.SignatureSettings.strInvalid": "Virheelliset allekirjoitukset", "DE.Views.SignatureSettings.strRequested": "Pyydetyt allekirjoitukset", + "DE.Views.SignatureSettings.strSetup": "Allekirjoituksen asettaminen", "DE.Views.SignatureSettings.strSign": "Allekirjoita", "DE.Views.SignatureSettings.strSignature": "Allekirjoitus", + "DE.Views.SignatureSettings.strSigner": "Allekirjoittaja", "DE.Views.SignatureSettings.txtContinueEditing": "Muokkaa silti", "DE.Views.SignatureSettings.txtEditWarning": "Muokkaaminen poistaa tiedoston allekirjoitukset.
Jatketaanko?", "DE.Views.SignatureSettings.txtRemoveWarning": "Haluatko poistaa tämän allekirjoituksen?>br>Toimintoa ei voi kumota.", + "DE.Views.SignatureSettings.txtRequestedSignatures": "Asiakirja täytyy allekirjoittaa.", + "DE.Views.SignatureSettings.txtSignedInvalid": "Kaikki asiakirjan digitaaliset allekirjoitukset eivät ole kelvollisia tai niitä ei voitu varmistaa. Asiakirja on suojattu muokkauksilta.", "DE.Views.Statusbar.goToPageText": "Siirry sivulle", "DE.Views.Statusbar.pageIndexText": "Sivu {0} / {1}", "DE.Views.Statusbar.tipFitPage": "Sovita sivulle", @@ -2653,6 +2848,8 @@ "DE.Views.Statusbar.txtPageNumInvalid": "Sivunumero virheellinen", "DE.Views.Statusbar.txtPages": "Sivut", "DE.Views.Statusbar.txtParagraphs": "Kappaleet", + "DE.Views.Statusbar.txtSpaces": "Symbolit välilyönneillä", + "DE.Views.Statusbar.txtSymbols": "Symbolit", "DE.Views.StyleTitleDialog.textHeader": "Luo Uusi tyyli", "DE.Views.StyleTitleDialog.textNextStyle": "Seuraava kappaleen tyyli", "DE.Views.StyleTitleDialog.textTitle": "Otsikko", @@ -2668,6 +2865,7 @@ "DE.Views.TableOfContentsSettings.strFullCaption": "Sisällytä tunniste ja numero", "DE.Views.TableOfContentsSettings.strLinks": "Muotoile sisällysluettelo linkeiksi", "DE.Views.TableOfContentsSettings.strLinksOF": "Muotoile kuvioluettelo linkeiksi", + "DE.Views.TableOfContentsSettings.strShowPages": "Näytä sivunumerot", "DE.Views.TableOfContentsSettings.textBuildTable": "Kokoa sisällysluettelo sisältäen", "DE.Views.TableOfContentsSettings.textBuildTableOF": "Kokoa luettelo kuvaajista, sisältäen", "DE.Views.TableOfContentsSettings.textEquation": "Yhtälö", @@ -2678,10 +2876,13 @@ "DE.Views.TableOfContentsSettings.textNone": "Ei mitään", "DE.Views.TableOfContentsSettings.textRadioCaption": "Kuvateksti", "DE.Views.TableOfContentsSettings.textRadioLevels": "Ääriviivatasot", + "DE.Views.TableOfContentsSettings.textRadioStyle": "Tyyli", "DE.Views.TableOfContentsSettings.textRadioStyles": "Valitus tyylit", "DE.Views.TableOfContentsSettings.textStyle": "Tyyli", "DE.Views.TableOfContentsSettings.textStyles": "Tyylit", + "DE.Views.TableOfContentsSettings.textTable": "Taulukko", "DE.Views.TableOfContentsSettings.textTitle": "Sisällysluettelo", + "DE.Views.TableOfContentsSettings.textTitleTOF": "Luettelo kuvista", "DE.Views.TableOfContentsSettings.txtCentered": "Keskitetty", "DE.Views.TableOfContentsSettings.txtClassic": "Klassinen", "DE.Views.TableOfContentsSettings.txtCurrent": "Nykyinen", @@ -2689,6 +2890,8 @@ "DE.Views.TableOfContentsSettings.txtFormal": "Muodollinen", "DE.Views.TableOfContentsSettings.txtModern": "Moderni", "DE.Views.TableOfContentsSettings.txtOnline": "Online", + "DE.Views.TableOfContentsSettings.txtSimple": "Yksinkertainen", + "DE.Views.TableOfContentsSettings.txtStandard": "Standardi", "DE.Views.TableSettings.deleteColumnText": "Poista sarake", "DE.Views.TableSettings.deleteRowText": "Poista rivi", "DE.Views.TableSettings.deleteTableText": "Poista taulukko", @@ -2752,11 +2955,13 @@ "DE.Views.TableSettings.txtTable_Lined": "Reunaviivattu", "DE.Views.TableSettings.txtTable_ListTable": "Luettelon taulukko", "DE.Views.TableSettings.txtTable_PlainTable": "Yksinkertainen taulukko", + "DE.Views.TableSettings.txtTable_TableGrid": "Taulukkoruudukko", "DE.Views.TableSettingsAdvanced.textAlign": "Tasaus", "DE.Views.TableSettingsAdvanced.textAlignment": "Tasaus", "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Solujen välinen välistys", "DE.Views.TableSettingsAdvanced.textAlt": "Vaihtoehtoinen teksti", "DE.Views.TableSettingsAdvanced.textAltDescription": "Kuvaus", + "DE.Views.TableSettingsAdvanced.textAltTip": "Visuaalisen kohteen vaihtoehtoinen, tekstipohjainen kuvaus, joka luetaan henkilöille, joilla on näkövamma tai kognitiivisia vaikeuksia ja joka auttaa heitä paremmin ymmärtämään kuvan, muodon tai taulukon sisältämää tietoa.", "DE.Views.TableSettingsAdvanced.textAltTitle": "Otsikko", "DE.Views.TableSettingsAdvanced.textAnchorText": "Teksti", "DE.Views.TableSettingsAdvanced.textAutofit": "Skaalaa automaattisesti sisällön sovittamiseksi", @@ -2861,6 +3066,7 @@ "DE.Views.TextToTableDialog.textRows": "Rivit", "DE.Views.TextToTableDialog.textSemicolon": "Puolipisteet", "DE.Views.TextToTableDialog.textSeparator": "Erota teksti:", + "DE.Views.TextToTableDialog.textTableSize": "Taulukon koko", "DE.Views.TextToTableDialog.textTitle": "Muunna teksti taulukoksi", "DE.Views.TextToTableDialog.textWindow": "Sovita automaattisesti ikkunaan", "DE.Views.TextToTableDialog.txtAutoText": "Automaattinen", @@ -2878,7 +3084,10 @@ "DE.Views.Toolbar.capBtnInsImage": "Kuva", "DE.Views.Toolbar.capBtnInsPagebreak": "Vaihdot", "DE.Views.Toolbar.capBtnInsShape": "Muoto", + "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt", + "DE.Views.Toolbar.capBtnInsSymbol": "Symboli", "DE.Views.Toolbar.capBtnInsTable": "Taulukko", + "DE.Views.Toolbar.capBtnInsTextart": "Text Art", "DE.Views.Toolbar.capBtnInsTextbox": "Tekstilaatikko", "DE.Views.Toolbar.capBtnLineNumbers": "Rivinumerot", "DE.Views.Toolbar.capBtnMargins": "Marginaalit", @@ -2911,6 +3120,7 @@ "DE.Views.Toolbar.mniRemoveHeader": "Poista ylätunniste", "DE.Views.Toolbar.mniSentenceCase": "Lauseen ensimmäinen kirjain isolla", "DE.Views.Toolbar.mniTextToTable": "Muunna teksti taulukoksi", + "DE.Views.Toolbar.mniToggleCase": "vAIHDA kIRJAINKOKOA", "DE.Views.Toolbar.strMenuNoFill": "Ei täyttöä", "DE.Views.Toolbar.textAlpha": "Pieni kreikkalainen alfa-merkki", "DE.Views.Toolbar.textAuto": "Automaattinen", @@ -2985,6 +3195,7 @@ "DE.Views.Toolbar.textRichControl": "Muotoiltu teksti", "DE.Views.Toolbar.textRight": "Oikea: ", "DE.Views.Toolbar.textSection": "Pykälämerkki", + "DE.Views.Toolbar.textSquareRoot": "Neliöjuuri", "DE.Views.Toolbar.textStrikeout": "Yliviivattu", "DE.Views.Toolbar.textStyleMenuDelete": "Poista tyyli", "DE.Views.Toolbar.textStyleMenuDeleteAll": "Poista kaikki muokatut tyylit", @@ -2994,6 +3205,7 @@ "DE.Views.Toolbar.textStyleMenuUpdate": "Päivitä valinnasta", "DE.Views.Toolbar.textSubscript": "Alaindeksi", "DE.Views.Toolbar.textSuperscript": "Yläindeksi", + "DE.Views.Toolbar.textSuppressForCurrentParagraph": "Piilota nykyisessä kappaleessa", "DE.Views.Toolbar.textTabCollaboration": "Yhteistoiminta", "DE.Views.Toolbar.textTabDraw": "Piirrä", "DE.Views.Toolbar.textTabFile": "Tiedosto", @@ -3003,9 +3215,11 @@ "DE.Views.Toolbar.textTabLinks": "Viittaukset", "DE.Views.Toolbar.textTabProtect": "Suojaus", "DE.Views.Toolbar.textTabReview": "Arvioi", + "DE.Views.Toolbar.textTilde": "Tilde", "DE.Views.Toolbar.textTitleError": "Virhe", "DE.Views.Toolbar.textToCurrent": "Nykyiseen asemaan", "DE.Views.Toolbar.textTop": "Yläosa: ", + "DE.Views.Toolbar.textTradeMark": "Tavaramerkki", "DE.Views.Toolbar.textUnderline": "Alleviivaus", "DE.Views.Toolbar.tipAlignCenter": "Tasaa keskelle", "DE.Views.Toolbar.tipAlignJust": "Tasattu molempiin reunoihin", @@ -3049,6 +3263,7 @@ "DE.Views.Toolbar.tipInsertText": "Lisää teksti", "DE.Views.Toolbar.tipInsertTextArt": "Lisää taiteellinen teksti", "DE.Views.Toolbar.tipInsertVerticalText": "Lisää pystysuora tekstikenttä", + "DE.Views.Toolbar.tipLineNumbers": "Näytä rivinumerot", "DE.Views.Toolbar.tipLineSpace": "Kappaleen riviväli", "DE.Views.Toolbar.tipMailRecepients": "Sähköpostin yhdistely", "DE.Views.Toolbar.tipMarkers": "Pallukat", @@ -3059,6 +3274,7 @@ "DE.Views.Toolbar.tipMarkersFRound": "Täytetty ympyrä -luettelomerkit", "DE.Views.Toolbar.tipMarkersFSquare": "Täytetty neliö -luettelomerkit", "DE.Views.Toolbar.tipMarkersHRound": "Ontot pyöreät luettelomerkit", + "DE.Views.Toolbar.tipMarkersStar": "Tähti-luettelomerkit", "DE.Views.Toolbar.tipMultiLevelArticl": "Monitasoiset artiklat", "DE.Views.Toolbar.tipMultiLevelChapter": "Monitasoiset numeroidut kappaleet", "DE.Views.Toolbar.tipMultiLevelHeadings": "Monitasoiset numeroidut otsikot", @@ -3131,6 +3347,7 @@ "DE.Views.ViewTab.textOutline": "Otsikot", "DE.Views.ViewTab.textRightMenu": "Oikea paneeli", "DE.Views.ViewTab.textRulers": "Viivaimet", + "DE.Views.ViewTab.textStatusBar": "Tilarivi", "DE.Views.ViewTab.tipDarkDocument": "Tumma asiakirja", "DE.Views.ViewTab.tipFitToPage": "Sovita sivulle", "DE.Views.ViewTab.tipFitToWidth": "Sovita leveyteen", @@ -3138,6 +3355,7 @@ "DE.Views.ViewTab.tipInterfaceTheme": "Käyttöliittymän teema", "DE.Views.WatermarkSettingsDialog.textAuto": "Automaattinen", "DE.Views.WatermarkSettingsDialog.textBold": "Lihavointi", + "DE.Views.WatermarkSettingsDialog.textColor": "Tekstin väri", "DE.Views.WatermarkSettingsDialog.textDiagonal": "Viisto", "DE.Views.WatermarkSettingsDialog.textFont": "Fontti", "DE.Views.WatermarkSettingsDialog.textFromFile": "Tiedostosta", @@ -3151,7 +3369,11 @@ "DE.Views.WatermarkSettingsDialog.textNone": "Ei mitään", "DE.Views.WatermarkSettingsDialog.textScale": "Skaalaa", "DE.Views.WatermarkSettingsDialog.textSelect": "Valitse kuva", + "DE.Views.WatermarkSettingsDialog.textStrikeout": "Yliviivaus", + "DE.Views.WatermarkSettingsDialog.textText": "Teksti", + "DE.Views.WatermarkSettingsDialog.textTextW": "Vesileimateksti", "DE.Views.WatermarkSettingsDialog.textTransparency": "Läpikuultava", + "DE.Views.WatermarkSettingsDialog.textUnderline": "Alleviivaus", "DE.Views.WatermarkSettingsDialog.tipFontName": "Fontti", "DE.Views.WatermarkSettingsDialog.tipFontSize": "Fonttikoko" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index 83b4c52149..9d727b987f 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -60,9 +60,9 @@ "Common.Controllers.ReviewChanges.textOnGlobal": "{0} a activé le suivi des modifications pour tout le monde.", "Common.Controllers.ReviewChanges.textParaDeleted": "Paragraphe supprimé ", "Common.Controllers.ReviewChanges.textParaFormatted": "Paragraphe formaté", - "Common.Controllers.ReviewChanges.textParaInserted": "Paragraphe inséré", - "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Déplacé vers le bas :", - "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Déplacé vers le haut :", + "Common.Controllers.ReviewChanges.textParaInserted": "Paragraphe inséré ", + "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Déplacé vers le bas:", + "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Déplacé vers le haut:", "Common.Controllers.ReviewChanges.textParaMoveTo": "Déplacé :", "Common.Controllers.ReviewChanges.textPosition": "Position", "Common.Controllers.ReviewChanges.textRight": "Aligner à droite", @@ -132,13 +132,13 @@ "Common.define.chartData.textSurface": "Surface", "Common.define.smartArt.textAccentedPicture": "Image accentuée", "Common.define.smartArt.textAccentProcess": "Processus accentué", - "Common.define.smartArt.textAlternatingFlow": "Flux interactif", + "Common.define.smartArt.textAlternatingFlow": "Flux alternatif", "Common.define.smartArt.textAlternatingHexagons": "Hexagones alternés", "Common.define.smartArt.textAlternatingPictureBlocks": "Blocs d'images alternées", "Common.define.smartArt.textAlternatingPictureCircles": "Cercles d'images alternées", - "Common.define.smartArt.textArchitectureLayout": "Disposition architecture", + "Common.define.smartArt.textArchitectureLayout": "Schéma d'architecture", "Common.define.smartArt.textArrowRibbon": "Ruban flèche", - "Common.define.smartArt.textAscendingPictureAccentProcess": "Processus accentué dans un ordre croissant avec images", + "Common.define.smartArt.textAscendingPictureAccentProcess": "Processus d'accentuation de l'image ascendante", "Common.define.smartArt.textBalance": "Balance", "Common.define.smartArt.textBasicBendingProcess": "Processus en lacet simple", "Common.define.smartArt.textBasicBlockList": "Liste de blocs simple", @@ -472,7 +472,7 @@ "Common.Views.Comments.mniPositionAsc": "Du haut", "Common.Views.Comments.mniPositionDesc": "Du bas", "Common.Views.Comments.textAdd": "Ajouter", - "Common.Views.Comments.textAddComment": "Ajouter", + "Common.Views.Comments.textAddComment": "Ajouter un commentaire", "Common.Views.Comments.textAddCommentToDoc": "Ajouter un commentaire au document", "Common.Views.Comments.textAddReply": "Ajouter une réponse", "Common.Views.Comments.textAll": "Tout", @@ -533,7 +533,7 @@ "Common.Views.Header.tipPrintQuick": "Impression rapide", "Common.Views.Header.tipRedo": "Rétablir", "Common.Views.Header.tipSave": "Enregistrer", - "Common.Views.Header.tipSearch": "Recherche", + "Common.Views.Header.tipSearch": "Rechercher", "Common.Views.Header.tipUndo": "Annuler", "Common.Views.Header.tipUsers": "Afficher les utilisateurs", "Common.Views.Header.tipViewSettings": "Paramètres d'affichage", @@ -973,7 +973,7 @@ "DE.Controllers.Main.txtShape_accentCallout1": "Légende à une bordure 1", "DE.Controllers.Main.txtShape_accentCallout2": "Légende à une bordure 2", "DE.Controllers.Main.txtShape_accentCallout3": "Légende à une bordure 3", - "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "bouton \"Précédent\"", + "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Bouton retour ou précédent", "DE.Controllers.Main.txtShape_actionButtonBeginning": "Bouton \"Au Commencement\"", "DE.Controllers.Main.txtShape_actionButtonBlank": "Bouton vide", "DE.Controllers.Main.txtShape_actionButtonDocument": "Bouton Document", @@ -1083,7 +1083,7 @@ "DE.Controllers.Main.txtShape_mathNotEqual": "Différent de", "DE.Controllers.Main.txtShape_mathPlus": "Plus", "DE.Controllers.Main.txtShape_moon": "Lune", - "DE.Controllers.Main.txtShape_noSmoking": "Signe \"Interdiction\"", + "DE.Controllers.Main.txtShape_noSmoking": "Symbole \"non\"", "DE.Controllers.Main.txtShape_notchedRightArrow": "Flèche droite à entaille\t", "DE.Controllers.Main.txtShape_octagon": "Octogone", "DE.Controllers.Main.txtShape_parallelogram": "Parallélogramme", @@ -2799,7 +2799,7 @@ "DE.Views.PrintWithPreview.txtPageSize": "Taille de page", "DE.Views.PrintWithPreview.txtPortrait": "Portrait", "DE.Views.PrintWithPreview.txtPrint": "Imprimer", - "DE.Views.PrintWithPreview.txtPrintPdf": "Imprimer au PDF", + "DE.Views.PrintWithPreview.txtPrintPdf": "Imprimer en PDF", "DE.Views.PrintWithPreview.txtPrintRange": "Zone d'impression", "DE.Views.PrintWithPreview.txtPrintSides": "Impression sur les deux côtés", "DE.Views.PrintWithPreview.txtRight": "Droite", @@ -3495,4 +3495,4 @@ "DE.Views.WatermarkSettingsDialog.textUnderline": "Souligné", "DE.Views.WatermarkSettingsDialog.tipFontName": "Nom de la police", "DE.Views.WatermarkSettingsDialog.tipFontSize": "Taille de police" -} \ No newline at end of file +} diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index 50b1af535a..89e4f21b93 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -1214,6 +1214,9 @@ "DE.Controllers.Toolbar.notcriticalErrorTitle": "警告", "DE.Controllers.Toolbar.textAccent": "アクセントカラー", "DE.Controllers.Toolbar.textBracket": "括弧", + "DE.Controllers.Toolbar.textConvertFormDownload": "記入可能なPDF形式のファイルをダウンロードしてください。", + "DE.Controllers.Toolbar.textConvertFormSave": "記入可能なPDFフォームとしてファイルを保存すると、記入できるようになります。", + "DE.Controllers.Toolbar.textDownloadPdf": "PDFのダウンロード", "DE.Controllers.Toolbar.textEmptyImgUrl": "画像のURLを指定する必要があります。", "DE.Controllers.Toolbar.textEmptyMMergeUrl": "URLを指定してください。", "DE.Controllers.Toolbar.textFontSizeErr": "入力された値が正しくありません。
1〜300の数値を入力してください。", @@ -1228,6 +1231,7 @@ "DE.Controllers.Toolbar.textOperator": "演算子", "DE.Controllers.Toolbar.textRadical": "ラジカル", "DE.Controllers.Toolbar.textRecentlyUsed": "最近使用された", + "DE.Controllers.Toolbar.textSavePdf": "pdfとして保存", "DE.Controllers.Toolbar.textScript": "スクリプト", "DE.Controllers.Toolbar.textSymbols": "記号", "DE.Controllers.Toolbar.textTabForms": "フォーム", @@ -1550,6 +1554,7 @@ "DE.Controllers.Toolbar.txtSymbol_vdots": "垂直線の省略記号", "DE.Controllers.Toolbar.txtSymbol_xsi": "グザイ", "DE.Controllers.Toolbar.txtSymbol_zeta": "ゼータ", + "DE.Controllers.Toolbar.txtUntitled": "無題", "DE.Controllers.Viewport.textFitPage": "ページに合わせる", "DE.Controllers.Viewport.textFitWidth": "幅を合わせる", "DE.Controllers.Viewport.txtDarkMode": "ダークモード", diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json index b81c745a73..b71ce3763b 100644 --- a/apps/documenteditor/main/locale/ro.json +++ b/apps/documenteditor/main/locale/ro.json @@ -61,8 +61,8 @@ "Common.Controllers.ReviewChanges.textParaDeleted": "Paragraful a fost eliminat", "Common.Controllers.ReviewChanges.textParaFormatted": "Paragraful a fost formatat", "Common.Controllers.ReviewChanges.textParaInserted": "Paragraful a fost inserat", - "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Este mutat în jos:", - "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Este mutat în sus:", + "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Deplasat în jos:", + "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Deplasat în sus:", "Common.Controllers.ReviewChanges.textParaMoveTo": "S-a mutat:", "Common.Controllers.ReviewChanges.textPosition": "Poziție", "Common.Controllers.ReviewChanges.textRight": "Aliniere la dreapta", @@ -472,7 +472,7 @@ "Common.Views.Comments.mniPositionAsc": "De sus", "Common.Views.Comments.mniPositionDesc": "De jos", "Common.Views.Comments.textAdd": "Adaugă", - "Common.Views.Comments.textAddComment": "Adaugă comentariu", + "Common.Views.Comments.textAddComment": "Adăugare comentariu", "Common.Views.Comments.textAddCommentToDoc": "Adăugare comentariu la document", "Common.Views.Comments.textAddReply": "Adăugare răspuns", "Common.Views.Comments.textAll": "Toate", @@ -519,7 +519,7 @@ "Common.Views.Header.textAddFavorite": "Marcare ca preferat", "Common.Views.Header.textAdvSettings": "Setări avansate", "Common.Views.Header.textBack": "Deschidere locația fișierului", - "Common.Views.Header.textCompactView": "Ascunde bară de instrumente", + "Common.Views.Header.textCompactView": "Ascundere bară de instrumente", "Common.Views.Header.textHideLines": "Ascundere rigle", "Common.Views.Header.textHideStatusBar": "Ascundere bară de stare", "Common.Views.Header.textReadOnly": "Doar în citire", @@ -666,7 +666,7 @@ "Common.Views.ReviewChanges.txtReject": "Respingere", "Common.Views.ReviewChanges.txtRejectAll": "Se resping toate modificările", "Common.Views.ReviewChanges.txtRejectChanges": "Respingere modificări", - "Common.Views.ReviewChanges.txtRejectCurrent": "Respinge modificare", + "Common.Views.ReviewChanges.txtRejectCurrent": "Se respinge modificarea curentă", "Common.Views.ReviewChanges.txtSharing": "Partajare", "Common.Views.ReviewChanges.txtSpelling": "Verificarea ortografică", "Common.Views.ReviewChanges.txtTurnon": "Urmărirea modificărilor", @@ -1849,7 +1849,7 @@ "DE.Views.DocumentHolder.textRemField": "Eliminare control câmp text", "DE.Views.DocumentHolder.textRemove": "Ștergere", "DE.Views.DocumentHolder.textRemoveControl": "Eliminare control de conținut", - "DE.Views.DocumentHolder.textRemPicture": "Eliminare control imagine", + "DE.Views.DocumentHolder.textRemPicture": "Ștergere imagine", "DE.Views.DocumentHolder.textRemRadioBox": "Eliminare control buton de opțiune", "DE.Views.DocumentHolder.textReplace": "Înlocuire imagine", "DE.Views.DocumentHolder.textRotate": "Rotire", @@ -2227,7 +2227,7 @@ "DE.Views.FormsTab.capBtnCheckBox": "Caseta de selectare", "DE.Views.FormsTab.capBtnComboBox": "Casetă combo", "DE.Views.FormsTab.capBtnComplex": "Câmp complex", - "DE.Views.FormsTab.capBtnDownloadForm": "Descărcare în formatul pdf", + "DE.Views.FormsTab.capBtnDownloadForm": "Descărcare ca PDF", "DE.Views.FormsTab.capBtnDropDown": "Derulant", "DE.Views.FormsTab.capBtnEmail": "Adresă de e-mail", "DE.Views.FormsTab.capBtnImage": "Imagine", @@ -2236,7 +2236,7 @@ "DE.Views.FormsTab.capBtnPhone": "Număr de telefon", "DE.Views.FormsTab.capBtnPrev": "Câmpul anterior", "DE.Views.FormsTab.capBtnRadioBox": "Buton opțiune", - "DE.Views.FormsTab.capBtnSaveForm": "Salvare ca un formular pdf", + "DE.Views.FormsTab.capBtnSaveForm": "Salvare ca PDF", "DE.Views.FormsTab.capBtnSubmit": "Trimitere", "DE.Views.FormsTab.capBtnText": "Câmp text", "DE.Views.FormsTab.capBtnView": "Vizualizare formular", @@ -3044,7 +3044,7 @@ "DE.Views.TableSettings.tipOuter": "Adăugare numai bordură exterioară", "DE.Views.TableSettings.tipRight": "Adăugare numai bordură exterioară dreapta", "DE.Views.TableSettings.tipTop": "Adăugare numai bordură exterioară de sus", - "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Tqbele cu bordiră și liniate", + "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Tabele cu bordură și liniate", "DE.Views.TableSettings.txtGroupTable_Custom": "Particularizat", "DE.Views.TableSettings.txtGroupTable_Grid": "Tabele grilă", "DE.Views.TableSettings.txtGroupTable_List": "Tabele de tip listă", @@ -3279,7 +3279,7 @@ "DE.Views.Toolbar.textLeft": "Stânga:", "DE.Views.Toolbar.textLessEqual": "Mai mic sau egal cu", "DE.Views.Toolbar.textLetterPi": "Litera grecească minusculă Pi", - "DE.Views.Toolbar.textListSettings": "Setări lista", + "DE.Views.Toolbar.textListSettings": "Setări listă", "DE.Views.Toolbar.textMarginsLast": "Ultima setare particularizată", "DE.Views.Toolbar.textMarginsModerate": "Moderat", "DE.Views.Toolbar.textMarginsNarrow": "Îngust", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 60638c72b4..e052f84b1e 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -1216,7 +1216,7 @@ "DE.Controllers.Toolbar.textBracket": "Скобки", "DE.Controllers.Toolbar.textConvertFormDownload": "Скачайте файл как заполняемую PDF-форму, чтобы иметь возможность ее заполнить.", "DE.Controllers.Toolbar.textConvertFormSave": "Сохраните файл как заполняемую PDF-форму, чтобы иметь возможность ее заполнить.", - "DE.Controllers.Toolbar.textDownloadPdf": "Скачать pdf", + "DE.Controllers.Toolbar.textDownloadPdf": "Скачать PDF", "DE.Controllers.Toolbar.textEmptyImgUrl": "Необходимо указать URL изображения.", "DE.Controllers.Toolbar.textEmptyMMergeUrl": "Необходимо указать URL.", "DE.Controllers.Toolbar.textFontSizeErr": "Введенное значение некорректно.
Введите числовое значение от 1 до 300", @@ -1231,7 +1231,7 @@ "DE.Controllers.Toolbar.textOperator": "Операторы", "DE.Controllers.Toolbar.textRadical": "Радикалы", "DE.Controllers.Toolbar.textRecentlyUsed": "Последние использованные", - "DE.Controllers.Toolbar.textSavePdf": "Сохранить как pdf", + "DE.Controllers.Toolbar.textSavePdf": "Сохранить как PDF", "DE.Controllers.Toolbar.textScript": "Индексы", "DE.Controllers.Toolbar.textSymbols": "Символы", "DE.Controllers.Toolbar.textTabForms": "Формы", @@ -2227,7 +2227,7 @@ "DE.Views.FormsTab.capBtnCheckBox": "Флажок", "DE.Views.FormsTab.capBtnComboBox": "Поле со списком", "DE.Views.FormsTab.capBtnComplex": "Составное поле", - "DE.Views.FormsTab.capBtnDownloadForm": "Скачать как pdf", + "DE.Views.FormsTab.capBtnDownloadForm": "Скачать как PDF", "DE.Views.FormsTab.capBtnDropDown": "Выпадающий список", "DE.Views.FormsTab.capBtnEmail": "Адрес email", "DE.Views.FormsTab.capBtnImage": "Изображение", @@ -2236,7 +2236,7 @@ "DE.Views.FormsTab.capBtnPhone": "Номер телефона", "DE.Views.FormsTab.capBtnPrev": "Предыдущее поле", "DE.Views.FormsTab.capBtnRadioBox": "Переключатель", - "DE.Views.FormsTab.capBtnSaveForm": "Сохранить как pdf", + "DE.Views.FormsTab.capBtnSaveForm": "Сохранить как PDF", "DE.Views.FormsTab.capBtnSubmit": "Отправить", "DE.Views.FormsTab.capBtnText": "Текстовое поле", "DE.Views.FormsTab.capBtnView": "Просмотреть форму", @@ -2275,7 +2275,7 @@ "DE.Views.FormsTab.tipPrevForm": "Перейти к предыдущему полю", "DE.Views.FormsTab.tipRadioBox": "Вставить переключатель", "DE.Views.FormsTab.tipRolesLink": "Узнать больше о ролях", - "DE.Views.FormsTab.tipSaveFile": "Нажмите “Сохранить как pdf”, чтобы сохранить форму в формате, готовом для заполнения.", + "DE.Views.FormsTab.tipSaveFile": "Нажмите \"Сохранить как PDF\", чтобы сохранить форму в формате, готовом для заполнения.", "DE.Views.FormsTab.tipSaveForm": "Сохранить как заполняемый PDF-файл", "DE.Views.FormsTab.tipSubmit": "Отправить форму", "DE.Views.FormsTab.tipTextField": "Вставить текстовое поле", @@ -2852,7 +2852,7 @@ "DE.Views.RolesManagerDlg.warnDelete": "Вы действительно хотите удалить роль {0}?", "DE.Views.SaveFormDlg.saveButtonText": "Сохранить", "DE.Views.SaveFormDlg.textAnyone": "Любой", - "DE.Views.SaveFormDlg.textDescription": "При сохранении в pdf в список заполнения добавляются только роли с полями", + "DE.Views.SaveFormDlg.textDescription": "При сохранении в PDF в список заполнения добавляются только роли с полями", "DE.Views.SaveFormDlg.textEmpty": "Нет ролей, связанных с этим полем.", "DE.Views.SaveFormDlg.textFill": "Список заполнения", "DE.Views.SaveFormDlg.txtTitle": "Сохранить как форму", diff --git a/apps/documenteditor/main/locale/si.json b/apps/documenteditor/main/locale/si.json index 0e82d11073..e157b2838c 100644 --- a/apps/documenteditor/main/locale/si.json +++ b/apps/documenteditor/main/locale/si.json @@ -342,6 +342,7 @@ "Common.UI.HSBColorPicker.textNoColor": "පාට නැත", "Common.UI.InputFieldBtnCalendar.textDate": "දිනය තෝරන්න", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "මුරපදය සඟවන්න", + "Common.UI.InputFieldBtnPassword.textHintHold": "මුරපදය දැකීමට මදක් ඔබාගෙන සිටින්න", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "මුරපදය පෙන්වන්න", "Common.UI.SearchBar.textFind": "හොයන්න", "Common.UI.SearchBar.tipCloseSearch": "සෙවුම වසන්න", @@ -433,7 +434,7 @@ "Common.Views.AutoCorrectDialog.textApplyText": "ඔබට ලියන ලෙස යොදන්න", "Common.Views.AutoCorrectDialog.textAutoCorrect": "පෙළ ස්වයං නිවරදිය", "Common.Views.AutoCorrectDialog.textAutoFormat": "ඔබගේ ලිවීම අනුව ස්වයංආකෘතිකරණය", - "Common.Views.AutoCorrectDialog.textBulleted": "ස්වයංක්‍රීය ගුලි ලේඛනය", + "Common.Views.AutoCorrectDialog.textBulleted": "ස්වයංක්‍රීය ගුලි ලැයිස්තුව", "Common.Views.AutoCorrectDialog.textBy": "විසින්", "Common.Views.AutoCorrectDialog.textDelete": "මකන්න", "Common.Views.AutoCorrectDialog.textDoubleSpaces": "ද්විත්ම හිස්තැනක් සමඟ ආවර්තයක් යොදන්න", @@ -1213,6 +1214,8 @@ "DE.Controllers.Toolbar.notcriticalErrorTitle": "අවවාදයයි", "DE.Controllers.Toolbar.textAccent": "උදාත්ත", "DE.Controllers.Toolbar.textBracket": "වරහන්", + "DE.Controllers.Toolbar.textConvertFormDownload": "ගොනුව පිරවිය හැකි පීඩීඑෆ් ආකෘතිපත්‍රයක් ලෙස බාගන්න.", + "DE.Controllers.Toolbar.textConvertFormSave": "ගොනුව පිරවිය හැකි පීඩීඑෆ් ආකෘතිපත්‍රයක් ලෙස සුරකින්න.", "DE.Controllers.Toolbar.textDownloadPdf": "පීඩීඑෆ් බාගන්න", "DE.Controllers.Toolbar.textEmptyImgUrl": "ඔබ අනුරුවේ ඒ.ස.නි. සඳහන් කළ යුතුය.", "DE.Controllers.Toolbar.textEmptyMMergeUrl": "ඔබ ඒ.ස.නි. සඳහන් කළ යුතුය.", @@ -2201,6 +2204,7 @@ "DE.Views.FormSettings.textPhone2": "දුරකථන අංකය (උදා. +447911123456)", "DE.Views.FormSettings.textPlaceholder": "පිහිටුම් රැඳවුම", "DE.Views.FormSettings.textRadiobox": "වෘත බොත්තම", + "DE.Views.FormSettings.textRadioChoice": "බොත්තමෙන් තේරීම", "DE.Views.FormSettings.textRadioDefault": "පෙරනිමි ලෙස බොත්තම අගුළු ලා ඇත", "DE.Views.FormSettings.textReg": "නිත්‍ය වාක්‍යවිධිය", "DE.Views.FormSettings.textRequired": "වුවමනාය", @@ -2251,12 +2255,18 @@ "DE.Views.FormsTab.tipCheckBox": "හරි යෙදීමක් යොදන්න", "DE.Views.FormsTab.tipComboBox": "සංයුක්ත පෙට්ටියක් යොදන්න", "DE.Views.FormsTab.tipComplexField": "සංකීර්ණ ක්‍ෂේත්‍රය යොදන්න", + "DE.Views.FormsTab.tipCreateField": "ක්‍ෂේත්‍රයක් සෑදීමට මෙවලම් තීරුවේ අභිමත ක්‍ෂේත්‍ර වර්ගය තෝරා එය මත ඔබන්න. ක්‍ෂේත්‍රය ලේඛනයේ දිස්වනු ඇත.", "DE.Views.FormsTab.tipCreditCard": "ණය පතෙහි අංකය යොදන්න", "DE.Views.FormsTab.tipDateTime": "දිනය හා වේලාව යොදන්න", "DE.Views.FormsTab.tipDownloadForm": "පිරවිය හැකි පීඩීඑෆ් ලේඛනයක් ලෙස ගොනුවක් බාගන්න", "DE.Views.FormsTab.tipDropDown": "දිග හැරුම් ලේඛනය යොදන්න", "DE.Views.FormsTab.tipEmailField": "වි-තැපැල් ලිපිනය යොදන්න", + "DE.Views.FormsTab.tipFieldSettings": "ඔබට දකුණු පැති තීරුවේ තෝරාගත් ක්‍ෂේත්‍ර වින්‍යාස කිරීමට හැකිය. ක්‍ෂේත්‍ර සැකසුම් විවෘත කිරීමට මෙම නිරූපකය ඔබන්න.", + "DE.Views.FormsTab.tipFieldsLink": "ක්‍ෂේත්‍ර පරාමිතීන් පිළිබඳව තව දැනගන්න", "DE.Views.FormsTab.tipFixedText": "ස්ථාවර පෙළ ක්‍ෂේත්‍රයක් යොදන්න", + "DE.Views.FormsTab.tipFormGroupKey": "බොත්තම් සමූහනයෙන් පිරවීමේ ක්‍රියාවලිය වේගවත් කරගන්න. සමාන නම් සහිත තේරීම් සමමුහූර්ත වනු ඇත. පරිශ්‍රීලකයින්ට සමූහයක අඩංගු එක් බොත්තමක් පමණක් සලකුණු කිරීමට හැකිය.", + "DE.Views.FormsTab.tipFormKey": "ඔබට ක්‍ෂේත්‍රයකට හෝ ක්‍ෂේත්‍ර සමූහයකට යතුරක් වෙන් කිරීමට හැකිය. පරිශ්‍රීලකයෙක් දත්ත පුරවන විට සමාන යතුරු සහිත සියලුම ක්‍ෂේත්‍ර වෙත ස්වයංක්‍රීයව පිටපත් වනු ඇත.", + "DE.Views.FormsTab.tipHelpRoles": "අරමුණ අනුව ක්‍ෂේත්‍ර සමූහනයට සහ වගකිවයුතු කණ්ඩායම් සාමාජිකයින් වෙත පැවරීමට භූමිකා කළමනාකරණ විශේෂාංගය භාවිතා කරන්න.", "DE.Views.FormsTab.tipImageField": "අනුරුවක් ඇතුළු කරන්න", "DE.Views.FormsTab.tipInlineText": "එක්තල පෙළ ක්‍ෂේත්‍රයක් යොදන්න", "DE.Views.FormsTab.tipManager": "භූමිකා කළමනාකරණය", @@ -2264,9 +2274,10 @@ "DE.Views.FormsTab.tipPhoneField": "දු.ක. අංකය ඇතුල් කරන්න", "DE.Views.FormsTab.tipPrevForm": "කලින් ක්‍ෂේත්‍රයට යන්න", "DE.Views.FormsTab.tipRadioBox": "වෘත බොත්තමක් යොදන්න", + "DE.Views.FormsTab.tipRolesLink": "භූමිකා පිළිබඳව තව දැනගන්න", "DE.Views.FormsTab.tipSaveFile": "ආකෘතිපත්‍රය පිරවීම සඳහා සූදානම් කරන ලද ආකෘතියෙන් සුරැකීමට \"පීඩීඑෆ් ලෙස සුරකින්න\" ඔබන්න.", "DE.Views.FormsTab.tipSaveForm": "පිරවිය හැකි පීඩීඑෆ් ලේඛනයක් ලෙස සුරකින්න", - "DE.Views.FormsTab.tipSubmit": "යොමුකිරීමේ ආකෘතිපත්‍රය", + "DE.Views.FormsTab.tipSubmit": "ආකෘතිපත්‍රය යොමන්න", "DE.Views.FormsTab.tipTextField": "පාඨ ක්‍ෂේත්‍රය යොදන්න", "DE.Views.FormsTab.tipViewForm": "ආකෘතිපත්‍රය බලන්න", "DE.Views.FormsTab.tipZipCode": "තැපැල් කේතය යොදන්න", diff --git a/apps/documenteditor/main/locale/zh-tw.json b/apps/documenteditor/main/locale/zh-tw.json index 9c151dbafd..25f0343fab 100644 --- a/apps/documenteditor/main/locale/zh-tw.json +++ b/apps/documenteditor/main/locale/zh-tw.json @@ -1,22 +1,22 @@ { "Common.Controllers.Chat.notcriticalErrorTitle": "警告", - "Common.Controllers.Chat.textEnterMessage": "在這裡輸入您的信息", + "Common.Controllers.Chat.textEnterMessage": "在此輸入您的訊息", "Common.Controllers.Desktop.hintBtnHome": "顯示主視窗", "Common.Controllers.Desktop.itemCreateFromTemplate": "從模板創建", "Common.Controllers.ExternalDiagramEditor.textAnonymous": "匿名", "Common.Controllers.ExternalDiagramEditor.textClose": "關閉", - "Common.Controllers.ExternalDiagramEditor.warningText": "該對象被禁用,因為它正在由另一個用戶編輯。", + "Common.Controllers.ExternalDiagramEditor.warningText": "該物件因正在被其他使用者編輯而被禁用。", "Common.Controllers.ExternalDiagramEditor.warningTitle": "警告", "Common.Controllers.ExternalMergeEditor.textAnonymous": "匿名", "Common.Controllers.ExternalMergeEditor.textClose": "關閉", - "Common.Controllers.ExternalMergeEditor.warningText": "該物件被禁用,因為它正在由另一個帳戶編輯。", + "Common.Controllers.ExternalMergeEditor.warningText": "該物件因正在被其他使用者編輯而被禁用。", "Common.Controllers.ExternalMergeEditor.warningTitle": "警告", "Common.Controllers.ExternalOleEditor.textAnonymous": "匿名", "Common.Controllers.ExternalOleEditor.textClose": "關閉", - "Common.Controllers.ExternalOleEditor.warningText": "該物件被禁用,因為它正在由另一個帳戶編輯。", + "Common.Controllers.ExternalOleEditor.warningText": "該物件因正在被其他使用者編輯而被禁用。", "Common.Controllers.ExternalOleEditor.warningTitle": "警告", "Common.Controllers.History.notcriticalErrorTitle": "警告", - "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "為了比較文檔,所有被跟蹤的更改都將被視為已接受。你想繼續嗎?", + "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "為了比較文件,其中的所有修訂將被視為已接受。您要繼續嗎?", "Common.Controllers.ReviewChanges.textAtLeast": "至少", "Common.Controllers.ReviewChanges.textAuto": "自動", "Common.Controllers.ReviewChanges.textBaseline": "基準線", @@ -24,110 +24,110 @@ "Common.Controllers.ReviewChanges.textBreakBefore": "分頁之前", "Common.Controllers.ReviewChanges.textCaps": "全部大寫", "Common.Controllers.ReviewChanges.textCenter": "居中對齊", - "Common.Controllers.ReviewChanges.textChar": "文字水平", + "Common.Controllers.ReviewChanges.textChar": "字元層級", "Common.Controllers.ReviewChanges.textChart": "圖表", - "Common.Controllers.ReviewChanges.textColor": "字體顏色", - "Common.Controllers.ReviewChanges.textContextual": "不要在相同風格的文字段落之間添加間隔", + "Common.Controllers.ReviewChanges.textColor": "字型顏色", + "Common.Controllers.ReviewChanges.textContextual": "不在相同樣式的段落間增加間距", "Common.Controllers.ReviewChanges.textDeleted": "已刪除", "Common.Controllers.ReviewChanges.textDStrikeout": "雙刪除線", "Common.Controllers.ReviewChanges.textEquation": "方程式", - "Common.Controllers.ReviewChanges.textExact": "準確", - "Common.Controllers.ReviewChanges.textFirstLine": "第一行", + "Common.Controllers.ReviewChanges.textExact": "確切地", + "Common.Controllers.ReviewChanges.textFirstLine": "首行縮排", "Common.Controllers.ReviewChanges.textFontSize": "字型大小", "Common.Controllers.ReviewChanges.textFormatted": "已格式化", - "Common.Controllers.ReviewChanges.textHighlight": "熒光色選", - "Common.Controllers.ReviewChanges.textImage": "圖像", + "Common.Controllers.ReviewChanges.textHighlight": "文字醒目提示色彩", + "Common.Controllers.ReviewChanges.textImage": "圖片", "Common.Controllers.ReviewChanges.textIndentLeft": "向左縮排", "Common.Controllers.ReviewChanges.textIndentRight": "向右縮排", "Common.Controllers.ReviewChanges.textInserted": "已插入:", "Common.Controllers.ReviewChanges.textItalic": "斜體", "Common.Controllers.ReviewChanges.textJustify": "對齊", "Common.Controllers.ReviewChanges.textKeepLines": "保持線條一致", - "Common.Controllers.ReviewChanges.textKeepNext": "跟著下一個", + "Common.Controllers.ReviewChanges.textKeepNext": "與下一段連在一起", "Common.Controllers.ReviewChanges.textLeft": "對齊左側", - "Common.Controllers.ReviewChanges.textLineSpacing": "行距: ", - "Common.Controllers.ReviewChanges.textMultiple": "多項", - "Common.Controllers.ReviewChanges.textNoBreakBefore": "之前沒有分頁符", + "Common.Controllers.ReviewChanges.textLineSpacing": "行間距", + "Common.Controllers.ReviewChanges.textMultiple": "多個", + "Common.Controllers.ReviewChanges.textNoBreakBefore": "不在分頁之前換行", "Common.Controllers.ReviewChanges.textNoContextual": "在相同風格的段落之間加入間隔", - "Common.Controllers.ReviewChanges.textNoKeepLines": "段落中分頁", - "Common.Controllers.ReviewChanges.textNoKeepNext": "不與下段同頁", - "Common.Controllers.ReviewChanges.textNot": "不", - "Common.Controllers.ReviewChanges.textNoWidow": "無窗口控制", + "Common.Controllers.ReviewChanges.textNoKeepLines": "不保持連續行", + "Common.Controllers.ReviewChanges.textNoKeepNext": "不與下一段保持在一起", + "Common.Controllers.ReviewChanges.textNot": "非", + "Common.Controllers.ReviewChanges.textNoWidow": "無行控制", "Common.Controllers.ReviewChanges.textNum": "變更編號", "Common.Controllers.ReviewChanges.textOff": "{0} 已沒有再使用追蹤。", "Common.Controllers.ReviewChanges.textOffGlobal": "{0} 關閉了所有用戶的追蹤修訂。", "Common.Controllers.ReviewChanges.textOn": "{0} 已開始使用追蹤。", "Common.Controllers.ReviewChanges.textOnGlobal": "{0} 開啟了所有帳戶的追蹤修訂。", "Common.Controllers.ReviewChanges.textParaDeleted": "段落已刪除", - "Common.Controllers.ReviewChanges.textParaFormatted": "段落格式", + "Common.Controllers.ReviewChanges.textParaFormatted": "已格式化的段落", "Common.Controllers.ReviewChanges.textParaInserted": "段落已插入", "Common.Controllers.ReviewChanges.textParaMoveFromDown": "已下移:", "Common.Controllers.ReviewChanges.textParaMoveFromUp": "已上移:", "Common.Controllers.ReviewChanges.textParaMoveTo": "已移動:", - "Common.Controllers.ReviewChanges.textPosition": "職務", + "Common.Controllers.ReviewChanges.textPosition": "位置", "Common.Controllers.ReviewChanges.textRight": "對齊右側", "Common.Controllers.ReviewChanges.textShape": "形狀", - "Common.Controllers.ReviewChanges.textShd": "背景色彩", - "Common.Controllers.ReviewChanges.textShow": "顯示更改", - "Common.Controllers.ReviewChanges.textSmallCaps": "小大寫", + "Common.Controllers.ReviewChanges.textShd": "背景顏色", + "Common.Controllers.ReviewChanges.textShow": "顯示變更於", + "Common.Controllers.ReviewChanges.textSmallCaps": "小型大寫", "Common.Controllers.ReviewChanges.textSpacing": "間距", - "Common.Controllers.ReviewChanges.textSpacingAfter": "後間距", - "Common.Controllers.ReviewChanges.textSpacingBefore": "前間距", + "Common.Controllers.ReviewChanges.textSpacingAfter": "段落後間距", + "Common.Controllers.ReviewChanges.textSpacingBefore": "段落前間距", "Common.Controllers.ReviewChanges.textStrikeout": "刪除線", "Common.Controllers.ReviewChanges.textSubScript": "下標", "Common.Controllers.ReviewChanges.textSuperScript": "上標", "Common.Controllers.ReviewChanges.textTableChanged": "表格設定已刪除", "Common.Controllers.ReviewChanges.textTableRowsAdd": "已添加表格行", "Common.Controllers.ReviewChanges.textTableRowsDel": "已刪除表格行", - "Common.Controllers.ReviewChanges.textTabs": "變更定位", + "Common.Controllers.ReviewChanges.textTabs": "變更定位點", "Common.Controllers.ReviewChanges.textTitleComparison": "比較設定", "Common.Controllers.ReviewChanges.textUnderline": "底線", - "Common.Controllers.ReviewChanges.textUrl": "粘貼文檔網址", - "Common.Controllers.ReviewChanges.textWidow": "遺留文字控制", - "Common.Controllers.ReviewChanges.textWord": "字級", - "Common.define.chartData.textArea": "區域", + "Common.Controllers.ReviewChanges.textUrl": "貼上文件URL", + "Common.Controllers.ReviewChanges.textWidow": "孤行控制", + "Common.Controllers.ReviewChanges.textWord": "詞級", + "Common.define.chartData.textArea": "區域圖", "Common.define.chartData.textAreaStacked": "堆叠面積", "Common.define.chartData.textAreaStackedPer": "100% 堆疊面積圖", - "Common.define.chartData.textBar": "直式長條圖", - "Common.define.chartData.textBarNormal": "組合直式長條圖", + "Common.define.chartData.textBar": "長條圖", + "Common.define.chartData.textBarNormal": "叢集柱狀圖", "Common.define.chartData.textBarNormal3d": "3-D 組合直式長條圖", "Common.define.chartData.textBarNormal3dPerspective": "3-D 直式長條圖", - "Common.define.chartData.textBarStacked": "堆疊直式長條圖", + "Common.define.chartData.textBarStacked": "堆疊柱狀圖", "Common.define.chartData.textBarStacked3d": "3-D 堆疊直式長條圖", "Common.define.chartData.textBarStackedPer": "100% 堆疊直式長條圖", "Common.define.chartData.textBarStackedPer3d": "3-D 100% 堆疊直式長條圖", - "Common.define.chartData.textCharts": "圖表", + "Common.define.chartData.textCharts": "流程圖", "Common.define.chartData.textColumn": "欄", - "Common.define.chartData.textCombo": "組合", - "Common.define.chartData.textComboAreaBar": "組合面積 - 直式長條圖", - "Common.define.chartData.textComboBarLine": "組合直式長條圖 – 線", - "Common.define.chartData.textComboBarLineSecondary": "組合直式長條圖 – 副軸線", - "Common.define.chartData.textComboCustom": "客製組合", - "Common.define.chartData.textDoughnut": "甜甜圈圖", - "Common.define.chartData.textHBarNormal": "組合直式長條圖", + "Common.define.chartData.textCombo": "組合圖", + "Common.define.chartData.textComboAreaBar": "堆疊面積-叢集柱狀圖", + "Common.define.chartData.textComboBarLine": "叢集柱狀圖 - 折線圖", + "Common.define.chartData.textComboBarLineSecondary": "叢集柱狀圖 - 折線圖(次要軸)", + "Common.define.chartData.textComboCustom": "自訂組合", + "Common.define.chartData.textDoughnut": "環狀圖", + "Common.define.chartData.textHBarNormal": "叢集長條圖", "Common.define.chartData.textHBarNormal3d": "3-D 組合直式長條圖", - "Common.define.chartData.textHBarStacked": "堆疊橫式長條圖", + "Common.define.chartData.textHBarStacked": "堆疊長條圖", "Common.define.chartData.textHBarStacked3d": "3-D 堆疊橫式長條圖", "Common.define.chartData.textHBarStackedPer": "100% 堆疊橫式長條圖", "Common.define.chartData.textHBarStackedPer3d": "3-D 100% 堆疊橫式長條圖", - "Common.define.chartData.textLine": "線", + "Common.define.chartData.textLine": "折線圖", "Common.define.chartData.textLine3d": "3-D 直線圖", - "Common.define.chartData.textLineMarker": "直線加標記", - "Common.define.chartData.textLineStacked": "堆疊圖", - "Common.define.chartData.textLineStackedMarker": "堆疊線及標記", + "Common.define.chartData.textLineMarker": "帶標記的線條", + "Common.define.chartData.textLineStacked": "堆疊折線圖", + "Common.define.chartData.textLineStackedMarker": "帶標記的堆疊折線圖", "Common.define.chartData.textLineStackedPer": "100% 堆疊直線圖", "Common.define.chartData.textLineStackedPerMarker": "100% 堆疊直線圖加標記", "Common.define.chartData.textPie": "圓餅圖", "Common.define.chartData.textPie3d": "3-D 圓餅圖", - "Common.define.chartData.textPoint": "XY(散點圖)", - "Common.define.chartData.textRadar": "雷達", - "Common.define.chartData.textRadarFilled": "填色雷達圖", - "Common.define.chartData.textRadarMarker": "含標記的雷達", + "Common.define.chartData.textPoint": "XY散佈圖", + "Common.define.chartData.textRadar": "雷達圖", + "Common.define.chartData.textRadarFilled": "填充雷達圖", + "Common.define.chartData.textRadarMarker": "含標記的雷達圖", "Common.define.chartData.textScatter": "散佈圖", - "Common.define.chartData.textScatterLine": "散佈圖同直線", - "Common.define.chartData.textScatterLineMarker": "散佈圖同直線及標記", - "Common.define.chartData.textScatterSmooth": "散佈圖同平滑線", - "Common.define.chartData.textScatterSmoothMarker": "散佈圖同平滑線及標記", + "Common.define.chartData.textScatterLine": "直線散佈圖", + "Common.define.chartData.textScatterLineMarker": "直線和標記的散佈圖", + "Common.define.chartData.textScatterSmooth": "平滑線條散佈圖", + "Common.define.chartData.textScatterSmoothMarker": "平滑線條和標記的散佈圖", "Common.define.chartData.textStock": "庫存", "Common.define.chartData.textSurface": "表面", "Common.define.smartArt.textAccentedPicture": "強調圖片", @@ -137,77 +137,77 @@ "Common.define.smartArt.textAlternatingPictureBlocks": "交替圖片區塊", "Common.define.smartArt.textAlternatingPictureCircles": "交替圖片圓形", "Common.define.smartArt.textArchitectureLayout": "架構佈局", - "Common.define.smartArt.textArrowRibbon": "箭頭緞帶", - "Common.define.smartArt.textAscendingPictureAccentProcess": "升序圖片強調處理", + "Common.define.smartArt.textArrowRibbon": "箭頭功能表", + "Common.define.smartArt.textAscendingPictureAccentProcess": "遞增圖片裝飾處理", "Common.define.smartArt.textBalance": "平衡", - "Common.define.smartArt.textBasicBendingProcess": "基本彎曲流程", - "Common.define.smartArt.textBasicBlockList": "基本塊清單", - "Common.define.smartArt.textBasicChevronProcess": "基本雪佛龍流程", + "Common.define.smartArt.textBasicBendingProcess": "基本彎曲程序", + "Common.define.smartArt.textBasicBlockList": "基本區塊清單", + "Common.define.smartArt.textBasicChevronProcess": "基本箭頭程序", "Common.define.smartArt.textBasicCycle": "基本循環", "Common.define.smartArt.textBasicMatrix": "基本矩陣", "Common.define.smartArt.textBasicPie": "基本圓餅圖", - "Common.define.smartArt.textBasicProcess": "基本流程", + "Common.define.smartArt.textBasicProcess": "基本程序", "Common.define.smartArt.textBasicPyramid": "基本金字塔", - "Common.define.smartArt.textBasicRadial": "基本射線狀", + "Common.define.smartArt.textBasicRadial": "基本放射狀", "Common.define.smartArt.textBasicTarget": "基本目標", "Common.define.smartArt.textBasicTimeline": "基本時間軸", "Common.define.smartArt.textBasicVenn": "基本文氏圖", - "Common.define.smartArt.textBendingPictureAccentList": "彎曲圖片強調清單", + "Common.define.smartArt.textBendingPictureAccentList": "彎曲圖片重點清單", "Common.define.smartArt.textBendingPictureBlocks": "彎曲圖片區塊", "Common.define.smartArt.textBendingPictureCaption": "彎曲圖片標題", "Common.define.smartArt.textBendingPictureCaptionList": "彎曲圖片標題清單", "Common.define.smartArt.textBendingPictureSemiTranparentText": "彎曲圖片半透明文字", "Common.define.smartArt.textBlockCycle": "區塊循環", - "Common.define.smartArt.textBubblePictureList": "氣泡圖片清單", + "Common.define.smartArt.textBubblePictureList": "泡泡圖片清單", "Common.define.smartArt.textCaptionedPictures": "帶標題的圖片", - "Common.define.smartArt.textChevronAccentProcess": "箭頭強調流程", + "Common.define.smartArt.textChevronAccentProcess": "箭頭強調程序", "Common.define.smartArt.textChevronList": "箭頭清單", "Common.define.smartArt.textCircleAccentTimeline": "圓形強調時間軸", - "Common.define.smartArt.textCircleArrowProcess": "圓形箭頭流程", - "Common.define.smartArt.textCirclePictureHierarchy": "圓形圖片階層結構", - "Common.define.smartArt.textCircleProcess": "圓形流程", - "Common.define.smartArt.textCircleRelationship": "圓形關係", - "Common.define.smartArt.textCircularBendingProcess": "圓形彎曲流程", + "Common.define.smartArt.textCircleArrowProcess": "圓形箭頭程序", + "Common.define.smartArt.textCirclePictureHierarchy": "圓形圖片階層", + "Common.define.smartArt.textCircleProcess": "圓形程序", + "Common.define.smartArt.textCircleRelationship": "圓形關聯", + "Common.define.smartArt.textCircularBendingProcess": "圓形彎曲程序", "Common.define.smartArt.textCircularPictureCallout": "圓形圖片註解", - "Common.define.smartArt.textClosedChevronProcess": "閉合箭頭流程", + "Common.define.smartArt.textClosedChevronProcess": "閉合式強調程序", "Common.define.smartArt.textContinuousArrowProcess": "連續箭頭流程", "Common.define.smartArt.textContinuousBlockProcess": "連續塊流程", "Common.define.smartArt.textContinuousCycle": "連續循環", - "Common.define.smartArt.textContinuousPictureList": "連續圖片清單", + "Common.define.smartArt.textContinuousPictureList": "連續圖片列表", "Common.define.smartArt.textConvergingArrows": "匯聚箭頭", - "Common.define.smartArt.textConvergingRadial": "匯聚射線狀", - "Common.define.smartArt.textConvergingText": "匯聚文字", - "Common.define.smartArt.textCounterbalanceArrows": "平衡箭頭", + "Common.define.smartArt.textConvergingRadial": "匯聚徑向", + "Common.define.smartArt.textConvergingText": "匯聚文件", + "Common.define.smartArt.textCounterbalanceArrows": "對稱平衡箭頭", "Common.define.smartArt.textCycle": "循環", "Common.define.smartArt.textCycleMatrix": "循環矩陣", - "Common.define.smartArt.textDescendingBlockList": "降序區塊清單", - "Common.define.smartArt.textDescendingProcess": "降序流程", - "Common.define.smartArt.textDetailedProcess": "詳細流程", - "Common.define.smartArt.textDivergingArrows": "發散箭頭", - "Common.define.smartArt.textDivergingRadial": "發散徑向", + "Common.define.smartArt.textDescendingBlockList": "遞減區塊清單", + "Common.define.smartArt.textDescendingProcess": "遞減處理", + "Common.define.smartArt.textDetailedProcess": "詳細處理", + "Common.define.smartArt.textDivergingArrows": "分歧箭頭", + "Common.define.smartArt.textDivergingRadial": "分歧徑向", "Common.define.smartArt.textEquation": "方程式", - "Common.define.smartArt.textFramedTextPicture": "框架文字圖片", + "Common.define.smartArt.textFramedTextPicture": "框線文字圖片", "Common.define.smartArt.textFunnel": "漏斗", "Common.define.smartArt.textGear": "齒輪", - "Common.define.smartArt.textGridMatrix": "網格矩陣", + "Common.define.smartArt.textGridMatrix": "格狀矩陣", "Common.define.smartArt.textGroupedList": "分組清單", "Common.define.smartArt.textHalfCircleOrganizationChart": "半圓形組織圖", - "Common.define.smartArt.textHexagonCluster": "六邊形群組", - "Common.define.smartArt.textHexagonRadial": "六邊形徑向", - "Common.define.smartArt.textHierarchy": "階層結構", - "Common.define.smartArt.textHierarchyList": "階層清單", - "Common.define.smartArt.textHorizontalBulletList": "水平項目符號清單", - "Common.define.smartArt.textHorizontalHierarchy": "水平階層結構", - "Common.define.smartArt.textHorizontalLabeledHierarchy": "水平標籤階層結構", - "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "水平多層階層結構", + "Common.define.smartArt.textHexagonCluster": "六邊形集群", + "Common.define.smartArt.textHexagonRadial": "六邊形放射狀", + "Common.define.smartArt.textHierarchy": "層級結構", + "Common.define.smartArt.textHierarchyList": "層級結構清單", + "Common.define.smartArt.textHorizontalBulletList": "水平項目清單", + "Common.define.smartArt.textHorizontalHierarchy": "水平層級結構", + "Common.define.smartArt.textHorizontalLabeledHierarchy": "水平標籤層級結構", + "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "水平多層次層級結構", "Common.define.smartArt.textHorizontalOrganizationChart": "水平組織圖", "Common.define.smartArt.textHorizontalPictureList": "水平圖片清單", "Common.define.smartArt.textIncreasingArrowProcess": "遞增箭頭流程", "Common.define.smartArt.textIncreasingCircleProcess": "遞增圓圈流程", - "Common.define.smartArt.textInterconnectedBlockProcess": "互連區塊流程", + "Common.define.smartArt.textInterconnectedBlockProcess": "互連塊狀流程", "Common.define.smartArt.textInterconnectedRings": "互連環圖", - "Common.define.smartArt.textInvertedPyramid": "倒金字塔", - "Common.define.smartArt.textLabeledHierarchy": "含標籤的階層結構", + "Common.define.smartArt.textInvertedPyramid": "倒置金字塔", + "Common.define.smartArt.textLabeledHierarchy": "標記層次結構", "Common.define.smartArt.textLinearVenn": "線性文氏圖", "Common.define.smartArt.textLinedList": "有格線的清單", "Common.define.smartArt.textList": "清單", @@ -215,20 +215,20 @@ "Common.define.smartArt.textMultidirectionalCycle": "多方向循環", "Common.define.smartArt.textNameAndTitleOrganizationChart": "名稱與職稱組織圖", "Common.define.smartArt.textNestedTarget": "巢狀目標", - "Common.define.smartArt.textNondirectionalCycle": "無方向循環", + "Common.define.smartArt.textNondirectionalCycle": "非定向循環", "Common.define.smartArt.textOpposingArrows": "相對箭頭", "Common.define.smartArt.textOpposingIdeas": "相對觀點", "Common.define.smartArt.textOrganizationChart": "組織圖", "Common.define.smartArt.textOther": "其它", - "Common.define.smartArt.textPhasedProcess": "分階處理", + "Common.define.smartArt.textPhasedProcess": "分階段處理", "Common.define.smartArt.textPicture": "圖片", "Common.define.smartArt.textPictureAccentBlocks": "圖片強調區塊", "Common.define.smartArt.textPictureAccentList": "圖片強調清單", "Common.define.smartArt.textPictureAccentProcess": "圖片強調流程", - "Common.define.smartArt.textPictureCaptionList": "圖片標題列表", + "Common.define.smartArt.textPictureCaptionList": "圖片標題清單", "Common.define.smartArt.textPictureFrame": "圖片框架", "Common.define.smartArt.textPictureGrid": "圖片網格", - "Common.define.smartArt.textPictureLineup": "圖片排列", + "Common.define.smartArt.textPictureLineup": "圖片對齊", "Common.define.smartArt.textPictureOrganizationChart": "圖片組織圖", "Common.define.smartArt.textPictureStrips": "圖片條帶", "Common.define.smartArt.textPieProcess": "圓餅圖流程", @@ -238,12 +238,12 @@ "Common.define.smartArt.textProcessList": "流程清單", "Common.define.smartArt.textPyramid": "金字塔", "Common.define.smartArt.textPyramidList": "金字塔清單", - "Common.define.smartArt.textRadialCluster": "徑向群組", - "Common.define.smartArt.textRadialCycle": "徑向循環", - "Common.define.smartArt.textRadialList": "徑向清單", - "Common.define.smartArt.textRadialPictureList": "徑向圖片清單", - "Common.define.smartArt.textRadialVenn": "徑向文氏圖", - "Common.define.smartArt.textRandomToResultProcess": "隨機結果處理", + "Common.define.smartArt.textRadialCluster": "放射狀群集", + "Common.define.smartArt.textRadialCycle": "放射狀循環", + "Common.define.smartArt.textRadialList": "放射狀清單", + "Common.define.smartArt.textRadialPictureList": "放射狀圖片清單", + "Common.define.smartArt.textRadialVenn": "放射狀文氏圖", + "Common.define.smartArt.textRandomToResultProcess": "隨機到結果的流程", "Common.define.smartArt.textRelationship": "關聯性", "Common.define.smartArt.textRepeatingBendingProcess": "重複彎曲流程", "Common.define.smartArt.textReverseList": "反向清單", @@ -258,8 +258,8 @@ "Common.define.smartArt.textStaggeredProcess": "交錯式流程", "Common.define.smartArt.textStepDownProcess": "向下階梯式流程", "Common.define.smartArt.textStepUpProcess": "向上階梯式流程", - "Common.define.smartArt.textSubStepProcess": "子階段式流程", - "Common.define.smartArt.textTabbedArc": "已定位的弧形", + "Common.define.smartArt.textSubStepProcess": "子步驟流程", + "Common.define.smartArt.textTabbedArc": "帶有制表符的弧形", "Common.define.smartArt.textTableHierarchy": "表格階層", "Common.define.smartArt.textTableList": "表格清單", "Common.define.smartArt.textTabList": "定位清單", @@ -271,10 +271,10 @@ "Common.define.smartArt.textTitledMatrix": "標題矩陣", "Common.define.smartArt.textTitledPictureAccentList": "標題圖片強調清單", "Common.define.smartArt.textTitledPictureBlocks": "標題圖片區塊", - "Common.define.smartArt.textTitlePictureLineup": "標題圖片排列", - "Common.define.smartArt.textTrapezoidList": "梯形清單", + "Common.define.smartArt.textTitlePictureLineup": "標題圖片對齊", + "Common.define.smartArt.textTrapezoidList": "梯形列表", "Common.define.smartArt.textUpwardArrow": "向上箭頭", - "Common.define.smartArt.textVaryingWidthList": "寬度不一的清單", + "Common.define.smartArt.textVaryingWidthList": "不同寬度清單", "Common.define.smartArt.textVerticalAccentList": "垂直強調清單", "Common.define.smartArt.textVerticalArrowList": "垂直箭頭清單", "Common.define.smartArt.textVerticalBendingProcess": "垂直彎曲流程", @@ -282,22 +282,22 @@ "Common.define.smartArt.textVerticalBoxList": "垂直方塊清單", "Common.define.smartArt.textVerticalBracketList": "垂直括弧清單", "Common.define.smartArt.textVerticalBulletList": "垂直項目符號清單", - "Common.define.smartArt.textVerticalChevronList": "垂直V型清單", - "Common.define.smartArt.textVerticalCircleList": "垂直循環清單", - "Common.define.smartArt.textVerticalCurvedList": "垂直彎曲清單", + "Common.define.smartArt.textVerticalChevronList": "垂直雙箭頭清單", + "Common.define.smartArt.textVerticalCircleList": "垂直圓圈清單", + "Common.define.smartArt.textVerticalCurvedList": "垂直曲線清單", "Common.define.smartArt.textVerticalEquation": "垂直方程式", - "Common.define.smartArt.textVerticalPictureAccentList": "垂直圖片強調清單", + "Common.define.smartArt.textVerticalPictureAccentList": "垂直圖片重音清單", "Common.define.smartArt.textVerticalPictureList": "垂直圖片清單", "Common.define.smartArt.textVerticalProcess": "垂直流程", "Common.Translation.textMoreButton": "更多", - "Common.Translation.tipFileLocked": "文件已鎖定編輯。您可以進行更改並保存為本機副本。", - "Common.Translation.tipFileReadOnly": "此檔案是唯讀的。若要保留您的更改,請以新名稱或不同位置儲存此檔案。", - "Common.Translation.warnFileLocked": "該文件正在另一個應用程式中進行編輯。您可以繼續編輯並將其另存為副本。", - "Common.Translation.warnFileLockedBtnEdit": "\n建立副本", - "Common.Translation.warnFileLockedBtnView": "打開查看", + "Common.Translation.tipFileLocked": "文件正在被鎖定,您可以進行更改並稍後保存為本地副本。", + "Common.Translation.tipFileReadOnly": "該文件是唯讀的。若要保留您的變更,請使用新名稱或不同位置儲存該文件。", + "Common.Translation.warnFileLocked": "您無法編輯此文件,因為它正在另一個應用程式中被編輯。", + "Common.Translation.warnFileLockedBtnEdit": "創建副本", + "Common.Translation.warnFileLockedBtnView": "僅供查看", "Common.UI.ButtonColored.textAutoColor": "自動", - "Common.UI.ButtonColored.textEyedropper": "滴管工具", - "Common.UI.ButtonColored.textNewColor": "新增自訂顏色", + "Common.UI.ButtonColored.textEyedropper": "吸管", + "Common.UI.ButtonColored.textNewColor": "更多顏色", "Common.UI.Calendar.textApril": "四月", "Common.UI.Calendar.textAugust": "八月", "Common.UI.Calendar.textDecember": "十二月", @@ -307,71 +307,71 @@ "Common.UI.Calendar.textJune": "六月", "Common.UI.Calendar.textMarch": "三月", "Common.UI.Calendar.textMay": "五月", - "Common.UI.Calendar.textMonths": "月", + "Common.UI.Calendar.textMonths": "月份", "Common.UI.Calendar.textNovember": "十一月", "Common.UI.Calendar.textOctober": "十月", "Common.UI.Calendar.textSeptember": "九月", - "Common.UI.Calendar.textShortApril": "Apr", - "Common.UI.Calendar.textShortAugust": "Aug", - "Common.UI.Calendar.textShortDecember": "Dec", - "Common.UI.Calendar.textShortFebruary": "Feb", - "Common.UI.Calendar.textShortFriday": "Fri", - "Common.UI.Calendar.textShortJanuary": "Jan", - "Common.UI.Calendar.textShortJuly": "Jul", - "Common.UI.Calendar.textShortJune": "Jun", - "Common.UI.Calendar.textShortMarch": "Mar", + "Common.UI.Calendar.textShortApril": "四月", + "Common.UI.Calendar.textShortAugust": "八月", + "Common.UI.Calendar.textShortDecember": "十二月", + "Common.UI.Calendar.textShortFebruary": "二月", + "Common.UI.Calendar.textShortFriday": "Fr", + "Common.UI.Calendar.textShortJanuary": "一月", + "Common.UI.Calendar.textShortJuly": "七月", + "Common.UI.Calendar.textShortJune": "六月", + "Common.UI.Calendar.textShortMarch": "三月", "Common.UI.Calendar.textShortMay": "May", "Common.UI.Calendar.textShortMonday": "Mo", - "Common.UI.Calendar.textShortNovember": "Nov", - "Common.UI.Calendar.textShortOctober": "Oct", + "Common.UI.Calendar.textShortNovember": "十一月", + "Common.UI.Calendar.textShortOctober": "十月", "Common.UI.Calendar.textShortSaturday": "Sa", - "Common.UI.Calendar.textShortSeptember": "Sep", - "Common.UI.Calendar.textShortSunday": "Su", - "Common.UI.Calendar.textShortThursday": "Thur", - "Common.UI.Calendar.textShortTuesday": "Tue", - "Common.UI.Calendar.textShortWednesday": "Wed", - "Common.UI.Calendar.textYears": "年", + "Common.UI.Calendar.textShortSeptember": "9月", + "Common.UI.Calendar.textShortSunday": "次方,上標", + "Common.UI.Calendar.textShortThursday": "th", + "Common.UI.Calendar.textShortTuesday": "Tu", + "Common.UI.Calendar.textShortWednesday": "我們", + "Common.UI.Calendar.textYears": "年份", "Common.UI.ComboBorderSize.txtNoBorders": "無邊框", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "無邊框", - "Common.UI.ComboDataView.emptyComboText": "無風格", + "Common.UI.ComboDataView.emptyComboText": "無樣式", "Common.UI.ExtendedColorDialog.addButtonText": "新增", - "Common.UI.ExtendedColorDialog.textCurrent": "當前", - "Common.UI.ExtendedColorDialog.textHexErr": "輸入的值不正確。
請輸入一個介於000000和FFFFFF之間的值。", - "Common.UI.ExtendedColorDialog.textNew": "新", - "Common.UI.ExtendedColorDialog.textRGBErr": "輸入的值不正確。
請輸入0到255之間的數字。", - "Common.UI.HSBColorPicker.textNoColor": "無顏色", - "Common.UI.InputFieldBtnCalendar.textDate": "選取日期", - "Common.UI.InputFieldBtnPassword.textHintHidePwd": "不顯示密碼", + "Common.UI.ExtendedColorDialog.textCurrent": "目前", + "Common.UI.ExtendedColorDialog.textHexErr": "輸入的值不正確。
請輸入介於000000和FFFFFF之間的值。", + "Common.UI.ExtendedColorDialog.textNew": "新增", + "Common.UI.ExtendedColorDialog.textRGBErr": "輸入的值不正確。
請輸入介於0和255之間的數值。", + "Common.UI.HSBColorPicker.textNoColor": "沒有顏色", + "Common.UI.InputFieldBtnCalendar.textDate": "選擇日期", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "隱藏密碼", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "顯示密碼", "Common.UI.SearchBar.textFind": "尋找", - "Common.UI.SearchBar.tipCloseSearch": "關閉搜索", + "Common.UI.SearchBar.tipCloseSearch": "關閉搜尋", "Common.UI.SearchBar.tipNextResult": "下一個結果", - "Common.UI.SearchBar.tipOpenAdvancedSettings": "開啟進階設置", - "Common.UI.SearchBar.tipPreviousResult": "上一個結果", - "Common.UI.SearchDialog.textHighlight": "強調結果", + "Common.UI.SearchBar.tipOpenAdvancedSettings": "開啟進階設定", + "Common.UI.SearchBar.tipPreviousResult": "前一個結果", + "Common.UI.SearchDialog.textHighlight": "突顯結果", "Common.UI.SearchDialog.textMatchCase": "區分大小寫", - "Common.UI.SearchDialog.textReplaceDef": "輸入替換文字", - "Common.UI.SearchDialog.textSearchStart": "在這裡輸入您的文字", - "Common.UI.SearchDialog.textTitle": "尋找和取代", + "Common.UI.SearchDialog.textReplaceDef": "請輸入替換文字", + "Common.UI.SearchDialog.textSearchStart": "在此輸入您的文字", + "Common.UI.SearchDialog.textTitle": "尋找並取代", "Common.UI.SearchDialog.textTitle2": "尋找", - "Common.UI.SearchDialog.textWholeWords": "僅使用全字", - "Common.UI.SearchDialog.txtBtnHideReplace": "隱藏替換", + "Common.UI.SearchDialog.textWholeWords": "僅完整單詞", + "Common.UI.SearchDialog.txtBtnHideReplace": "隱藏取代", "Common.UI.SearchDialog.txtBtnReplace": "取代", - "Common.UI.SearchDialog.txtBtnReplaceAll": "取代全部", - "Common.UI.SynchronizeTip.textDontShow": "不再顯示此消息", - "Common.UI.SynchronizeTip.textSynchronize": "該文檔已被其他帳戶更改。
請單擊以儲存更改並重新加載更新。", + "Common.UI.SearchDialog.txtBtnReplaceAll": "全部取代", + "Common.UI.SynchronizeTip.textDontShow": "不再顯示此訊息", + "Common.UI.SynchronizeTip.textSynchronize": "文件已被其他使用者更改。
請按一下以保存您的更改並重新載入更新。", "Common.UI.ThemeColorPalette.textRecentColors": "近期顏色", "Common.UI.ThemeColorPalette.textStandartColors": "標準顏色", "Common.UI.ThemeColorPalette.textThemeColors": "主題顏色", "Common.UI.ThemeColorPalette.textTransparent": "透明", - "Common.UI.Themes.txtThemeClassicLight": "傳統亮色", - "Common.UI.Themes.txtThemeContrastDark": "暗色對比", - "Common.UI.Themes.txtThemeDark": "暗色主題", - "Common.UI.Themes.txtThemeLight": "亮色主題", - "Common.UI.Themes.txtThemeSystem": "和系統一致", + "Common.UI.Themes.txtThemeClassicLight": "經典亮色", + "Common.UI.Themes.txtThemeContrastDark": "對比度深", + "Common.UI.Themes.txtThemeDark": "深色", + "Common.UI.Themes.txtThemeLight": "淺色", + "Common.UI.Themes.txtThemeSystem": "與系統相同", "Common.UI.Window.cancelButtonText": "取消", "Common.UI.Window.closeButtonText": "關閉", - "Common.UI.Window.noButtonText": "沒有", + "Common.UI.Window.noButtonText": "否", "Common.UI.Window.okButtonText": "確定", "Common.UI.Window.textConfirmation": "確認", "Common.UI.Window.textDontShow": "不再顯示此訊息", @@ -380,24 +380,24 @@ "Common.UI.Window.textWarning": "警告", "Common.UI.Window.yesButtonText": "是", "Common.Utils.Metric.txtCm": "公分", - "Common.Utils.Metric.txtPt": "pt", + "Common.Utils.Metric.txtPt": "點(排版單位)", "Common.Utils.String.textAlt": "Alt", "Common.Utils.String.textCtrl": "Ctrl", - "Common.Utils.String.textShift": "Shift", + "Common.Utils.String.textShift": "移動", "Common.Utils.ThemeColor.txtaccent": "口音", - "Common.Utils.ThemeColor.txtAqua": "淺綠色", + "Common.Utils.ThemeColor.txtAqua": "水藍色", "Common.Utils.ThemeColor.txtbackground": "背景", "Common.Utils.ThemeColor.txtBlack": "黑色", "Common.Utils.ThemeColor.txtBlue": "藍色", - "Common.Utils.ThemeColor.txtBrightGreen": "亮綠色", + "Common.Utils.ThemeColor.txtBrightGreen": "明亮綠色", "Common.Utils.ThemeColor.txtBrown": "棕色", "Common.Utils.ThemeColor.txtDarkBlue": "深藍色", - "Common.Utils.ThemeColor.txtDarker": "較深的", + "Common.Utils.ThemeColor.txtDarker": "更暗", "Common.Utils.ThemeColor.txtDarkGray": "深灰色", "Common.Utils.ThemeColor.txtDarkGreen": "深綠色", "Common.Utils.ThemeColor.txtDarkPurple": "深紫色", "Common.Utils.ThemeColor.txtDarkRed": "深紅色", - "Common.Utils.ThemeColor.txtDarkTeal": "藍綠色", + "Common.Utils.ThemeColor.txtDarkTeal": "深青色", "Common.Utils.ThemeColor.txtDarkYellow": "深黃色", "Common.Utils.ThemeColor.txtGold": "金色", "Common.Utils.ThemeColor.txtGray": "灰色", @@ -408,14 +408,14 @@ "Common.Utils.ThemeColor.txtLighter": "較淺的", "Common.Utils.ThemeColor.txtLightGray": "淺灰色", "Common.Utils.ThemeColor.txtLightGreen": "淺綠色", - "Common.Utils.ThemeColor.txtLightOrange": "淺橙色", + "Common.Utils.ThemeColor.txtLightOrange": "淺橘色", "Common.Utils.ThemeColor.txtLightYellow": "淺黃色", "Common.Utils.ThemeColor.txtOrange": "橘色", "Common.Utils.ThemeColor.txtPink": "粉紅色", "Common.Utils.ThemeColor.txtPurple": "紫色", "Common.Utils.ThemeColor.txtRed": "紅色", "Common.Utils.ThemeColor.txtRose": "玫瑰色", - "Common.Utils.ThemeColor.txtSkyBlue": "天空藍", + "Common.Utils.ThemeColor.txtSkyBlue": "天藍色", "Common.Utils.ThemeColor.txtTeal": "藍綠色", "Common.Utils.ThemeColor.txttext": "文字", "Common.Utils.ThemeColor.txtTurquosie": "藍綠色", @@ -423,152 +423,152 @@ "Common.Utils.ThemeColor.txtWhite": "白色", "Common.Utils.ThemeColor.txtYellow": "黃色", "Common.Views.About.txtAddress": "地址:", - "Common.Views.About.txtLicensee": "被許可人", - "Common.Views.About.txtLicensor": "許可人", + "Common.Views.About.txtLicensee": "被授權方", + "Common.Views.About.txtLicensor": "授權方", "Common.Views.About.txtMail": "電子郵件:", - "Common.Views.About.txtPoweredBy": "於支援", + "Common.Views.About.txtPoweredBy": "由...提供", "Common.Views.About.txtTel": "電話: ", "Common.Views.About.txtVersion": "版本", "Common.Views.AutoCorrectDialog.textAdd": "新增", "Common.Views.AutoCorrectDialog.textApplyText": "輸入時套用", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "自動更正", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "文字自動更正", "Common.Views.AutoCorrectDialog.textAutoFormat": "輸入時自動套用格式", - "Common.Views.AutoCorrectDialog.textBulleted": "自動項目符號列表", + "Common.Views.AutoCorrectDialog.textBulleted": "自動項目符號", "Common.Views.AutoCorrectDialog.textBy": "依照", "Common.Views.AutoCorrectDialog.textDelete": "刪除", "Common.Views.AutoCorrectDialog.textDoubleSpaces": "按兩下空白鍵自動增加一個句點(.)符號", - "Common.Views.AutoCorrectDialog.textFLCells": "儲存格首字母大寫", - "Common.Views.AutoCorrectDialog.textFLDont": "請勿在之後大寫", - "Common.Views.AutoCorrectDialog.textFLSentence": "英文句子第一個字母大寫", - "Common.Views.AutoCorrectDialog.textForLangFL": "語言例外:", - "Common.Views.AutoCorrectDialog.textHyperlink": "網絡路徑超連結", - "Common.Views.AutoCorrectDialog.textHyphens": "帶連字符(-)的連字符(-)", - "Common.Views.AutoCorrectDialog.textMathCorrect": "數學自動更正", + "Common.Views.AutoCorrectDialog.textFLCells": "儲存格第一個字母大寫", + "Common.Views.AutoCorrectDialog.textFLDont": "之後不要大寫", + "Common.Views.AutoCorrectDialog.textFLSentence": "每個句子的第一個字母大寫", + "Common.Views.AutoCorrectDialog.textForLangFL": "語言的例外情況:", + "Common.Views.AutoCorrectDialog.textHyperlink": "以超連結取代網際網路和網路路徑", + "Common.Views.AutoCorrectDialog.textHyphens": "連字號(--)取代成破折號(—)", + "Common.Views.AutoCorrectDialog.textMathCorrect": "數學自動校正", "Common.Views.AutoCorrectDialog.textNumbered": "自動編號列表", "Common.Views.AutoCorrectDialog.textQuotes": "\"直引號\"與\"智能引號\"", "Common.Views.AutoCorrectDialog.textRecognized": "公認的功能", - "Common.Views.AutoCorrectDialog.textRecognizedDesc": "以下表達式是公認的數學表達式。它們不會自動斜體顯示。", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "下面的運算式是可辨識的數學運算式,將不會自動以斜體表示", "Common.Views.AutoCorrectDialog.textReplace": "取代", - "Common.Views.AutoCorrectDialog.textReplaceText": "鍵入時替換", - "Common.Views.AutoCorrectDialog.textReplaceType": "鍵入時替換文字", - "Common.Views.AutoCorrectDialog.textReset": "重設", - "Common.Views.AutoCorrectDialog.textResetAll": "重置為預設", + "Common.Views.AutoCorrectDialog.textReplaceText": "輸入時替換文字", + "Common.Views.AutoCorrectDialog.textReplaceType": "輸入時替換文字", + "Common.Views.AutoCorrectDialog.textReset": "重置", + "Common.Views.AutoCorrectDialog.textResetAll": "重設為預設值", "Common.Views.AutoCorrectDialog.textRestore": "恢復", "Common.Views.AutoCorrectDialog.textTitle": "自動更正", - "Common.Views.AutoCorrectDialog.textWarnAddFL": "例外必須包含只有字母,大小寫不拘。", - "Common.Views.AutoCorrectDialog.textWarnAddRec": "公認的函數只能包含字母A到Z,大寫或小寫。", + "Common.Views.AutoCorrectDialog.textWarnAddFL": "例外情況只能包含字母,大寫或小寫。", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "識別的函數只能包含字母A到Z,大寫或小寫。", "Common.Views.AutoCorrectDialog.textWarnResetFL": "您新增的所有例外狀況都將被移除,已移除的例外狀況將會被還原。您要繼續嗎?", "Common.Views.AutoCorrectDialog.textWarnResetRec": "您新增的所有表達式都將被刪除,被刪除的表達式將被恢復。你想繼續嗎?", - "Common.Views.AutoCorrectDialog.warnReplace": "%1的自動更正條目已存在。您要更換嗎?", + "Common.Views.AutoCorrectDialog.warnReplace": "%1的自動更正項已經存在。是否要更換?", "Common.Views.AutoCorrectDialog.warnReset": "您增加的所有自動更正功能將被刪除,更改後的自動更正將恢復為其原始值。你想繼續嗎?", - "Common.Views.AutoCorrectDialog.warnRestore": "%1的自動更正條目將被重置為其原始值。你想繼續嗎?", - "Common.Views.Chat.textSend": "傳送", - "Common.Views.Comments.mniAuthorAsc": "作者排序A到Z", - "Common.Views.Comments.mniAuthorDesc": "作者排序Z到A", - "Common.Views.Comments.mniDateAsc": "從最舊的", - "Common.Views.Comments.mniDateDesc": "從最新的", + "Common.Views.AutoCorrectDialog.warnRestore": "%1的自動更正項目將被重置為其原始值。是否要繼續?", + "Common.Views.Chat.textSend": "發送", + "Common.Views.Comments.mniAuthorAsc": "作者 A 到 Z", + "Common.Views.Comments.mniAuthorDesc": "作者 Z 到 A", + "Common.Views.Comments.mniDateAsc": "最舊的", + "Common.Views.Comments.mniDateDesc": "最新的", "Common.Views.Comments.mniFilterGroups": "依群組篩選", - "Common.Views.Comments.mniPositionAsc": "從上到下", - "Common.Views.Comments.mniPositionDesc": "自下而上", + "Common.Views.Comments.mniPositionAsc": "從頂部", + "Common.Views.Comments.mniPositionDesc": "來自底部", "Common.Views.Comments.textAdd": "新增", "Common.Views.Comments.textAddComment": "發表註解", "Common.Views.Comments.textAddCommentToDoc": "在文檔中新增註解", "Common.Views.Comments.textAddReply": "加入回應", "Common.Views.Comments.textAll": "全部", - "Common.Views.Comments.textAnonym": "匿名帳戶", + "Common.Views.Comments.textAnonym": "訪客", "Common.Views.Comments.textCancel": "取消", "Common.Views.Comments.textClose": "關閉", - "Common.Views.Comments.textClosePanel": "關閉註解", - "Common.Views.Comments.textComments": "註解", + "Common.Views.Comments.textClosePanel": "關閉評論", + "Common.Views.Comments.textComments": "評論", "Common.Views.Comments.textEdit": "確定", - "Common.Views.Comments.textEnterCommentHint": "在這裡輸入您的註解", + "Common.Views.Comments.textEnterCommentHint": "在此輸入您的評論", "Common.Views.Comments.textHintAddComment": "新增註解", - "Common.Views.Comments.textOpenAgain": "重新打開", + "Common.Views.Comments.textOpenAgain": "重新開啟", "Common.Views.Comments.textReply": "回覆", "Common.Views.Comments.textResolve": "解決", "Common.Views.Comments.textResolved": "已解決", - "Common.Views.Comments.textSort": "註解分類", - "Common.Views.Comments.textViewResolved": "你沒有重新開啟這個註解的權限", - "Common.Views.Comments.txtEmpty": "文件裡沒有註解。", + "Common.Views.Comments.textSort": "排序註解", + "Common.Views.Comments.textViewResolved": "您沒有重新開啟評論的權限", + "Common.Views.Comments.txtEmpty": "文件中沒有任何註解。", "Common.Views.CopyWarningDialog.textDontShow": "不再顯示此訊息", - "Common.Views.CopyWarningDialog.textMsg": "使用編輯器工具欄按鈕進行[複制],[剪下]和[貼上]的操作以及內文選單操作僅能在此編輯器中執行。

要在\"編輯器\"之外的應用程式之間進行[複製]或[貼上],請使用以下鍵盤組合:", + "Common.Views.CopyWarningDialog.textMsg": "僅能在此編輯器中使用編輯器工具列按鈕和上下文選單進行複製、剪下和貼上操作。

要在編輯器外的應用程序之間進行複製或貼上,請使用以下鍵盤組合:", "Common.Views.CopyWarningDialog.textTitle": "複製、剪下和貼上動作", - "Common.Views.CopyWarningDialog.textToCopy": "複製", - "Common.Views.CopyWarningDialog.textToCut": "剪下", - "Common.Views.CopyWarningDialog.textToPaste": "粘貼", + "Common.Views.CopyWarningDialog.textToCopy": "適用於複製", + "Common.Views.CopyWarningDialog.textToCut": "適用於剪下", + "Common.Views.CopyWarningDialog.textToPaste": "適用於貼上", "Common.Views.DocumentAccessDialog.textLoading": "載入中...", "Common.Views.DocumentAccessDialog.textTitle": "分享設定", "Common.Views.Draw.hintEraser": "橡皮擦", "Common.Views.Draw.hintSelect": "選擇", "Common.Views.Draw.txtEraser": "橡皮擦", "Common.Views.Draw.txtHighlighter": "螢光筆", - "Common.Views.Draw.txtMM": "分", + "Common.Views.Draw.txtMM": "毫米", "Common.Views.Draw.txtPen": "筆", "Common.Views.Draw.txtSelect": "選擇", "Common.Views.Draw.txtSize": "大小", "Common.Views.ExternalDiagramEditor.textTitle": "圖表編輯器", "Common.Views.ExternalEditor.textClose": "關閉", - "Common.Views.ExternalEditor.textSave": "存檔並離開", + "Common.Views.ExternalEditor.textSave": "儲存並關閉", "Common.Views.ExternalMergeEditor.textTitle": "郵件合併收件人", "Common.Views.ExternalOleEditor.textTitle": "試算表編輯器", - "Common.Views.Header.labelCoUsersDescr": "正在編輯文件的帳戶:", - "Common.Views.Header.textAddFavorite": "標記為最愛收藏", + "Common.Views.Header.labelCoUsersDescr": "正在編輯文件的使用者:", + "Common.Views.Header.textAddFavorite": "標記為常用項目", "Common.Views.Header.textAdvSettings": "進階設定", - "Common.Views.Header.textBack": "打開文件所在位置", - "Common.Views.Header.textCompactView": "隱藏工具欄", + "Common.Views.Header.textBack": "打開檔案位置", + "Common.Views.Header.textCompactView": "隱藏工具列", "Common.Views.Header.textHideLines": "隱藏標尺", - "Common.Views.Header.textHideStatusBar": "隱藏狀態欄", + "Common.Views.Header.textHideStatusBar": "隱藏狀態列", "Common.Views.Header.textReadOnly": "唯讀", "Common.Views.Header.textRemoveFavorite": "\n從最愛收藏夾中刪除", "Common.Views.Header.textShare": "分享", - "Common.Views.Header.textZoom": "放大", + "Common.Views.Header.textZoom": "縮放", "Common.Views.Header.tipAccessRights": "管理文檔存取權限", "Common.Views.Header.tipDownload": "下載文件", - "Common.Views.Header.tipGoEdit": "編輯當前文件", - "Common.Views.Header.tipPrint": "列印文件", + "Common.Views.Header.tipGoEdit": "編輯當前檔案", + "Common.Views.Header.tipPrint": "列印檔案", "Common.Views.Header.tipPrintQuick": "快速列印", "Common.Views.Header.tipRedo": "重做", - "Common.Views.Header.tipSave": "存檔", + "Common.Views.Header.tipSave": "儲存", "Common.Views.Header.tipSearch": "搜尋", "Common.Views.Header.tipUndo": "復原", - "Common.Views.Header.tipUsers": "查看用戶", - "Common.Views.Header.tipViewSettings": "查看設定", - "Common.Views.Header.tipViewUsers": "查看帳戶並管理文檔存取權限", + "Common.Views.Header.tipUsers": "檢視使用者", + "Common.Views.Header.tipViewSettings": "檢視設定", + "Common.Views.Header.tipViewUsers": "檢視使用者並管理文件存取權限", "Common.Views.Header.txtAccessRights": "變更存取權限", "Common.Views.Header.txtRename": "重新命名", "Common.Views.History.textCloseHistory": "關閉歷史紀錄", - "Common.Views.History.textHide": "隱藏", - "Common.Views.History.textHideAll": "隱藏詳細的更改", + "Common.Views.History.textHide": "折疊", + "Common.Views.History.textHideAll": "隱藏詳細更改", "Common.Views.History.textRestore": "還原", - "Common.Views.History.textShow": "擴大", - "Common.Views.History.textShowAll": "顯示詳細的更改", + "Common.Views.History.textShow": "展開", + "Common.Views.History.textShowAll": "顯示詳細變更", "Common.Views.History.textVer": "版本", - "Common.Views.ImageFromUrlDialog.textUrl": "粘貼圖片網址:", - "Common.Views.ImageFromUrlDialog.txtEmpty": "這是必填欄", - "Common.Views.ImageFromUrlDialog.txtNotUrl": "此段落應為“ http://www.example.com”格式的網址", - "Common.Views.InsertTableDialog.textInvalidRowsCols": "您需要指定有效的欄數和列數。", + "Common.Views.ImageFromUrlDialog.textUrl": "貼上圖片URL:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "此欄位為必填欄位", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "此欄位應為符合「http://www.example.com」格式的網址。", + "Common.Views.InsertTableDialog.textInvalidRowsCols": "您需要指定有效的列數和行數。", "Common.Views.InsertTableDialog.txtColumns": "欄數", - "Common.Views.InsertTableDialog.txtMaxText": "此段落的最大值為{0}。", - "Common.Views.InsertTableDialog.txtMinText": "此段落的最小值為{0}。", + "Common.Views.InsertTableDialog.txtMaxText": "該欄位的最大值為 {0}。", + "Common.Views.InsertTableDialog.txtMinText": "該欄位的最小值為 {0}。", "Common.Views.InsertTableDialog.txtRows": "列數", "Common.Views.InsertTableDialog.txtTitle": "表格大小", "Common.Views.InsertTableDialog.txtTitleSplit": "分割儲存格", "Common.Views.LanguageDialog.labelSelect": "選擇文件語言", "Common.Views.OpenDialog.closeButtonText": "關閉檔案", "Common.Views.OpenDialog.txtEncoding": "編碼", - "Common.Views.OpenDialog.txtIncorrectPwd": "密碼錯誤。", - "Common.Views.OpenDialog.txtOpenFile": "輸入檔案密碼", + "Common.Views.OpenDialog.txtIncorrectPwd": "密碼不正確。", + "Common.Views.OpenDialog.txtOpenFile": "請輸入用於開啟文件的密碼", "Common.Views.OpenDialog.txtPassword": "密碼", "Common.Views.OpenDialog.txtPreview": "預覽", - "Common.Views.OpenDialog.txtProtected": "輸入密碼並打開文件後,該文件的當前密碼將被重置。", + "Common.Views.OpenDialog.txtProtected": "當您輸入密碼並打開文件後,該文件的當前密碼將被重置。", "Common.Views.OpenDialog.txtTitle": "選擇%1個選項", "Common.Views.OpenDialog.txtTitleProtected": "受保護的檔案", - "Common.Views.PasswordDialog.txtDescription": "設置密碼以保護此文檔", + "Common.Views.PasswordDialog.txtDescription": "設定密碼以保護此文件。", "Common.Views.PasswordDialog.txtIncorrectPwd": "確認密碼不相同", "Common.Views.PasswordDialog.txtPassword": "密碼", "Common.Views.PasswordDialog.txtRepeat": "重複輸入密碼", "Common.Views.PasswordDialog.txtTitle": "設置密碼", - "Common.Views.PasswordDialog.txtWarning": "警告:如果失去密碼,將無法取回。請妥善保存。", + "Common.Views.PasswordDialog.txtWarning": "警告:如果您遺失或忘記密碼,將無法恢復。請將密碼保存在安全的地方。", "Common.Views.PluginDlg.textLoading": "載入中", "Common.Views.PluginPanel.textClosePanel": "關閉插件", "Common.Views.PluginPanel.textLoading": "載入中", @@ -579,7 +579,7 @@ "Common.Views.Plugins.textStart": "開始", "Common.Views.Plugins.textStop": "停止", "Common.Views.Plugins.tipMore": "更多", - "Common.Views.Protection.hintAddPwd": "用密碼加密", + "Common.Views.Protection.hintAddPwd": "使用密碼進行加密", "Common.Views.Protection.hintDelPwd": "刪除密碼", "Common.Views.Protection.hintPwd": "變更或刪除密碼", "Common.Views.Protection.hintSignature": "新增數位簽章或簽名欄", @@ -590,34 +590,34 @@ "Common.Views.Protection.txtInvisibleSignature": "新增數位簽章", "Common.Views.Protection.txtSignature": "簽名", "Common.Views.Protection.txtSignatureLine": "新增簽名欄", - "Common.Views.RecentFiles.txtOpenRecent": "打開最近", + "Common.Views.RecentFiles.txtOpenRecent": "最近打開的", "Common.Views.RenameDialog.textName": "檔案名稱", - "Common.Views.RenameDialog.txtInvalidName": "文件名不能包含以下任何字符:", - "Common.Views.ReviewChanges.hintNext": "到下一個變化", - "Common.Views.ReviewChanges.hintPrev": "到以前的變化", - "Common.Views.ReviewChanges.mniFromFile": "檔案裡的文件", - "Common.Views.ReviewChanges.mniFromStorage": "儲存槽裡的檔案", - "Common.Views.ReviewChanges.mniFromUrl": "來自URL裡文件", + "Common.Views.RenameDialog.txtInvalidName": "文件名稱不能包含以下任何字元:", + "Common.Views.ReviewChanges.hintNext": "到下一個變更處", + "Common.Views.ReviewChanges.hintPrev": "到前一個變更處", + "Common.Views.ReviewChanges.mniFromFile": "從檔案建立文件", + "Common.Views.ReviewChanges.mniFromStorage": "從儲存空間建立文件", + "Common.Views.ReviewChanges.mniFromUrl": "從 URL 建立文件", "Common.Views.ReviewChanges.mniSettings": "比較設定", "Common.Views.ReviewChanges.strFast": "快速", - "Common.Views.ReviewChanges.strFastDesc": "即時共同編輯。所有更改將自動保存。", + "Common.Views.ReviewChanges.strFastDesc": "即時共同編輯。所有更改都會自動儲存。", "Common.Views.ReviewChanges.strStrict": "嚴格", - "Common.Views.ReviewChanges.strStrictDesc": "使用“存檔”按鈕同步您和其他人所做的更改。", + "Common.Views.ReviewChanges.strStrictDesc": "使用「儲存」按鈕同步您和其他人所做的更改", "Common.Views.ReviewChanges.textEnable": "啟用", - "Common.Views.ReviewChanges.textWarnTrackChanges": "追蹤修訂將會幫有權限的帳戶開啟。下一次任何帳戶開啟文件時,追蹤修訂會保持開啟狀態。", - "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "幫所有使用者開啟追蹤修訂?", + "Common.Views.ReviewChanges.textWarnTrackChanges": "追蹤變更將開啟,所有擁有完全訪問權限的使用者都將被開啟。下一次有人打開文件時,追蹤變更功能將保持啟用。", + "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "為所有人啟用追蹤變更?", "Common.Views.ReviewChanges.tipAcceptCurrent": "同意當前更改", "Common.Views.ReviewChanges.tipCoAuthMode": "設定共同編輯模式", - "Common.Views.ReviewChanges.tipCombine": "將當前文件與另一個文件合併", + "Common.Views.ReviewChanges.tipCombine": "將當前文件與另一個文件結合", "Common.Views.ReviewChanges.tipCommentRem": "刪除註解", "Common.Views.ReviewChanges.tipCommentRemCurrent": "刪除當前註解", "Common.Views.ReviewChanges.tipCommentResolve": "標記註解為已解決", "Common.Views.ReviewChanges.tipCommentResolveCurrent": "將所有的註解標記為已解決", - "Common.Views.ReviewChanges.tipCompare": "比較當前文件和另一個文件", + "Common.Views.ReviewChanges.tipCompare": "將當前文件與另一個文件進行比較", "Common.Views.ReviewChanges.tipHistory": "顯示版本歷史", "Common.Views.ReviewChanges.tipRejectCurrent": "拒絕當前修訂", - "Common.Views.ReviewChanges.tipReview": "跟蹤修訂", - "Common.Views.ReviewChanges.tipReviewView": "選擇您要顯示更改的模式", + "Common.Views.ReviewChanges.tipReview": "追蹤變更", + "Common.Views.ReviewChanges.tipReviewView": "選擇要顯示變更的模式", "Common.Views.ReviewChanges.tipSetDocLang": "設定文件語言", "Common.Views.ReviewChanges.tipSetSpelling": "拼字檢查", "Common.Views.ReviewChanges.tipSharing": "管理文檔存取權限", @@ -628,120 +628,120 @@ "Common.Views.ReviewChanges.txtChat": "聊天", "Common.Views.ReviewChanges.txtClose": "關閉", "Common.Views.ReviewChanges.txtCoAuthMode": "共同編輯模式", - "Common.Views.ReviewChanges.txtCombine": "合併", + "Common.Views.ReviewChanges.txtCombine": "結合", "Common.Views.ReviewChanges.txtCommentRemAll": "刪除所有註解", "Common.Views.ReviewChanges.txtCommentRemCurrent": "刪除當前註解", "Common.Views.ReviewChanges.txtCommentRemMy": "刪除我的註解", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "刪除我當前的註解", - "Common.Views.ReviewChanges.txtCommentRemove": "移除", + "Common.Views.ReviewChanges.txtCommentRemove": "刪除", "Common.Views.ReviewChanges.txtCommentResolve": "解決", - "Common.Views.ReviewChanges.txtCommentResolveAll": "將所有註解標記為已解決", - "Common.Views.ReviewChanges.txtCommentResolveCurrent": "將註解標記為已解決", + "Common.Views.ReviewChanges.txtCommentResolveAll": "標記註解為已解決", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "將所有的註解標記為已解決", "Common.Views.ReviewChanges.txtCommentResolveMy": "將自己所有的註解標記為已解決", "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "將自己的註解標記為已解決", "Common.Views.ReviewChanges.txtCompare": "比較", "Common.Views.ReviewChanges.txtDocLang": "語言", - "Common.Views.ReviewChanges.txtEditing": "編輯中", + "Common.Views.ReviewChanges.txtEditing": "正在編輯", "Common.Views.ReviewChanges.txtFinal": "更改已全部接受 {0}", - "Common.Views.ReviewChanges.txtFinalCap": "最後", + "Common.Views.ReviewChanges.txtFinalCap": "最終的", "Common.Views.ReviewChanges.txtHistory": "版本歷史", "Common.Views.ReviewChanges.txtMarkup": "全部的更改{0}", - "Common.Views.ReviewChanges.txtMarkupCap": "標記與氣球", + "Common.Views.ReviewChanges.txtMarkupCap": "標記和註釋", "Common.Views.ReviewChanges.txtMarkupSimple": "所有變化{0}
無文字通知", - "Common.Views.ReviewChanges.txtMarkupSimpleCap": "只改標記的", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "僅標記", "Common.Views.ReviewChanges.txtNext": "下一個", - "Common.Views.ReviewChanges.txtOff": "給自己關閉", - "Common.Views.ReviewChanges.txtOffGlobal": "給自己跟所有使用者關閉", - "Common.Views.ReviewChanges.txtOn": "給自己開啟", - "Common.Views.ReviewChanges.txtOnGlobal": "給自己跟所有使用者開啟", + "Common.Views.ReviewChanges.txtOff": "我關閉了", + "Common.Views.ReviewChanges.txtOffGlobal": "我和所有人都關閉了", + "Common.Views.ReviewChanges.txtOn": "開啟我自己的", + "Common.Views.ReviewChanges.txtOnGlobal": "開啟我和所有人的", "Common.Views.ReviewChanges.txtOriginal": "全部更改被拒絕{0}", - "Common.Views.ReviewChanges.txtOriginalCap": "原始", + "Common.Views.ReviewChanges.txtOriginalCap": "原始的", "Common.Views.ReviewChanges.txtPrev": "前一個", "Common.Views.ReviewChanges.txtPreview": "預覽", "Common.Views.ReviewChanges.txtReject": "拒絕", - "Common.Views.ReviewChanges.txtRejectAll": "拒絕所有更改", - "Common.Views.ReviewChanges.txtRejectChanges": "拒絕更改", + "Common.Views.ReviewChanges.txtRejectAll": "拒絕所有變更", + "Common.Views.ReviewChanges.txtRejectChanges": "拒絕變更", "Common.Views.ReviewChanges.txtRejectCurrent": "拒絕當前變更", "Common.Views.ReviewChanges.txtSharing": "分享", "Common.Views.ReviewChanges.txtSpelling": "拼字檢查", - "Common.Views.ReviewChanges.txtTurnon": "追蹤修訂", + "Common.Views.ReviewChanges.txtTurnon": "追蹤變更", "Common.Views.ReviewChanges.txtView": "顯示模式", "Common.Views.ReviewChangesDialog.textTitle": "查看變更", "Common.Views.ReviewChangesDialog.txtAccept": "同意", "Common.Views.ReviewChangesDialog.txtAcceptAll": "接受所有變更", "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "接受目前的變更", - "Common.Views.ReviewChangesDialog.txtNext": "到下一個變化", - "Common.Views.ReviewChangesDialog.txtPrev": "到以前的變化", + "Common.Views.ReviewChangesDialog.txtNext": "到下一個變更處", + "Common.Views.ReviewChangesDialog.txtPrev": "到前一個變更處", "Common.Views.ReviewChangesDialog.txtReject": "拒絕", - "Common.Views.ReviewChangesDialog.txtRejectAll": "拒絕所有更改", - "Common.Views.ReviewChangesDialog.txtRejectCurrent": "拒絕當前變化", + "Common.Views.ReviewChangesDialog.txtRejectAll": "拒絕所有變更", + "Common.Views.ReviewChangesDialog.txtRejectCurrent": "拒絕當前變更", "Common.Views.ReviewPopover.textAdd": "新增", "Common.Views.ReviewPopover.textAddReply": "加入回應", "Common.Views.ReviewPopover.textCancel": "取消", "Common.Views.ReviewPopover.textClose": "關閉", "Common.Views.ReviewPopover.textEdit": "確定", - "Common.Views.ReviewPopover.textEnterComment": "在這裡輸入您的註解", + "Common.Views.ReviewPopover.textEnterComment": "在此輸入您的評論", "Common.Views.ReviewPopover.textFollowMove": "跟隨移動", "Common.Views.ReviewPopover.textMention": "+提及將提供對文檔的存取權限並發送電子郵件", "Common.Views.ReviewPopover.textMentionNotify": "+提及將通過電子郵件通知帳戶", - "Common.Views.ReviewPopover.textOpenAgain": "重新打開", + "Common.Views.ReviewPopover.textOpenAgain": "重新開啟", "Common.Views.ReviewPopover.textReply": "回覆", "Common.Views.ReviewPopover.textResolve": "解決", - "Common.Views.ReviewPopover.textViewResolved": "你沒有權限來重新開啟這個註解", + "Common.Views.ReviewPopover.textViewResolved": "您沒有重新開啟評論的權限", "Common.Views.ReviewPopover.txtAccept": "同意", "Common.Views.ReviewPopover.txtDeleteTip": "刪除", "Common.Views.ReviewPopover.txtEditTip": "編輯", "Common.Views.ReviewPopover.txtReject": "拒絕", "Common.Views.SaveAsDlg.textLoading": "載入中", - "Common.Views.SaveAsDlg.textTitle": "儲存文件夾", + "Common.Views.SaveAsDlg.textTitle": "儲存用的資料夾", "Common.Views.SearchPanel.textCaseSensitive": "區分大小寫", - "Common.Views.SearchPanel.textCloseSearch": "關閉搜索", - "Common.Views.SearchPanel.textContentChanged": "文件已變更", + "Common.Views.SearchPanel.textCloseSearch": "關閉搜尋", + "Common.Views.SearchPanel.textContentChanged": "文件已更改。", "Common.Views.SearchPanel.textFind": "尋找", - "Common.Views.SearchPanel.textFindAndReplace": "尋找和取代", + "Common.Views.SearchPanel.textFindAndReplace": "尋找並取代", "Common.Views.SearchPanel.textItemsSuccessfullyReplaced": "{0} 項成功取代。", - "Common.Views.SearchPanel.textMatchUsingRegExp": "用正規表達式進行匹配", - "Common.Views.SearchPanel.textNoMatches": "查無匹配", - "Common.Views.SearchPanel.textNoSearchResults": "查無搜索结果", + "Common.Views.SearchPanel.textMatchUsingRegExp": "使用正規表達式比對", + "Common.Views.SearchPanel.textNoMatches": "沒有符合的結果", + "Common.Views.SearchPanel.textNoSearchResults": "無搜索结果", "Common.Views.SearchPanel.textPartOfItemsNotReplaced": "{0}/{1} 項已取代。剩餘 {2} 項被其他使用者鎖定。", "Common.Views.SearchPanel.textReplace": "取代", - "Common.Views.SearchPanel.textReplaceAll": "取代全部", - "Common.Views.SearchPanel.textReplaceWith": "替換為", + "Common.Views.SearchPanel.textReplaceAll": "全部取代", + "Common.Views.SearchPanel.textReplaceWith": "取代為", "Common.Views.SearchPanel.textSearchAgain": "{0}進行新的搜尋{1}以獲得準確的結果。", - "Common.Views.SearchPanel.textSearchHasStopped": "搜索已停止", + "Common.Views.SearchPanel.textSearchHasStopped": "已停止搜尋", "Common.Views.SearchPanel.textSearchResults": "搜索结果:{0}/{1}", "Common.Views.SearchPanel.textTooManyResults": "因數量過多而無法顯示部分結果", - "Common.Views.SearchPanel.textWholeWords": "僅使用全字", + "Common.Views.SearchPanel.textWholeWords": "僅完整單詞", "Common.Views.SearchPanel.tipNextResult": "下一個結果", - "Common.Views.SearchPanel.tipPreviousResult": "上一個結果", + "Common.Views.SearchPanel.tipPreviousResult": "前一個結果", "Common.Views.SelectFileDlg.textLoading": "載入中", "Common.Views.SelectFileDlg.textTitle": "選擇資料來源", "Common.Views.SignDialog.textBold": "粗體", "Common.Views.SignDialog.textCertificate": "證書", "Common.Views.SignDialog.textChange": "變更", - "Common.Views.SignDialog.textInputName": "輸入簽名者名稱", + "Common.Views.SignDialog.textInputName": "輸入簽署者名稱", "Common.Views.SignDialog.textItalic": "斜體", - "Common.Views.SignDialog.textNameError": "簽名者姓名不能空白。", + "Common.Views.SignDialog.textNameError": "簽署者名稱不得為空白。", "Common.Views.SignDialog.textPurpose": "簽署本文件的目的", "Common.Views.SignDialog.textSelect": "選擇", "Common.Views.SignDialog.textSelectImage": "選擇圖片", - "Common.Views.SignDialog.textSignature": "簽名看起來像", + "Common.Views.SignDialog.textSignature": "簽名外觀如下", "Common.Views.SignDialog.textTitle": "簽署文件", - "Common.Views.SignDialog.textUseImage": "或單擊“選擇圖像”以使用圖片作為簽名", - "Common.Views.SignDialog.textValid": "從%1到%2有效", + "Common.Views.SignDialog.textUseImage": "或點選「選取圖片」以使用圖片作為簽名,橙色", + "Common.Views.SignDialog.textValid": "有效期從 %1 到 %2", "Common.Views.SignDialog.tipFontName": "字型名稱", "Common.Views.SignDialog.tipFontSize": "字型大小", "Common.Views.SignSettingsDialog.textAllowComment": "允許簽名者在簽名對話框中添加註釋", - "Common.Views.SignSettingsDialog.textDefInstruction": "在簽署此文件之前,請驗證您正在簽署的內容是否正確。", - "Common.Views.SignSettingsDialog.textInfoEmail": "電子郵件", - "Common.Views.SignSettingsDialog.textInfoName": "名稱", - "Common.Views.SignSettingsDialog.textInfoTitle": "簽名者名稱", - "Common.Views.SignSettingsDialog.textInstructions": "簽名者說明", - "Common.Views.SignSettingsDialog.textShowDate": "在簽名欄中顯示簽名日期", - "Common.Views.SignSettingsDialog.textTitle": "簽名設置", - "Common.Views.SignSettingsDialog.txtEmpty": "這是必填欄", - "Common.Views.SymbolTableDialog.textCharacter": "文字", - "Common.Views.SymbolTableDialog.textCode": "Unicode HEX 值", + "Common.Views.SignSettingsDialog.textDefInstruction": "在簽署此文件前,請確認您簽署的內容正確無誤。", + "Common.Views.SignSettingsDialog.textInfoEmail": "建議簽署人的電子郵件", + "Common.Views.SignSettingsDialog.textInfoName": "建議簽署人", + "Common.Views.SignSettingsDialog.textInfoTitle": "建議簽署人稱謂", + "Common.Views.SignSettingsDialog.textInstructions": "簽署者說明", + "Common.Views.SignSettingsDialog.textShowDate": "在簽名行中顯示簽署日期", + "Common.Views.SignSettingsDialog.textTitle": "簽名設定", + "Common.Views.SignSettingsDialog.txtEmpty": "此欄位為必填欄位", + "Common.Views.SymbolTableDialog.textCharacter": "字元", + "Common.Views.SymbolTableDialog.textCode": "Unicode十六進制值", "Common.Views.SymbolTableDialog.textCopyright": "版權符號", "Common.Views.SymbolTableDialog.textDCQuote": "結束的雙引號", "Common.Views.SymbolTableDialog.textDOQuote": "開頭雙引號", @@ -750,7 +750,7 @@ "Common.Views.SymbolTableDialog.textEmSpace": "字寬空白", "Common.Views.SymbolTableDialog.textEnDash": "短橫線", "Common.Views.SymbolTableDialog.textEnSpace": "字元寬空白", - "Common.Views.SymbolTableDialog.textFont": "字體", + "Common.Views.SymbolTableDialog.textFont": "字型", "Common.Views.SymbolTableDialog.textNBHyphen": "不間斷連字號", "Common.Views.SymbolTableDialog.textNBSpace": "不間斷空格", "Common.Views.SymbolTableDialog.textPilcrow": "段落符號", @@ -767,260 +767,260 @@ "Common.Views.SymbolTableDialog.textSymbols": "符號", "Common.Views.SymbolTableDialog.textTitle": "符號", "Common.Views.SymbolTableDialog.textTradeMark": "商標符號", - "Common.Views.UserNameDialog.textDontShow": "不要再顯示", + "Common.Views.UserNameDialog.textDontShow": "不要再次詢問我", "Common.Views.UserNameDialog.textLabel": "標籤:", "Common.Views.UserNameDialog.textLabelError": "標籤不能為空。", - "DE.Controllers.DocProtection.txtIsProtectedComment": "文件受到保護。您只能在此文件中插入註解。", - "DE.Controllers.DocProtection.txtIsProtectedForms": "文件受到保護。您只能在此文件中填寫表單。", - "DE.Controllers.DocProtection.txtIsProtectedTrack": "文件受到保護。您可以編輯此文件,但所有更改都將被追蹤。", - "DE.Controllers.DocProtection.txtIsProtectedView": "文件受到保護。您只能檢視此文件。", + "DE.Controllers.DocProtection.txtIsProtectedComment": "文件已受保護。您只能在此文件中插入註解。", + "DE.Controllers.DocProtection.txtIsProtectedForms": "文件已受保護。您只能填寫此文件中的表單。", + "DE.Controllers.DocProtection.txtIsProtectedTrack": "文件已受保護。您可以編輯此文件,但所有更改都將被追蹤。", + "DE.Controllers.DocProtection.txtIsProtectedView": "文件已受保護。您只能查看此文件。", "DE.Controllers.DocProtection.txtWasProtectedComment": "文件已由其他使用者保護。您只能在此文件中插入註解。", "DE.Controllers.DocProtection.txtWasProtectedForms": "文件已由其他使用者保護。您只能在此文件中填寫表單。", "DE.Controllers.DocProtection.txtWasProtectedTrack": "文件已由其他使用者保護。您可以編輯此文件,但所有更改都將被追蹤。", "DE.Controllers.DocProtection.txtWasProtectedView": "文件已由其他使用者保護。您只能檢視此文件。", - "DE.Controllers.DocProtection.txtWasUnprotected": "文件已取消保護。", + "DE.Controllers.DocProtection.txtWasUnprotected": "文件已解除保護。", "DE.Controllers.LeftMenu.leavePageText": "該文檔中所有未儲存的更改都將丟失。
單擊“取消”,然後單擊“存檔”以保存它們。單擊“確定”,放棄所有未儲存的更改。", "DE.Controllers.LeftMenu.newDocumentTitle": "未命名文件", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "警告", "DE.Controllers.LeftMenu.requestEditRightsText": "正在請求編輯權限...", - "DE.Controllers.LeftMenu.textLoadHistory": "正在載入版本歷史記錄...", - "DE.Controllers.LeftMenu.textNoTextFound": "找不到您一直在搜索的數據。請調整您的搜索選項。", - "DE.Controllers.LeftMenu.textReplaceSkipped": "替換已完成。 {0}個事件被跳過。", - "DE.Controllers.LeftMenu.textReplaceSuccess": "搜索已完成。發生的事件已替換:{0}", - "DE.Controllers.LeftMenu.txtCompatible": "該文檔將儲存為新格式。它將允許使用所有編輯器功能,但可能會影響文檔佈局。
如果要使文件與舊版MS Word兼容,請使用高級設置的“兼容性”選項。", - "DE.Controllers.LeftMenu.txtUntitled": "無標題", - "DE.Controllers.LeftMenu.warnDownloadAs": "如果繼續以這種格式保存,則除文本外的所有功能都將丟失。
確定要繼續嗎?", - "DE.Controllers.LeftMenu.warnDownloadAsPdf": "您的 {0} 將轉換成一份可修改的文件。系統需要處理一段時間。轉換後的文件即可隨之修改,但可能不完全跟您的原 {0} 相同,特別是如果原文件有過多的圖像將會更有差異。", - "DE.Controllers.LeftMenu.warnDownloadAsRTF": "如果繼續以這種格式保存,則某些格式可能會丟失。
確定要繼續嗎?", + "DE.Controllers.LeftMenu.textLoadHistory": "載入版本記錄中...", + "DE.Controllers.LeftMenu.textNoTextFound": "找不到您正在搜尋的資料。請調整您的搜尋選項。", + "DE.Controllers.LeftMenu.textReplaceSkipped": "替換已完成。有 {0} 個項目被跳過。", + "DE.Controllers.LeftMenu.textReplaceSuccess": "已完成搜尋。已替換的次數:{0}。", + "DE.Controllers.LeftMenu.txtCompatible": "文件將儲存為新格式。這將允許使用所有編輯器功能,但可能會影響文件的版面配置。
如果您想使文件與較舊的 MS Word 版本兼容,請使用進階設定的相容性選項。", + "DE.Controllers.LeftMenu.txtUntitled": "未命名", + "DE.Controllers.LeftMenu.warnDownloadAs": "如果您繼續以此格式儲存,除了文字外的所有功能都將遺失。您確定要繼續嗎?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "您的{0}將被轉換為可編輯的格式。這可能需要一段時間。生成的文件將被優化,以便您可以編輯文字,因此它可能不會完全與原始的{0}相同,特別是如果原始文件包含大量圖形。", + "DE.Controllers.LeftMenu.warnDownloadAsRTF": "如果您繼續以此格式儲存,部分格式可能會遺失。您確定要繼續嗎?", "DE.Controllers.LeftMenu.warnReplaceString": "{0}不可用於替換段文字落的有效特殊符號。", - "DE.Controllers.Main.applyChangesTextText": "加載更改...", - "DE.Controllers.Main.applyChangesTitleText": "加載更改", - "DE.Controllers.Main.confirmMaxChangesSize": "您執行的動作超出伺服器設定的大小限制。
點選\"復原\"以取消動作,或點選\"繼續\"保留該動作(您需要下載檔案或複製其內容以確保沒有資料遺失)。", - "DE.Controllers.Main.convertationTimeoutText": "轉換逾時。", - "DE.Controllers.Main.criticalErrorExtText": "按\"確定\"返回文檔列表。", + "DE.Controllers.Main.applyChangesTextText": "載入變更中...", + "DE.Controllers.Main.applyChangesTitleText": "載入變更中", + "DE.Controllers.Main.confirmMaxChangesSize": "操作的大小超出了您的伺服器設定的限制。
按一下「復原」來取消上一個動作,或按一下「繼續」在本地保留動作(您需要下載該文件或複製其內容,以確保不會丟失任何內容)。", + "DE.Controllers.Main.convertationTimeoutText": "轉換逾時", + "DE.Controllers.Main.criticalErrorExtText": "按下「確定」返回文件清單。", "DE.Controllers.Main.criticalErrorTitle": "錯誤", "DE.Controllers.Main.downloadErrorText": "下載失敗", - "DE.Controllers.Main.downloadMergeText": "下載中...", - "DE.Controllers.Main.downloadMergeTitle": "下載中", - "DE.Controllers.Main.downloadTextText": "文件下載中...", - "DE.Controllers.Main.downloadTitleText": "文件下載中", - "DE.Controllers.Main.errorAccessDeny": "您嘗試進行未被授權的動作。
請聯繫您的文件伺服器主機的管理者。", - "DE.Controllers.Main.errorBadImageUrl": "不正確的圖像 URL", + "DE.Controllers.Main.downloadMergeText": "正在下載中...", + "DE.Controllers.Main.downloadMergeTitle": "載入中", + "DE.Controllers.Main.downloadTextText": "正在下載文件...", + "DE.Controllers.Main.downloadTitleText": "正在下載文件", + "DE.Controllers.Main.errorAccessDeny": "您正在嘗試執行一個您無權限進行的操作。
請聯絡您的文件伺服器管理員。", + "DE.Controllers.Main.errorBadImageUrl": "圖片網址不正確", "DE.Controllers.Main.errorCannotPasteImg": "我們無法從剪貼簿貼上此圖片,但您可以將其儲存到您的裝置,然後再從那裡插入;或者您可以複製不帶文字的圖片並將其貼入文件中。", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "服務器連接丟失。該文檔目前無法編輯。", - "DE.Controllers.Main.errorComboSeries": "如要新增組合圖表,選擇兩個以上的數列資料。", - "DE.Controllers.Main.errorCompare": "共同編輯時,“比較文檔”功能不可用。", - "DE.Controllers.Main.errorConnectToServer": "無法儲存該文檔。請檢查連接設置或與管理員聯繫。
單擊\"確定\"按鈕時,系統將提示您下載文檔。", - "DE.Controllers.Main.errorDatabaseConnection": "外部錯誤。
數據庫連接錯誤。如果錯誤仍然存在,請聯繫支持。", - "DE.Controllers.Main.errorDataEncrypted": "已收到加密的更改,無法解密。", - "DE.Controllers.Main.errorDataRange": "不正確的資料範圍", + "DE.Controllers.Main.errorCoAuthoringDisconnect": "伺服器連線中斷,目前無法編輯文件。", + "DE.Controllers.Main.errorComboSeries": "要建立組合圖表,請選擇至少兩個資料系列。", + "DE.Controllers.Main.errorCompare": "在共同編輯時,無法使用比較文件功能。", + "DE.Controllers.Main.errorConnectToServer": "文件無法儲存。請檢查連線設定或聯繫您的管理員。
按下「確定」按鈕後,您將被提示下載文件。", + "DE.Controllers.Main.errorDatabaseConnection": "外部錯誤。
資料庫連線錯誤。如錯誤持續發生,請聯繫支援人員。", + "DE.Controllers.Main.errorDataEncrypted": "已接收到加密的更改,無法解密。", + "DE.Controllers.Main.errorDataRange": "資料範圍不正確。", "DE.Controllers.Main.errorDefaultMessage": "錯誤編號:%1", - "DE.Controllers.Main.errorDirectUrl": "請確認文件的連結。
該連結必須可直接下載檔案。", + "DE.Controllers.Main.errorDirectUrl": "請驗證文件的連結。該連結必須是直接連結到可下載的文件。", "DE.Controllers.Main.errorEditingDownloadas": "在處理文檔期間發生錯誤。
使用“下載為”選項將文件備份副本保存到計算機硬碟驅動器中。", "DE.Controllers.Main.errorEditingSaveas": "使用文檔期間發生錯誤。
使用“另存為...”選項將文件備份副本保存到硬碟中。", "DE.Controllers.Main.errorEmailClient": "找不到電子郵件客戶端。", - "DE.Controllers.Main.errorEmptyTOC": "選取文字,透過樣式庫中的標題風格來建立目錄", - "DE.Controllers.Main.errorFilePassProtect": "該文件受密碼保護,無法打開。", - "DE.Controllers.Main.errorFileSizeExceed": "此檔案超過這一主機限制的大小
進一步資訊,請聯絡您的文件服務主機的管理者。", + "DE.Controllers.Main.errorEmptyTOC": "將樣式庫中的標題樣式應用到所選文件上", + "DE.Controllers.Main.errorFilePassProtect": "該文件已被密碼保護,無法打開。", + "DE.Controllers.Main.errorFileSizeExceed": "該文件大小超出您伺服器設定的限制。
請聯繫您的文件伺服器管理員以瞭解詳情。", "DE.Controllers.Main.errorForceSave": "保存文件時發生錯誤。請使用“下載為”選項將文件保存到電腦硬碟中,或稍後再試。", "DE.Controllers.Main.errorInconsistentExt": "開啟檔案時發生錯誤。
檔案內容與副檔名不一致。", "DE.Controllers.Main.errorInconsistentExtDocx": "開啟檔案時發生錯誤。
檔案內容對應到文字檔(例如 docx),但檔案副檔名不一致:%1。", "DE.Controllers.Main.errorInconsistentExtPdf": "開啟檔案時發生錯誤。
檔案內容對應到下列格式之一:pdf/djvu/xps/oxps,但檔案副檔名不一致:%1。", "DE.Controllers.Main.errorInconsistentExtPptx": "開啟檔案時發生錯誤。
檔案內容對應到簡報檔(例如 pptx),但檔案副檔名不一致:%1。", "DE.Controllers.Main.errorInconsistentExtXlsx": "開啟檔案時發生錯誤。
檔案內容對應到試算表檔案(例如 xlsx),但檔案副檔名不一致:%1。", - "DE.Controllers.Main.errorKeyEncrypt": "未知金鑰描述符", - "DE.Controllers.Main.errorKeyExpire": "金鑰描述符已過期", - "DE.Controllers.Main.errorLoadingFont": "字體未載入。
請聯絡檔案伺服器管理員。", - "DE.Controllers.Main.errorMailMergeLoadFile": "文件載入中", + "DE.Controllers.Main.errorKeyEncrypt": "未知的按鍵快捷功能", + "DE.Controllers.Main.errorKeyExpire": "密鑰描述符已過期", + "DE.Controllers.Main.errorLoadingFont": "字型未載入。
請聯繫您的文件伺服器管理員。", + "DE.Controllers.Main.errorMailMergeLoadFile": "載入文件失敗。請選擇其他檔案。", "DE.Controllers.Main.errorMailMergeSaveFile": "合併失敗.", - "DE.Controllers.Main.errorNoTOC": "沒有目錄需要更新。你可以從引用頁來插入。", - "DE.Controllers.Main.errorPasswordIsNotCorrect": "密碼錯誤。
核實蓋帽封鎖鍵關閉並且是肯定使用正確資本化。", + "DE.Controllers.Main.errorNoTOC": "沒有目錄可更新。您可以從「參考」標籤中插入一個。", + "DE.Controllers.Main.errorPasswordIsNotCorrect": "您提供的密碼不正確。
請確保大寫鎖定鍵已關閉,並確保使用正確的大小寫。", "DE.Controllers.Main.errorProcessSaveResult": "儲存失敗", - "DE.Controllers.Main.errorServerVersion": "編輯器版本已更新。該頁面將被重新加載以應用更改。", - "DE.Controllers.Main.errorSessionAbsolute": "該檔案編輯時效已逾期。請重新載入此頁面。", - "DE.Controllers.Main.errorSessionIdle": "此文件已經在編輯狀態有很長時間, 請重新載入此頁面。", + "DE.Controllers.Main.errorServerVersion": "編輯器版本已更新。將重新載入頁面以更新改動。", + "DE.Controllers.Main.errorSessionAbsolute": "文件編輯會話已過期。請重新載入頁面。", + "DE.Controllers.Main.errorSessionIdle": "該文件已經有一段時間未編輯。請重新載入頁面。", "DE.Controllers.Main.errorSessionToken": "與服務器的連接已中斷。請重新加載頁面。", - "DE.Controllers.Main.errorSetPassword": "無法重設密碼。", - "DE.Controllers.Main.errorStockChart": "不正確的列次序。要建立一推疊圖表, 需要將此表的資料放置為以下的次序
出價, 最高價, 最低價, 結標價。", - "DE.Controllers.Main.errorSubmit": "傳送失敗", - "DE.Controllers.Main.errorTextFormWrongFormat": "輸入的值與欄位格式不符。", - "DE.Controllers.Main.errorToken": "檔案安全憑證格式不正確。
請聯絡您的檔案伺服器管理員。", - "DE.Controllers.Main.errorTokenExpire": "檔案安全憑證已過期。
請聯絡您的檔案伺服器管理員。", - "DE.Controllers.Main.errorUpdateVersion": "文件版本已更改。該頁面將重新加載。", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "網路連接已恢復,文件版本已更改。
在繼續工作之前,您需要下載文件或複制其內容以確保沒有丟失,然後重新加載此頁面。", - "DE.Controllers.Main.errorUserDrop": "目前無法存取該文件。", - "DE.Controllers.Main.errorUsersExceed": "超出了定價計劃所允許的帳戶數量", - "DE.Controllers.Main.errorViewerDisconnect": "連線失敗。您仍然可以查看該檔案,
但在恢復連接並重新加載頁面之前將無法下載或列印該檔案。", - "DE.Controllers.Main.leavePageText": "您在此文檔中尚未儲存更改。單擊\"保留在此頁面上\",然後單擊\"存檔\"以儲存更改。單擊\"離開此頁面\"以放棄所有未儲存的更改。", + "DE.Controllers.Main.errorSetPassword": "無法設定密碼。", + "DE.Controllers.Main.errorStockChart": "資料行順序不正確。要建立股票圖表,請將數據按以下順序放置在工作表中:開盤價、最高價、最低價、收盤價。", + "DE.Controllers.Main.errorSubmit": "提交失敗", + "DE.Controllers.Main.errorTextFormWrongFormat": "輸入的值與欄位的格式不符合。", + "DE.Controllers.Main.errorToken": "文件安全權杖格式不正確。
請聯繫您的文件伺服器管理員。", + "DE.Controllers.Main.errorTokenExpire": "文件安全權杖已過期。
請聯繫您的文件伺服器管理員。", + "DE.Controllers.Main.errorUpdateVersion": "文件版本已更改。將重新載入頁面。", + "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "連線已恢復,並且文件版本已更改。
在繼續工作之前,您需要下載文件或複製其內容,以確保不會丟失任何內容,然後重新加載此頁面。", + "DE.Controllers.Main.errorUserDrop": "目前無法存取該檔案。", + "DE.Controllers.Main.errorUsersExceed": "已超出價格方案允許的使用者數量。", + "DE.Controllers.Main.errorViewerDisconnect": "連線已中斷。您仍然可以查看文件,
但在連線恢復並重新載入頁面之前,無法下載或列印文件。", + "DE.Controllers.Main.leavePageText": "您在此文件中有未儲存的變更。按一下「留在此頁面」,然後按「儲存」以儲存這些變更。按一下「離開此頁面」以放棄所有未儲存的變更。", "DE.Controllers.Main.leavePageTextOnClose": "該文檔中所有未儲存的更改都將遺失。
單擊\"取消\",然後單擊\"存檔\"以保存它們。單擊\"確定\",放棄所有未儲存的更改。", - "DE.Controllers.Main.loadFontsTextText": "加載數據中...", - "DE.Controllers.Main.loadFontsTitleText": "加載數據中", - "DE.Controllers.Main.loadFontTextText": "加載數據中...", - "DE.Controllers.Main.loadFontTitleText": "加載數據中", - "DE.Controllers.Main.loadImagesTextText": "正在載入圖片...", - "DE.Controllers.Main.loadImagesTitleText": "正在載入圖片", - "DE.Controllers.Main.loadImageTextText": "正在載入圖片...", - "DE.Controllers.Main.loadImageTitleText": "正在載入圖片", - "DE.Controllers.Main.loadingDocumentTextText": "正在載入文件...", - "DE.Controllers.Main.loadingDocumentTitleText": "載入文件", - "DE.Controllers.Main.mailMergeLoadFileText": "加載數據源...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "加載數據源", + "DE.Controllers.Main.loadFontsTextText": "載入資料中...", + "DE.Controllers.Main.loadFontsTitleText": "載入資料", + "DE.Controllers.Main.loadFontTextText": "載入資料中...", + "DE.Controllers.Main.loadFontTitleText": "載入資料", + "DE.Controllers.Main.loadImagesTextText": "載入圖片中...", + "DE.Controllers.Main.loadImagesTitleText": "載入圖片中", + "DE.Controllers.Main.loadImageTextText": "載入圖片中...", + "DE.Controllers.Main.loadImageTitleText": "載入圖片中", + "DE.Controllers.Main.loadingDocumentTextText": "載入文件中...", + "DE.Controllers.Main.loadingDocumentTitleText": "載入文件中", + "DE.Controllers.Main.mailMergeLoadFileText": "載入資料來源...", + "DE.Controllers.Main.mailMergeLoadFileTitle": "載入資料來源", "DE.Controllers.Main.notcriticalErrorTitle": "警告", "DE.Controllers.Main.openErrorText": "開啟檔案時發生錯誤。", - "DE.Controllers.Main.openTextText": "開啟文件中...", - "DE.Controllers.Main.openTitleText": "開啟文件中", - "DE.Controllers.Main.printTextText": "列印文件中...", - "DE.Controllers.Main.printTitleText": "列印文件", + "DE.Controllers.Main.openTextText": "正在打開文件", + "DE.Controllers.Main.openTitleText": "正在打開文件", + "DE.Controllers.Main.printTextText": "正在列印文件...", + "DE.Controllers.Main.printTitleText": "正在列印文件", "DE.Controllers.Main.reloadButtonText": "重新載入頁面", - "DE.Controllers.Main.requestEditFailedMessageText": "有人正在編輯此文檔。請稍後再試。", + "DE.Controllers.Main.requestEditFailedMessageText": "有人正在編輯此文件。請稍後再試。", "DE.Controllers.Main.requestEditFailedTitleText": "拒絕存取", "DE.Controllers.Main.saveErrorText": "儲存檔案時發生錯誤", - "DE.Controllers.Main.saveErrorTextDesktop": "無法存檔或新增此文件。
可能的原因是:
1。該文件是唯獨模式的。
2。該文件正在由其他帳戶編輯。
3。磁碟已滿或損壞。", - "DE.Controllers.Main.saveTextText": "儲存文件中...", - "DE.Controllers.Main.saveTitleText": "儲存文件", - "DE.Controllers.Main.scriptLoadError": "連接速度太慢,某些組件無法加載。請重新加載頁面。", + "DE.Controllers.Main.saveErrorTextDesktop": "無法保存或建立此文件。可能的原因包括:
1. 文件是唯讀的。
2. 文件正在被其他使用者編輯。
3. 磁碟已滿或損壞。", + "DE.Controllers.Main.saveTextText": "正在儲存文件...", + "DE.Controllers.Main.saveTitleText": "正在儲存文件", + "DE.Controllers.Main.scriptLoadError": "連線速度太慢,無法載入某些元件。請重新載入頁面。", "DE.Controllers.Main.sendMergeText": "發送合併中...", - "DE.Controllers.Main.sendMergeTitle": "發送合併", - "DE.Controllers.Main.splitDividerErrorText": "行數必須是%1的除數。", - "DE.Controllers.Main.splitMaxColsErrorText": "欄數必須少於%1。", - "DE.Controllers.Main.splitMaxRowsErrorText": "列數必須少於%1。", + "DE.Controllers.Main.sendMergeTitle": "正在發送合併", + "DE.Controllers.Main.splitDividerErrorText": "列數必須是 %1 的除數。", + "DE.Controllers.Main.splitMaxColsErrorText": "欄位數必須少於 %1。", + "DE.Controllers.Main.splitMaxRowsErrorText": "列數必須少於 %1。", "DE.Controllers.Main.textAnonymous": "匿名", "DE.Controllers.Main.textAnyone": "任何人", - "DE.Controllers.Main.textApplyAll": "適用於所有方程式", - "DE.Controllers.Main.textBuyNow": "訪問網站", + "DE.Controllers.Main.textApplyAll": "套用於所有方程式", + "DE.Controllers.Main.textBuyNow": "瀏覽網站", "DE.Controllers.Main.textChangesSaved": "所有更改已儲存", "DE.Controllers.Main.textClose": "關閉", - "DE.Controllers.Main.textCloseTip": "點擊關閉提示", - "DE.Controllers.Main.textContactUs": "聯絡業務人員", + "DE.Controllers.Main.textCloseTip": "點擊以關閉提示", + "DE.Controllers.Main.textContactUs": "聯繫銷售部門", "DE.Controllers.Main.textContinue": "繼續", - "DE.Controllers.Main.textConvertEquation": "該方程式是使用不再受支持的方程式編輯器的舊版本創建的。要對其進行編輯,請將等式轉換為Office Math ML格式。
立即轉換?", - "DE.Controllers.Main.textCustomLoader": "請注意,根據許可條款,您無權更換裝載機。
請聯繫我們的銷售部門以獲取報價。", - "DE.Controllers.Main.textDisconnect": "失去網路連線", + "DE.Controllers.Main.textConvertEquation": "此方程式是使用不再支援的舊版方程式編輯器創建的。要編輯它,請將方程式轉換為 Office Math ML 格式。
立即轉換嗎?", + "DE.Controllers.Main.textCustomLoader": "請注意,根據授權證書的權限,您沒有權限更改載入程式。請聯繫我們的銷售部門以獲取報價。", + "DE.Controllers.Main.textDisconnect": "連線已中斷", "DE.Controllers.Main.textGuest": "訪客", - "DE.Controllers.Main.textHasMacros": "此檔案包含自動的", + "DE.Controllers.Main.textHasMacros": "該檔案包含自動巨集。
您是否要執行巨集?", "DE.Controllers.Main.textLearnMore": "了解更多", - "DE.Controllers.Main.textLoadingDocument": "載入文件", - "DE.Controllers.Main.textLongName": "輸入少於128個字符的名稱。", - "DE.Controllers.Main.textNoLicenseTitle": "已達授權限制", + "DE.Controllers.Main.textLoadingDocument": "載入文件中", + "DE.Controllers.Main.textLongName": "請輸入少於128個字元的名稱。", + "DE.Controllers.Main.textNoLicenseTitle": "已達到授權人數限制", "DE.Controllers.Main.textPaidFeature": "付費功能", - "DE.Controllers.Main.textReconnect": "連線恢復", - "DE.Controllers.Main.textRemember": "記住我的選擇", - "DE.Controllers.Main.textRememberMacros": "記住我所有巨集的選擇", - "DE.Controllers.Main.textRenameError": "使用者名稱無法是空白。", - "DE.Controllers.Main.textRenameLabel": "輸入合作名稱", + "DE.Controllers.Main.textReconnect": "連線已恢復", + "DE.Controllers.Main.textRemember": "記住我對所有檔案的選擇", + "DE.Controllers.Main.textRememberMacros": "記住我對所有巨集的選擇", + "DE.Controllers.Main.textRenameError": "使用者名稱不能為空", + "DE.Controllers.Main.textRenameLabel": "請輸入用於協作的名稱", "DE.Controllers.Main.textRequestMacros": "有一個巨集指令要求連結至URL。是否允許該要求至%1?", "DE.Controllers.Main.textShape": "形狀", "DE.Controllers.Main.textStrict": "嚴格模式", "DE.Controllers.Main.textText": "文字", - "DE.Controllers.Main.textTryQuickPrint": "您已選擇快速列印:整個文件將由上次選定或預設的印表機列印。
是否要繼續?", - "DE.Controllers.Main.textTryUndoRedo": "快速共同編輯模式禁用了\"復原/重複\"功能。
點擊\"嚴格模式\"按鈕切換到\"嚴格共同編輯\"模式以編輯文件而不會受到其他帳戶的干擾,並且僅在保存後發送更改他們。您可以使用編輯器的\"進階\"設置在共同編輯模式之間切換。", - "DE.Controllers.Main.textTryUndoRedoWarn": "在快速共同編輯模式下,復原/重複功能被禁用。", + "DE.Controllers.Main.textTryQuickPrint": "您選擇了快速列印:整個文件將會列印到最後一次選擇的或預設的印表機。
您要繼續嗎?", + "DE.Controllers.Main.textTryUndoRedo": "快速共同編輯模式下無法使用復原/重做功能。
按一下「嚴格模式」按鈕切換到嚴格共同編輯模式,在不受其他使用者干擾的情況下編輯文件,並在保存更改後才發送。您可以使用編輯器的進階設定切換共同編輯模式。", + "DE.Controllers.Main.textTryUndoRedoWarn": "在快速共同編輯模式下,復原/重做功能被禁用。", "DE.Controllers.Main.textUndo": "復原", - "DE.Controllers.Main.titleLicenseExp": "授權過期", - "DE.Controllers.Main.titleLicenseNotActive": "授權未啟用", + "DE.Controllers.Main.titleLicenseExp": "授權證書已過期", + "DE.Controllers.Main.titleLicenseNotActive": "授權證書未啟用", "DE.Controllers.Main.titleServerVersion": "編輯器已更新", "DE.Controllers.Main.titleUpdateVersion": "版本已更改", "DE.Controllers.Main.txtAbove": "以上", "DE.Controllers.Main.txtArt": "在此輸入文字", "DE.Controllers.Main.txtBasicShapes": "基本圖案", - "DE.Controllers.Main.txtBelow": "以下", - "DE.Controllers.Main.txtBookmarkError": "錯誤!書籤未定義。", + "DE.Controllers.Main.txtBelow": "下方", + "DE.Controllers.Main.txtBookmarkError": "錯誤!未定義的書籤。", "DE.Controllers.Main.txtButtons": "按鈕", - "DE.Controllers.Main.txtCallouts": "標註", - "DE.Controllers.Main.txtCharts": "圖表", - "DE.Controllers.Main.txtChoose": "選擇一個項目", - "DE.Controllers.Main.txtClickToLoad": "點此讀取圖片", - "DE.Controllers.Main.txtCurrentDocument": "當前文件", + "DE.Controllers.Main.txtCallouts": "圖說文字", + "DE.Controllers.Main.txtCharts": "流程圖", + "DE.Controllers.Main.txtChoose": "選擇項目", + "DE.Controllers.Main.txtClickToLoad": "點擊以載入圖像", + "DE.Controllers.Main.txtCurrentDocument": "目前文件", "DE.Controllers.Main.txtDiagramTitle": "圖表標題", "DE.Controllers.Main.txtEditingMode": "設定編輯模式...", - "DE.Controllers.Main.txtEndOfFormula": "函數意外結束", - "DE.Controllers.Main.txtEnterDate": "輸入日期", - "DE.Controllers.Main.txtErrorLoadHistory": "歷史記錄加載失敗", + "DE.Controllers.Main.txtEndOfFormula": "公式意外結束", + "DE.Controllers.Main.txtEnterDate": "請輸入日期", + "DE.Controllers.Main.txtErrorLoadHistory": "歷史載入失敗", "DE.Controllers.Main.txtEvenPage": "偶數頁", "DE.Controllers.Main.txtFiguredArrows": "箭號圖案", - "DE.Controllers.Main.txtFirstPage": "第一頁", + "DE.Controllers.Main.txtFirstPage": "首頁", "DE.Controllers.Main.txtFooter": "頁尾", - "DE.Controllers.Main.txtFormulaNotInTable": "函數不在表格中", + "DE.Controllers.Main.txtFormulaNotInTable": "公式不在表格中", "DE.Controllers.Main.txtHeader": "頁首", "DE.Controllers.Main.txtHyperlink": "超連結", "DE.Controllers.Main.txtIndTooLarge": "索引太大", "DE.Controllers.Main.txtLines": "線數", - "DE.Controllers.Main.txtMainDocOnly": "錯誤!僅主文檔。", - "DE.Controllers.Main.txtMath": "數學", - "DE.Controllers.Main.txtMissArg": "遺失論點", - "DE.Controllers.Main.txtMissOperator": "缺少運算符", + "DE.Controllers.Main.txtMainDocOnly": "錯誤!僅限主文件。", + "DE.Controllers.Main.txtMath": "方程式圖案", + "DE.Controllers.Main.txtMissArg": "缺少參數", + "DE.Controllers.Main.txtMissOperator": "缺少運算子", "DE.Controllers.Main.txtNeedSynchronize": "您有更新", "DE.Controllers.Main.txtNone": "無", - "DE.Controllers.Main.txtNoTableOfContents": "該文件中沒有標題。將標題風格應用於內文,以便出現在目錄中。", - "DE.Controllers.Main.txtNoTableOfFigures": "沒有圖表目錄項目可用。", - "DE.Controllers.Main.txtNoText": "錯誤!指定的風格文件中沒有文字。", - "DE.Controllers.Main.txtNotInTable": "不在表中", - "DE.Controllers.Main.txtNotValidBookmark": "錯誤!不是有效的書籤自參考。", + "DE.Controllers.Main.txtNoTableOfContents": "文件中沒有任何標題。請對文字應用標題樣式,以便在目錄中顯示。", + "DE.Controllers.Main.txtNoTableOfFigures": "找不到圖表目錄項目。", + "DE.Controllers.Main.txtNoText": "錯誤!文件中沒有指定樣式的文字。", + "DE.Controllers.Main.txtNotInTable": "不在表格中", + "DE.Controllers.Main.txtNotValidBookmark": "錯誤!不是有效的書籤自我參照。", "DE.Controllers.Main.txtOddPage": "奇數頁", "DE.Controllers.Main.txtOnPage": "在頁面上", "DE.Controllers.Main.txtRectangles": "長方形", - "DE.Controllers.Main.txtSameAsPrev": "與上一個相同", - "DE.Controllers.Main.txtSection": "-部分", + "DE.Controllers.Main.txtSameAsPrev": "與前一個相同", + "DE.Controllers.Main.txtSection": "-段落", "DE.Controllers.Main.txtSeries": "系列", - "DE.Controllers.Main.txtShape_accentBorderCallout1": "線路標註1(邊框和強調欄)", - "DE.Controllers.Main.txtShape_accentBorderCallout2": "線路標註2(邊框和強調欄)", - "DE.Controllers.Main.txtShape_accentBorderCallout3": "線路標註3(邊框和強調欄)", - "DE.Controllers.Main.txtShape_accentCallout1": "線路標註1(強調欄)", - "DE.Controllers.Main.txtShape_accentCallout2": "線路標註2(強調欄)", - "DE.Controllers.Main.txtShape_accentCallout3": "線路標註3(強調欄)", - "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "後退或上一步按鈕", + "DE.Controllers.Main.txtShape_accentBorderCallout1": "線條標注 1(有邊框和重音線)", + "DE.Controllers.Main.txtShape_accentBorderCallout2": "線條標注 2(有邊框和重音線)", + "DE.Controllers.Main.txtShape_accentBorderCallout3": "線條標注 3(有邊框和重音線)", + "DE.Controllers.Main.txtShape_accentCallout1": "線條標注 1(帶重音線)", + "DE.Controllers.Main.txtShape_accentCallout2": "線條標注 2(帶重音線)", + "DE.Controllers.Main.txtShape_accentCallout3": "線條標注 3(帶重音線)", + "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "返回或上一步按鈕", "DE.Controllers.Main.txtShape_actionButtonBeginning": "開始按鈕", "DE.Controllers.Main.txtShape_actionButtonBlank": "空白按鈕", "DE.Controllers.Main.txtShape_actionButtonDocument": "文件按鈕", "DE.Controllers.Main.txtShape_actionButtonEnd": "結束按鈕", - "DE.Controllers.Main.txtShape_actionButtonForwardNext": "前進或後退按鈕", - "DE.Controllers.Main.txtShape_actionButtonHelp": "幫助按鈕", + "DE.Controllers.Main.txtShape_actionButtonForwardNext": "前往下一步按鈕", + "DE.Controllers.Main.txtShape_actionButtonHelp": "說明按鈕", "DE.Controllers.Main.txtShape_actionButtonHome": "首頁按鈕", - "DE.Controllers.Main.txtShape_actionButtonInformation": "信息按鈕", - "DE.Controllers.Main.txtShape_actionButtonMovie": "影片按鈕", + "DE.Controllers.Main.txtShape_actionButtonInformation": "資訊按鈕", + "DE.Controllers.Main.txtShape_actionButtonMovie": "電影按鈕", "DE.Controllers.Main.txtShape_actionButtonReturn": "返回按鈕", - "DE.Controllers.Main.txtShape_actionButtonSound": "聲音按鈕", + "DE.Controllers.Main.txtShape_actionButtonSound": "音效按鈕", "DE.Controllers.Main.txtShape_arc": "弧", "DE.Controllers.Main.txtShape_bentArrow": "彎曲箭頭", - "DE.Controllers.Main.txtShape_bentConnector5": "彎頭接頭", - "DE.Controllers.Main.txtShape_bentConnector5WithArrow": "彎頭箭頭連接器", - "DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "彎頭雙箭頭連接器", + "DE.Controllers.Main.txtShape_bentConnector5": "彎曲連接器", + "DE.Controllers.Main.txtShape_bentConnector5WithArrow": "彎曲箭頭連接器", + "DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "彎曲雙箭頭連接器", "DE.Controllers.Main.txtShape_bentUpArrow": "向上彎曲箭頭", - "DE.Controllers.Main.txtShape_bevel": "斜角", - "DE.Controllers.Main.txtShape_blockArc": "圓弧", - "DE.Controllers.Main.txtShape_borderCallout1": "線路標註1", - "DE.Controllers.Main.txtShape_borderCallout2": "線路標註2", - "DE.Controllers.Main.txtShape_borderCallout3": "線路標註3", - "DE.Controllers.Main.txtShape_bracePair": "雙括號", + "DE.Controllers.Main.txtShape_bevel": "立體斜角", + "DE.Controllers.Main.txtShape_blockArc": "區塊弧形", + "DE.Controllers.Main.txtShape_borderCallout1": "線條標注 1", + "DE.Controllers.Main.txtShape_borderCallout2": "線條標注 2", + "DE.Controllers.Main.txtShape_borderCallout3": "線條標注 3", + "DE.Controllers.Main.txtShape_bracePair": "雙大括號", "DE.Controllers.Main.txtShape_callout1": "線路標註1(無邊框)", - "DE.Controllers.Main.txtShape_callout2": "線路標註2(無邊框)", - "DE.Controllers.Main.txtShape_callout3": "線路標註3(無邊框)", + "DE.Controllers.Main.txtShape_callout2": "線條標注 2(無邊框)", + "DE.Controllers.Main.txtShape_callout3": "線條標注 3(無邊框)", "DE.Controllers.Main.txtShape_can": "罐狀", - "DE.Controllers.Main.txtShape_chevron": "V形", - "DE.Controllers.Main.txtShape_chord": "弦", + "DE.Controllers.Main.txtShape_chevron": "箭頭", + "DE.Controllers.Main.txtShape_chord": "和弦", "DE.Controllers.Main.txtShape_circularArrow": "圓形箭頭", "DE.Controllers.Main.txtShape_cloud": "雲", - "DE.Controllers.Main.txtShape_cloudCallout": "雲標註", + "DE.Controllers.Main.txtShape_cloudCallout": "雲形註解", "DE.Controllers.Main.txtShape_corner": "角", "DE.Controllers.Main.txtShape_cube": "立方體", "DE.Controllers.Main.txtShape_curvedConnector3": "彎曲連接器", "DE.Controllers.Main.txtShape_curvedConnector3WithArrow": "彎曲箭頭連接器", "DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "彎曲雙箭頭連接器", - "DE.Controllers.Main.txtShape_curvedDownArrow": "彎曲的向下箭頭", - "DE.Controllers.Main.txtShape_curvedLeftArrow": "彎曲的左箭頭", - "DE.Controllers.Main.txtShape_curvedRightArrow": "彎曲的右箭頭", - "DE.Controllers.Main.txtShape_curvedUpArrow": "彎曲的向上箭頭", + "DE.Controllers.Main.txtShape_curvedDownArrow": "彎曲向下箭頭", + "DE.Controllers.Main.txtShape_curvedLeftArrow": "彎曲向左箭頭", + "DE.Controllers.Main.txtShape_curvedRightArrow": "彎曲向右箭頭", + "DE.Controllers.Main.txtShape_curvedUpArrow": "彎曲向上箭頭", "DE.Controllers.Main.txtShape_decagon": "十邊形", - "DE.Controllers.Main.txtShape_diagStripe": "斜條紋", - "DE.Controllers.Main.txtShape_diamond": "鑽石", + "DE.Controllers.Main.txtShape_diagStripe": "對角線條紋", + "DE.Controllers.Main.txtShape_diamond": "菱形", "DE.Controllers.Main.txtShape_dodecagon": "十二邊形", - "DE.Controllers.Main.txtShape_donut": "甜甜圈", - "DE.Controllers.Main.txtShape_doubleWave": "雙波", + "DE.Controllers.Main.txtShape_donut": "圓環圖", + "DE.Controllers.Main.txtShape_doubleWave": "雙波浪線", "DE.Controllers.Main.txtShape_downArrow": "下箭頭", - "DE.Controllers.Main.txtShape_downArrowCallout": "向下箭頭標註", + "DE.Controllers.Main.txtShape_downArrowCallout": "下箭頭標註", "DE.Controllers.Main.txtShape_ellipse": "橢圓", - "DE.Controllers.Main.txtShape_ellipseRibbon": "下橢圓絲帶", - "DE.Controllers.Main.txtShape_ellipseRibbon2": "上橢圓絲帶", + "DE.Controllers.Main.txtShape_ellipseRibbon": "彎曲向下緞帶", + "DE.Controllers.Main.txtShape_ellipseRibbon2": "彎曲向上緞帶", "DE.Controllers.Main.txtShape_flowChartAlternateProcess": "流程圖:替代過程", "DE.Controllers.Main.txtShape_flowChartCollate": "流程圖:整理", "DE.Controllers.Main.txtShape_flowChartConnector": "流程圖:連接器", @@ -1028,85 +1028,85 @@ "DE.Controllers.Main.txtShape_flowChartDelay": "流程圖:延遲", "DE.Controllers.Main.txtShape_flowChartDisplay": "流程圖:顯示", "DE.Controllers.Main.txtShape_flowChartDocument": "流程圖:文件", - "DE.Controllers.Main.txtShape_flowChartExtract": "流程圖:提取", - "DE.Controllers.Main.txtShape_flowChartInputOutput": "流程圖:數據", - "DE.Controllers.Main.txtShape_flowChartInternalStorage": "流程圖:內部存儲", + "DE.Controllers.Main.txtShape_flowChartExtract": "流程圖:擷取", + "DE.Controllers.Main.txtShape_flowChartInputOutput": "流程圖:資料", + "DE.Controllers.Main.txtShape_flowChartInternalStorage": "流程圖:內部儲存", "DE.Controllers.Main.txtShape_flowChartMagneticDisk": "流程圖:磁碟", - "DE.Controllers.Main.txtShape_flowChartMagneticDrum": "流程圖:直接存取存儲", - "DE.Controllers.Main.txtShape_flowChartMagneticTape": "流程圖:順序存取存儲", + "DE.Controllers.Main.txtShape_flowChartMagneticDrum": "流程圖:直接存取儲存", + "DE.Controllers.Main.txtShape_flowChartMagneticTape": "流程圖:順序存取儲存", "DE.Controllers.Main.txtShape_flowChartManualInput": "流程圖:手動輸入", "DE.Controllers.Main.txtShape_flowChartManualOperation": "流程圖:手動操作", "DE.Controllers.Main.txtShape_flowChartMerge": "流程圖:合併", - "DE.Controllers.Main.txtShape_flowChartMultidocument": "流程圖:多文檔", - "DE.Controllers.Main.txtShape_flowChartOffpageConnector": "流程圖:頁外連接器", - "DE.Controllers.Main.txtShape_flowChartOnlineStorage": "流程圖:存儲的數據", + "DE.Controllers.Main.txtShape_flowChartMultidocument": "流程圖:多文件", + "DE.Controllers.Main.txtShape_flowChartOffpageConnector": "流程圖:頁面連接器", + "DE.Controllers.Main.txtShape_flowChartOnlineStorage": "流程圖:儲存的資料", "DE.Controllers.Main.txtShape_flowChartOr": "流程圖:或", "DE.Controllers.Main.txtShape_flowChartPredefinedProcess": "流程圖:預定義流程", "DE.Controllers.Main.txtShape_flowChartPreparation": "流程圖:準備", "DE.Controllers.Main.txtShape_flowChartProcess": "流程圖:流程", - "DE.Controllers.Main.txtShape_flowChartPunchedCard": "流程圖:卡", - "DE.Controllers.Main.txtShape_flowChartPunchedTape": "流程圖:穿孔紙帶", + "DE.Controllers.Main.txtShape_flowChartPunchedCard": "流程圖:卡片", + "DE.Controllers.Main.txtShape_flowChartPunchedTape": "流程圖:打孔紙帶", "DE.Controllers.Main.txtShape_flowChartSort": "流程圖:排序", - "DE.Controllers.Main.txtShape_flowChartSummingJunction": "流程圖:求和結點", - "DE.Controllers.Main.txtShape_flowChartTerminator": "流程圖:終結者", - "DE.Controllers.Main.txtShape_foldedCorner": "折角", - "DE.Controllers.Main.txtShape_frame": "框", - "DE.Controllers.Main.txtShape_halfFrame": "半框", - "DE.Controllers.Main.txtShape_heart": "心", + "DE.Controllers.Main.txtShape_flowChartSummingJunction": "流程圖:加總連結點", + "DE.Controllers.Main.txtShape_flowChartTerminator": "流程圖:終止符號", + "DE.Controllers.Main.txtShape_foldedCorner": "摺疊角落", + "DE.Controllers.Main.txtShape_frame": "框線", + "DE.Controllers.Main.txtShape_halfFrame": "半框架", + "DE.Controllers.Main.txtShape_heart": "心形", "DE.Controllers.Main.txtShape_heptagon": "七邊形", "DE.Controllers.Main.txtShape_hexagon": "六邊形", - "DE.Controllers.Main.txtShape_homePlate": "五角形", - "DE.Controllers.Main.txtShape_horizontalScroll": "水平滾動", - "DE.Controllers.Main.txtShape_irregularSeal1": "爆炸1", - "DE.Controllers.Main.txtShape_irregularSeal2": "爆炸2", - "DE.Controllers.Main.txtShape_leftArrow": "左箭頭", + "DE.Controllers.Main.txtShape_homePlate": "五邊形", + "DE.Controllers.Main.txtShape_horizontalScroll": "水平捲動", + "DE.Controllers.Main.txtShape_irregularSeal1": "爆炸效果1", + "DE.Controllers.Main.txtShape_irregularSeal2": "爆炸效果2", + "DE.Controllers.Main.txtShape_leftArrow": "向左箭頭", "DE.Controllers.Main.txtShape_leftArrowCallout": "向左箭頭標註", - "DE.Controllers.Main.txtShape_leftBrace": "左括號", - "DE.Controllers.Main.txtShape_leftBracket": "左括號", + "DE.Controllers.Main.txtShape_leftBrace": "左大括號", + "DE.Controllers.Main.txtShape_leftBracket": "左方括號", "DE.Controllers.Main.txtShape_leftRightArrow": "左右箭頭", "DE.Controllers.Main.txtShape_leftRightArrowCallout": "左右箭頭標註", "DE.Controllers.Main.txtShape_leftRightUpArrow": "左右上箭頭", "DE.Controllers.Main.txtShape_leftUpArrow": "左上箭頭", - "DE.Controllers.Main.txtShape_lightningBolt": "閃電", - "DE.Controllers.Main.txtShape_line": "線", + "DE.Controllers.Main.txtShape_lightningBolt": "閃電符號", + "DE.Controllers.Main.txtShape_line": "折線圖", "DE.Controllers.Main.txtShape_lineWithArrow": "箭頭", - "DE.Controllers.Main.txtShape_lineWithTwoArrows": "雙箭頭", - "DE.Controllers.Main.txtShape_mathDivide": "分裂", + "DE.Controllers.Main.txtShape_lineWithTwoArrows": "雙向箭頭", + "DE.Controllers.Main.txtShape_mathDivide": "除法", "DE.Controllers.Main.txtShape_mathEqual": "等於", - "DE.Controllers.Main.txtShape_mathMinus": "減去", + "DE.Controllers.Main.txtShape_mathMinus": "減號", "DE.Controllers.Main.txtShape_mathMultiply": "乘", - "DE.Controllers.Main.txtShape_mathNotEqual": "不平等", - "DE.Controllers.Main.txtShape_mathPlus": "加", + "DE.Controllers.Main.txtShape_mathNotEqual": "不等於", + "DE.Controllers.Main.txtShape_mathPlus": "加號", "DE.Controllers.Main.txtShape_moon": "月亮", "DE.Controllers.Main.txtShape_noSmoking": "\"否\"符號", - "DE.Controllers.Main.txtShape_notchedRightArrow": "缺口右箭頭", + "DE.Controllers.Main.txtShape_notchedRightArrow": "凹右箭頭", "DE.Controllers.Main.txtShape_octagon": "八邊形", "DE.Controllers.Main.txtShape_parallelogram": "平行四邊形", - "DE.Controllers.Main.txtShape_pentagon": "五角形", - "DE.Controllers.Main.txtShape_pie": "餅", + "DE.Controllers.Main.txtShape_pentagon": "五邊形", + "DE.Controllers.Main.txtShape_pie": "圓餅圖", "DE.Controllers.Main.txtShape_plaque": "簽名", - "DE.Controllers.Main.txtShape_plus": "加", - "DE.Controllers.Main.txtShape_polyline1": "塗", - "DE.Controllers.Main.txtShape_polyline2": "自由形式", - "DE.Controllers.Main.txtShape_quadArrow": "四箭頭", - "DE.Controllers.Main.txtShape_quadArrowCallout": "四箭頭標註", + "DE.Controllers.Main.txtShape_plus": "加號", + "DE.Controllers.Main.txtShape_polyline1": "塗鴉", + "DE.Controllers.Main.txtShape_polyline2": "自由形狀", + "DE.Controllers.Main.txtShape_quadArrow": "四向箭頭", + "DE.Controllers.Main.txtShape_quadArrowCallout": "四向箭頭圖說", "DE.Controllers.Main.txtShape_rect": "長方形", - "DE.Controllers.Main.txtShape_ribbon": "下絲帶", - "DE.Controllers.Main.txtShape_ribbon2": "上絲帶", + "DE.Controllers.Main.txtShape_ribbon": "向下緞帶", + "DE.Controllers.Main.txtShape_ribbon2": "上方功能區", "DE.Controllers.Main.txtShape_rightArrow": "右箭頭", - "DE.Controllers.Main.txtShape_rightArrowCallout": "右箭頭標註", - "DE.Controllers.Main.txtShape_rightBrace": "右括號", - "DE.Controllers.Main.txtShape_rightBracket": "右括號", - "DE.Controllers.Main.txtShape_round1Rect": "圓形單角矩形", + "DE.Controllers.Main.txtShape_rightArrowCallout": "右箭頭註解", + "DE.Controllers.Main.txtShape_rightBrace": "右大括號", + "DE.Controllers.Main.txtShape_rightBracket": "右方括弧", + "DE.Controllers.Main.txtShape_round1Rect": "圓角單邊矩形", "DE.Controllers.Main.txtShape_round2DiagRect": "圓斜角矩形", - "DE.Controllers.Main.txtShape_round2SameRect": "圓同一邊角矩形", + "DE.Controllers.Main.txtShape_round2SameRect": "圓角同邊矩形", "DE.Controllers.Main.txtShape_roundRect": "圓角矩形", "DE.Controllers.Main.txtShape_rtTriangle": "直角三角形", - "DE.Controllers.Main.txtShape_smileyFace": "笑臉", - "DE.Controllers.Main.txtShape_snip1Rect": "剪斷單角矩形", - "DE.Controllers.Main.txtShape_snip2DiagRect": "剪裁對角線矩形", - "DE.Controllers.Main.txtShape_snip2SameRect": "剪斷同一邊角矩形", - "DE.Controllers.Main.txtShape_snipRoundRect": "剪斷和圓形單角矩形", + "DE.Controllers.Main.txtShape_smileyFace": "笑臉符號", + "DE.Controllers.Main.txtShape_snip1Rect": "剪下圓角單邊矩形", + "DE.Controllers.Main.txtShape_snip2DiagRect": "剪下圓斜角矩形", + "DE.Controllers.Main.txtShape_snip2SameRect": "剪下圓角同邊矩形", + "DE.Controllers.Main.txtShape_snipRoundRect": "剪下圓角單邊矩形", "DE.Controllers.Main.txtShape_spline": "曲線", "DE.Controllers.Main.txtShape_star10": "十點星", "DE.Controllers.Main.txtShape_star12": "十二點星", @@ -1120,20 +1120,20 @@ "DE.Controllers.Main.txtShape_star8": "8點星", "DE.Controllers.Main.txtShape_stripedRightArrow": "條紋右箭頭", "DE.Controllers.Main.txtShape_sun": "太陽", - "DE.Controllers.Main.txtShape_teardrop": "淚珠", - "DE.Controllers.Main.txtShape_textRect": "文字框", + "DE.Controllers.Main.txtShape_teardrop": "淚滴形狀", + "DE.Controllers.Main.txtShape_textRect": "文字方塊", "DE.Controllers.Main.txtShape_trapezoid": "梯形", "DE.Controllers.Main.txtShape_triangle": "三角形", "DE.Controllers.Main.txtShape_upArrow": "向上箭頭", - "DE.Controllers.Main.txtShape_upArrowCallout": "向上箭頭標註", + "DE.Controllers.Main.txtShape_upArrowCallout": "向上箭頭註解", "DE.Controllers.Main.txtShape_upDownArrow": "上下箭頭", - "DE.Controllers.Main.txtShape_uturnArrow": "掉頭箭頭", - "DE.Controllers.Main.txtShape_verticalScroll": "垂直滾動", - "DE.Controllers.Main.txtShape_wave": "波", - "DE.Controllers.Main.txtShape_wedgeEllipseCallout": "橢圓形標註", + "DE.Controllers.Main.txtShape_uturnArrow": "U 形箭頭", + "DE.Controllers.Main.txtShape_verticalScroll": "垂直捲動", + "DE.Controllers.Main.txtShape_wave": "波浪", + "DE.Controllers.Main.txtShape_wedgeEllipseCallout": "橢圓形標注", "DE.Controllers.Main.txtShape_wedgeRectCallout": "矩形標註", "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "圓角矩形標註", - "DE.Controllers.Main.txtStarsRibbons": "星星和絲帶", + "DE.Controllers.Main.txtStarsRibbons": "星星和緞帶", "DE.Controllers.Main.txtStyle_Caption": "標題", "DE.Controllers.Main.txtStyle_endnote_text": "章節附註文字", "DE.Controllers.Main.txtStyle_footnote_text": "註腳文字", @@ -1146,15 +1146,15 @@ "DE.Controllers.Main.txtStyle_Heading_7": "標題 7", "DE.Controllers.Main.txtStyle_Heading_8": "標題 8", "DE.Controllers.Main.txtStyle_Heading_9": "標題 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "強調引用", + "DE.Controllers.Main.txtStyle_Intense_Quote": "強調引文", "DE.Controllers.Main.txtStyle_List_Paragraph": "段落列表", - "DE.Controllers.Main.txtStyle_No_Spacing": "沒有間距", - "DE.Controllers.Main.txtStyle_Normal": "標準", + "DE.Controllers.Main.txtStyle_No_Spacing": "無間距", + "DE.Controllers.Main.txtStyle_Normal": "一般", "DE.Controllers.Main.txtStyle_Quote": "引用", "DE.Controllers.Main.txtStyle_Subtitle": "副標題", "DE.Controllers.Main.txtStyle_Title": "標題", "DE.Controllers.Main.txtSyntaxError": "語法錯誤", - "DE.Controllers.Main.txtTableInd": "表索引不能為零", + "DE.Controllers.Main.txtTableInd": "表格索引不能為零", "DE.Controllers.Main.txtTableOfContents": "目錄", "DE.Controllers.Main.txtTableOfFigures": "圖表目錄", "DE.Controllers.Main.txtTOCHeading": "目錄標題", @@ -1166,94 +1166,94 @@ "DE.Controllers.Main.txtZeroDivide": "零分度", "DE.Controllers.Main.unknownErrorText": "未知錯誤。", "DE.Controllers.Main.unsupportedBrowserErrorText": "不支援您的瀏覽器", - "DE.Controllers.Main.uploadDocExtMessage": "未知的文件格式。", - "DE.Controllers.Main.uploadDocFileCountMessage": "沒有文件上傳。", + "DE.Controllers.Main.uploadDocExtMessage": "未知文件格式。", + "DE.Controllers.Main.uploadDocFileCountMessage": "沒有上傳文件。", "DE.Controllers.Main.uploadDocSizeMessage": "超出最大文檔大小限制。", - "DE.Controllers.Main.uploadImageExtMessage": "圖片格式未知。", + "DE.Controllers.Main.uploadImageExtMessage": "未知圖片格式。", "DE.Controllers.Main.uploadImageFileCountMessage": "沒有上傳圖片。", - "DE.Controllers.Main.uploadImageSizeMessage": "圖像超出最大大小限制。最大大小為25MB。", + "DE.Controllers.Main.uploadImageSizeMessage": "圖片超出最大大小限制。最大大小為25MB。", "DE.Controllers.Main.uploadImageTextText": "正在上傳圖片...", "DE.Controllers.Main.uploadImageTitleText": "正在上傳圖片", - "DE.Controllers.Main.waitText": "請耐心等待...", - "DE.Controllers.Main.warnBrowserIE9": "該應用程序在IE9上具有較低的功能。使用IE10或更高版本", - "DE.Controllers.Main.warnBrowserZoom": "不完全支援瀏覽器當前的縮放設置。請按Ctrl + 0重置為預設縮放。", + "DE.Controllers.Main.waitText": "請稍候...", + "DE.Controllers.Main.warnBrowserIE9": "該應用程式在IE9上的功能有限。請使用IE10或更高版本", + "DE.Controllers.Main.warnBrowserZoom": "您的瀏覽器目前的縮放設定不完全支援。請按Ctrl+0重設為預設縮放。", "DE.Controllers.Main.warnLicenseAnonymous": "匿名使用者無法存取。
此文件將僅供檢視。", - "DE.Controllers.Main.warnLicenseBefore": "授權未啟用。
請聯絡您的管理員。", + "DE.Controllers.Main.warnLicenseBefore": "授權證書未啟用。請聯繫您的管理員。", "DE.Controllers.Main.warnLicenseExceeded": "您的系統已經達到同時編輯連線的 %1 編輯器。只能以檢視模式開啟此文件。
欲得知進一步訊息, 請聯絡您的帳號管理者。", - "DE.Controllers.Main.warnLicenseExp": "您的授權證已過期.
請更新您的授權證並重新整理頁面。", + "DE.Controllers.Main.warnLicenseExp": "您的授權已過期。
請更新您的授權並重新整理頁面。", "DE.Controllers.Main.warnLicenseLimitedNoAccess": "授權過期
您已沒有編輯文件功能的授權
請與您的管理者聯繫。", - "DE.Controllers.Main.warnLicenseLimitedRenewed": "授權證書需要更新
您只有部分的文件編輯功能的存取權限
請與您的管理者聯繫來取得完整的存取權限。", + "DE.Controllers.Main.warnLicenseLimitedRenewed": "授權證書已過期。因此無法編輯文件。請聯繫您的管理員。", "DE.Controllers.Main.warnLicenseUsersExceeded": "您已達到%1個編輯器限制。請聯絡你的帳號管理員以了解更多資訊。", - "DE.Controllers.Main.warnNoLicense": "您的系統已經達到同時編輯連線的 %1 編輯器。只能以檢視模式開啟此文件。
請聯繫 %1 銷售團隊來取得個人升級的需求。", - "DE.Controllers.Main.warnNoLicenseUsers": "您已達到%1個編輯器限制。請聯絡%1業務部以了解更多的升級條款及方案。", - "DE.Controllers.Main.warnProcessRightsChange": "您被拒絕編輯文件的權利。", - "DE.Controllers.Navigation.txtBeginning": "文件的開頭", - "DE.Controllers.Navigation.txtGotoBeginning": "轉到文檔的開頭", + "DE.Controllers.Main.warnNoLicense": "您已達到同時連線 %1 編輯者的限制。此文件將僅以檢視模式開啟。", + "DE.Controllers.Main.warnNoLicenseUsers": "您已達到編輯器的使用者限制。", + "DE.Controllers.Main.warnProcessRightsChange": "您被拒絕了編輯文件的權限。", + "DE.Controllers.Navigation.txtBeginning": "文件開頭", + "DE.Controllers.Navigation.txtGotoBeginning": "前往文件開頭", "DE.Controllers.Print.textMarginsLast": "最後自訂", "DE.Controllers.Print.txtCustom": "自訂", "DE.Controllers.Print.txtPrintRangeInvalid": "無效的列印範圍", - "DE.Controllers.Print.txtPrintRangeSingleRange": "請輸入單一頁面編號或頁面範圍(例如,5-12)。或者以PDF格式列印。", + "DE.Controllers.Print.txtPrintRangeSingleRange": "請輸入單一頁面編號或單一頁面範圍(例如,5-12)。或者您可以將其列印成PDF。", "DE.Controllers.Search.notcriticalErrorTitle": "警告", - "DE.Controllers.Search.textNoTextFound": "找不到您在搜索的數據。請調整您的搜索選項。", - "DE.Controllers.Search.textReplaceSkipped": "替換已完成。 {0}個事件被跳過。", + "DE.Controllers.Search.textNoTextFound": "找不到您正在搜尋的資料。請調整您的搜尋選項。", + "DE.Controllers.Search.textReplaceSkipped": "替換已完成。有 {0} 個項目被跳過。", "DE.Controllers.Search.textReplaceSuccess": "搜尋完成。 {0}個符合結果已被取代", "DE.Controllers.Search.warnReplaceString": "{0}不是有效的字元", "DE.Controllers.Statusbar.textDisconnect": "連線失敗
正在嘗試連線。請檢查網路連線設定。", - "DE.Controllers.Statusbar.textHasChanges": "跟蹤了新的變化", - "DE.Controllers.Statusbar.textSetTrackChanges": "您現在是在追蹤修訂模式", - "DE.Controllers.Statusbar.textTrackChanges": "在啟用\"追蹤修訂\"模式的情況下打開文檔", - "DE.Controllers.Statusbar.tipReview": "跟蹤變化", - "DE.Controllers.Statusbar.zoomText": "放大{0}%", - "DE.Controllers.Toolbar.confirmAddFontName": "您要儲存的字型在目前的設備上無法使用。
字型風格將使用其中一種系統字體顯示,儲存的字體將在可用時啟用。
您要繼續嗎?", - "DE.Controllers.Toolbar.dataUrl": "粘貼數據 URL", + "DE.Controllers.Statusbar.textHasChanges": "已追蹤新變更", + "DE.Controllers.Statusbar.textSetTrackChanges": "您正在「追蹤修訂」模式下", + "DE.Controllers.Statusbar.textTrackChanges": "以「追蹤修訂」模式開啟文件", + "DE.Controllers.Statusbar.tipReview": "追蹤變更", + "DE.Controllers.Statusbar.zoomText": "縮放至{0}%", + "DE.Controllers.Toolbar.confirmAddFontName": "您即將保存的字體在當前設備上不可用。
該文字樣式將使用其中一種系統字體顯示,而在字體可用時將使用保存的字體。
您是否要繼續?", + "DE.Controllers.Toolbar.dataUrl": "貼上資料URL", "DE.Controllers.Toolbar.notcriticalErrorTitle": "警告", "DE.Controllers.Toolbar.textAccent": "口音", "DE.Controllers.Toolbar.textBracket": "括號", - "DE.Controllers.Toolbar.textEmptyImgUrl": "您必須輸入圖檔的URL.", - "DE.Controllers.Toolbar.textEmptyMMergeUrl": "你必須指定URL", - "DE.Controllers.Toolbar.textFontSizeErr": "輸入的值不正確。
請輸入1到300之間的數字值", + "DE.Controllers.Toolbar.textEmptyImgUrl": "您需要指定圖片的網址。", + "DE.Controllers.Toolbar.textEmptyMMergeUrl": "您需要指定的網址。", + "DE.Controllers.Toolbar.textFontSizeErr": "輸入的值不正確。
請輸入介於1和300之間的數值。", "DE.Controllers.Toolbar.textFraction": "分數", - "DE.Controllers.Toolbar.textFunction": "功能", + "DE.Controllers.Toolbar.textFunction": "函數", "DE.Controllers.Toolbar.textGroup": "群組", "DE.Controllers.Toolbar.textInsert": "插入", - "DE.Controllers.Toolbar.textIntegral": "積分", - "DE.Controllers.Toolbar.textLargeOperator": "大型運營商", + "DE.Controllers.Toolbar.textIntegral": "積分符號", + "DE.Controllers.Toolbar.textLargeOperator": "大型運算符", "DE.Controllers.Toolbar.textLimitAndLog": "極限和對數", "DE.Controllers.Toolbar.textMatrix": "矩陣", - "DE.Controllers.Toolbar.textOperator": "經營者", - "DE.Controllers.Toolbar.textRadical": "激進單數", + "DE.Controllers.Toolbar.textOperator": "運算符", + "DE.Controllers.Toolbar.textRadical": "根式", "DE.Controllers.Toolbar.textRecentlyUsed": "最近使用", "DE.Controllers.Toolbar.textScript": "腳本", "DE.Controllers.Toolbar.textSymbols": "符號", - "DE.Controllers.Toolbar.textTabForms": "表格", + "DE.Controllers.Toolbar.textTabForms": "表單", "DE.Controllers.Toolbar.textWarning": "警告", "DE.Controllers.Toolbar.txtAccent_Accent": "尖銳", - "DE.Controllers.Toolbar.txtAccent_ArrowD": "上方的左右箭頭", - "DE.Controllers.Toolbar.txtAccent_ArrowL": "上方的向左箭頭", + "DE.Controllers.Toolbar.txtAccent_ArrowD": "上方左右箭頭", + "DE.Controllers.Toolbar.txtAccent_ArrowL": "上方左箭頭", "DE.Controllers.Toolbar.txtAccent_ArrowR": "上方向右箭頭", - "DE.Controllers.Toolbar.txtAccent_Bar": "槓", - "DE.Controllers.Toolbar.txtAccent_BarBot": "底橫槓", + "DE.Controllers.Toolbar.txtAccent_Bar": "長條圖", + "DE.Controllers.Toolbar.txtAccent_BarBot": "底線", "DE.Controllers.Toolbar.txtAccent_BarTop": "橫槓", "DE.Controllers.Toolbar.txtAccent_BorderBox": "有方框的公式(包含佔位符)", - "DE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "盒裝函數(範例)", - "DE.Controllers.Toolbar.txtAccent_Check": "檢查", + "DE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "帶框公式(範例)", + "DE.Controllers.Toolbar.txtAccent_Check": "勾選", "DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "底括號", - "DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "大括號", + "DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "上大括號", "DE.Controllers.Toolbar.txtAccent_Custom_1": "向量A", "DE.Controllers.Toolbar.txtAccent_Custom_2": "帶橫線的ABC", - "DE.Controllers.Toolbar.txtAccent_Custom_3": "x X或y的橫槓", + "DE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y帶有上橫線", "DE.Controllers.Toolbar.txtAccent_DDDot": "三點", "DE.Controllers.Toolbar.txtAccent_DDot": "雙點", "DE.Controllers.Toolbar.txtAccent_Dot": "點", - "DE.Controllers.Toolbar.txtAccent_DoubleBar": "雙橫槓", - "DE.Controllers.Toolbar.txtAccent_Grave": "墓", - "DE.Controllers.Toolbar.txtAccent_GroupBot": "下面的分組字符", - "DE.Controllers.Toolbar.txtAccent_GroupTop": "上面的分組字符", - "DE.Controllers.Toolbar.txtAccent_HarpoonL": "上方的向左魚叉", - "DE.Controllers.Toolbar.txtAccent_HarpoonR": "上方的向右魚叉", + "DE.Controllers.Toolbar.txtAccent_DoubleBar": "雙上橫槓", + "DE.Controllers.Toolbar.txtAccent_Grave": "重音符號", + "DE.Controllers.Toolbar.txtAccent_GroupBot": "下方分組字元", + "DE.Controllers.Toolbar.txtAccent_GroupTop": "上方分組字元", + "DE.Controllers.Toolbar.txtAccent_HarpoonL": "上方左矢", + "DE.Controllers.Toolbar.txtAccent_HarpoonR": "上方右箭頭", "DE.Controllers.Toolbar.txtAccent_Hat": "帽子", "DE.Controllers.Toolbar.txtAccent_Smile": "短音符", - "DE.Controllers.Toolbar.txtAccent_Tilde": "代字號", + "DE.Controllers.Toolbar.txtAccent_Tilde": "波浪號", "DE.Controllers.Toolbar.txtBracket_Angle": "角括號", "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "帶分隔符的角括號", "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "帶兩個分隔符的角括號", @@ -1263,11 +1263,11 @@ "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "帶分隔符的大括號", "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "單括號", "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "單括號", - "DE.Controllers.Toolbar.txtBracket_Custom_1": "案件(兩件條件)", - "DE.Controllers.Toolbar.txtBracket_Custom_2": "案件(三件條件)", + "DE.Controllers.Toolbar.txtBracket_Custom_1": "情況(兩個條件)", + "DE.Controllers.Toolbar.txtBracket_Custom_2": "情況(三個條件)", "DE.Controllers.Toolbar.txtBracket_Custom_3": "堆疊物件", "DE.Controllers.Toolbar.txtBracket_Custom_4": "堆疊物件", - "DE.Controllers.Toolbar.txtBracket_Custom_5": "案件例子", + "DE.Controllers.Toolbar.txtBracket_Custom_5": "情況範例", "DE.Controllers.Toolbar.txtBracket_Custom_6": "二項式係數", "DE.Controllers.Toolbar.txtBracket_Custom_7": "帶有角括號的二項式係數", "DE.Controllers.Toolbar.txtBracket_Line": "括號", @@ -1295,22 +1295,22 @@ "DE.Controllers.Toolbar.txtBracket_UppLim": "天花板", "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "單括號", "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "單括號", - "DE.Controllers.Toolbar.txtFractionDiagonal": "偏斜分數", + "DE.Controllers.Toolbar.txtFractionDiagonal": "斜向分數", "DE.Controllers.Toolbar.txtFractionDifferential_1": "dx 除以 dy", "DE.Controllers.Toolbar.txtFractionDifferential_2": "Δy 除以 Δx 的大寫Δ", "DE.Controllers.Toolbar.txtFractionDifferential_3": "微分", "DE.Controllers.Toolbar.txtFractionDifferential_4": "Δx 除以 Δy", "DE.Controllers.Toolbar.txtFractionHorizontal": "線性分數", - "DE.Controllers.Toolbar.txtFractionPi_2": "Pi超過2", + "DE.Controllers.Toolbar.txtFractionPi_2": "Pi除以2", "DE.Controllers.Toolbar.txtFractionSmall": "小分數", "DE.Controllers.Toolbar.txtFractionVertical": "堆積分數", "DE.Controllers.Toolbar.txtFunction_1_Cos": "反餘弦函數", - "DE.Controllers.Toolbar.txtFunction_1_Cosh": "雙曲餘弦函數", - "DE.Controllers.Toolbar.txtFunction_1_Cot": "反正切函數", - "DE.Controllers.Toolbar.txtFunction_1_Coth": "雙曲反正切函數", - "DE.Controllers.Toolbar.txtFunction_1_Csc": "餘割函數反", + "DE.Controllers.Toolbar.txtFunction_1_Cosh": "雙曲反餘弦函數", + "DE.Controllers.Toolbar.txtFunction_1_Cot": "反餘切函數", + "DE.Controllers.Toolbar.txtFunction_1_Coth": "雙曲反餘切函數", + "DE.Controllers.Toolbar.txtFunction_1_Csc": "反餘割函數", "DE.Controllers.Toolbar.txtFunction_1_Csch": "雙曲反餘割函數", - "DE.Controllers.Toolbar.txtFunction_1_Sec": "反割線功能", + "DE.Controllers.Toolbar.txtFunction_1_Sec": "反正割函數", "DE.Controllers.Toolbar.txtFunction_1_Sech": "雙曲反正割函數", "DE.Controllers.Toolbar.txtFunction_1_Sin": "反正弦函數", "DE.Controllers.Toolbar.txtFunction_1_Sinh": "雙曲反正弦函數", @@ -1318,30 +1318,30 @@ "DE.Controllers.Toolbar.txtFunction_1_Tanh": "雙曲反正切函數", "DE.Controllers.Toolbar.txtFunction_Cos": "餘弦函數", "DE.Controllers.Toolbar.txtFunction_Cosh": "雙曲餘弦函數", - "DE.Controllers.Toolbar.txtFunction_Cot": "餘切函數", + "DE.Controllers.Toolbar.txtFunction_Cot": "余切函數", "DE.Controllers.Toolbar.txtFunction_Coth": "雙曲餘切函數", - "DE.Controllers.Toolbar.txtFunction_Csc": "餘割函數", + "DE.Controllers.Toolbar.txtFunction_Csc": "余割函數", "DE.Controllers.Toolbar.txtFunction_Csch": "雙曲餘割函數", - "DE.Controllers.Toolbar.txtFunction_Custom_1": "正弦波", - "DE.Controllers.Toolbar.txtFunction_Custom_2": "餘弦 2x", - "DE.Controllers.Toolbar.txtFunction_Custom_3": "切線函數", - "DE.Controllers.Toolbar.txtFunction_Sec": "正割功能", + "DE.Controllers.Toolbar.txtFunction_Custom_1": "正弦θ", + "DE.Controllers.Toolbar.txtFunction_Custom_2": "cos2x", + "DE.Controllers.Toolbar.txtFunction_Custom_3": "正切公式", + "DE.Controllers.Toolbar.txtFunction_Sec": "正割函數", "DE.Controllers.Toolbar.txtFunction_Sech": "雙曲正割函數", "DE.Controllers.Toolbar.txtFunction_Sin": "正弦函數", "DE.Controllers.Toolbar.txtFunction_Sinh": "雙曲正弦函數", - "DE.Controllers.Toolbar.txtFunction_Tan": "切線公式", + "DE.Controllers.Toolbar.txtFunction_Tan": "正切函數", "DE.Controllers.Toolbar.txtFunction_Tanh": "雙曲正切函數", "DE.Controllers.Toolbar.txtIntegral": "積分", "DE.Controllers.Toolbar.txtIntegral_dtheta": "微分θ", - "DE.Controllers.Toolbar.txtIntegral_dx": "差分 x", - "DE.Controllers.Toolbar.txtIntegral_dy": "差分 y", + "DE.Controllers.Toolbar.txtIntegral_dx": "微分 x", + "DE.Controllers.Toolbar.txtIntegral_dy": "微分 y", "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "積分", - "DE.Controllers.Toolbar.txtIntegralDouble": "雙積分", + "DE.Controllers.Toolbar.txtIntegralDouble": "雙重積分", "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "帶堆疊限制的雙重積分", "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "帶限制的雙重積分", - "DE.Controllers.Toolbar.txtIntegralOriented": "輪廓積分", + "DE.Controllers.Toolbar.txtIntegralOriented": "等高線積分", "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "帶堆疊限制的等高積分", - "DE.Controllers.Toolbar.txtIntegralOrientedDouble": "表面積分", + "DE.Controllers.Toolbar.txtIntegralOrientedDouble": "曲面積分", "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "表面積分", "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "表面積分", "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "帶限制的等高積分", @@ -1357,7 +1357,7 @@ "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "楔", "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "楔", "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "楔", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd": "聯產品", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd": "共積", "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "帶下限的共積", "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "帶限制的共積", "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "帶有下標下限的共積", @@ -1372,17 +1372,17 @@ "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "邏輯運算子Or", "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "邏輯運算子Or", "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "邏輯運算子Or", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection": "交叉點", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection": "交集", "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "交叉點", "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "交叉點", "DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "交叉點", "DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "交叉點", - "DE.Controllers.Toolbar.txtLargeOperator_Prod": "產品", + "DE.Controllers.Toolbar.txtLargeOperator_Prod": "乘積", "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "產品", "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "產品", "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "產品", "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "產品", - "DE.Controllers.Toolbar.txtLargeOperator_Sum": "求和", + "DE.Controllers.Toolbar.txtLargeOperator_Sum": "總和", "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "求和", "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "求和", "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "求和", @@ -1393,15 +1393,15 @@ "DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "聯合", "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "聯合", "DE.Controllers.Toolbar.txtLimitLog_Custom_1": "限制例子", - "DE.Controllers.Toolbar.txtLimitLog_Custom_2": "最大例子", + "DE.Controllers.Toolbar.txtLimitLog_Custom_2": "最大範例", "DE.Controllers.Toolbar.txtLimitLog_Lim": "限制", "DE.Controllers.Toolbar.txtLimitLog_Ln": "自然對數", "DE.Controllers.Toolbar.txtLimitLog_Log": "對數", "DE.Controllers.Toolbar.txtLimitLog_LogBase": "對數", - "DE.Controllers.Toolbar.txtLimitLog_Max": "最大", - "DE.Controllers.Toolbar.txtLimitLog_Min": "最低", - "DE.Controllers.Toolbar.txtMarginsH": "對於給定的頁面高度,上下邊距太高", - "DE.Controllers.Toolbar.txtMarginsW": "給定頁面寬度,左右頁邊距太寬", + "DE.Controllers.Toolbar.txtLimitLog_Max": "最大值", + "DE.Controllers.Toolbar.txtLimitLog_Min": "最小值", + "DE.Controllers.Toolbar.txtMarginsH": "頂部和底部的邊界對於給定的頁面高度太高了", + "DE.Controllers.Toolbar.txtMarginsW": "給定頁面寬度下,左右邊界過寬", "DE.Controllers.Toolbar.txtMatrix_1_2": "1x2 空矩陣", "DE.Controllers.Toolbar.txtMatrix_1_3": "1x3 空矩陣", "DE.Controllers.Toolbar.txtMatrix_2_1": "2x1 空矩陣", @@ -1424,130 +1424,130 @@ "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "2x2 除了對角線以外都是空白的單位矩陣", "DE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 除了對角線以外都是零的單位矩陣", "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 除了對角線以外都是空白的單位矩陣", - "DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "下方的左右箭頭", - "DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "上方的左右箭頭", - "DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "下方的向左箭頭", - "DE.Controllers.Toolbar.txtOperator_ArrowL_Top": "上方的向左箭頭", + "DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "下方左右箭頭", + "DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "上方左右箭頭", + "DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "下方左箭頭", + "DE.Controllers.Toolbar.txtOperator_ArrowL_Top": "上方左箭頭", "DE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "下方向右箭頭", "DE.Controllers.Toolbar.txtOperator_ArrowR_Top": "上方向右箭頭", - "DE.Controllers.Toolbar.txtOperator_ColonEquals": "冒號相等", - "DE.Controllers.Toolbar.txtOperator_Custom_1": "產量", + "DE.Controllers.Toolbar.txtOperator_ColonEquals": "冒號等號", + "DE.Controllers.Toolbar.txtOperator_Custom_1": "產生", "DE.Controllers.Toolbar.txtOperator_Custom_2": "Delta 收益", - "DE.Controllers.Toolbar.txtOperator_Definition": "等同於定義", + "DE.Controllers.Toolbar.txtOperator_Definition": "按照定義相等", "DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta 等於", "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "下方的左右箭頭", "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "上方的左右箭頭", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "下方的向左箭頭", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "上方的向左箭頭", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "下方左箭頭", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "上方左箭頭", "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "下方向右箭頭", "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "上方向右箭頭", "DE.Controllers.Toolbar.txtOperator_EqualsEquals": "等於 等於", "DE.Controllers.Toolbar.txtOperator_MinusEquals": "負等於", "DE.Controllers.Toolbar.txtOperator_PlusEquals": "加等於", - "DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "測量者", + "DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "由...測量", "DE.Controllers.Toolbar.txtRadicalCustom_1": "根號", "DE.Controllers.Toolbar.txtRadicalCustom_2": "根號", - "DE.Controllers.Toolbar.txtRadicalRoot_2": "平方根", + "DE.Controllers.Toolbar.txtRadicalRoot_2": "帶次數的平方根", "DE.Controllers.Toolbar.txtRadicalRoot_3": "立方根", - "DE.Controllers.Toolbar.txtRadicalRoot_n": "開n次根號", + "DE.Controllers.Toolbar.txtRadicalRoot_n": "帶有次數的根號符號", "DE.Controllers.Toolbar.txtRadicalSqrt": "平方根", "DE.Controllers.Toolbar.txtScriptCustom_1": "腳本", "DE.Controllers.Toolbar.txtScriptCustom_2": "e 的負 i omega t 次方", "DE.Controllers.Toolbar.txtScriptCustom_3": "腳本", "DE.Controllers.Toolbar.txtScriptCustom_4": "腳本", "DE.Controllers.Toolbar.txtScriptSub": "下標", - "DE.Controllers.Toolbar.txtScriptSubSup": "下標-上標", + "DE.Controllers.Toolbar.txtScriptSubSup": "上下標", "DE.Controllers.Toolbar.txtScriptSubSupLeft": "左下標-上標", "DE.Controllers.Toolbar.txtScriptSup": "上標", "DE.Controllers.Toolbar.txtSymbol_about": "大約", - "DE.Controllers.Toolbar.txtSymbol_additional": "補充", + "DE.Controllers.Toolbar.txtSymbol_additional": "補集", "DE.Controllers.Toolbar.txtSymbol_aleph": "Aleph", "DE.Controllers.Toolbar.txtSymbol_alpha": "Αlpha", "DE.Controllers.Toolbar.txtSymbol_approx": "Approx", "DE.Controllers.Toolbar.txtSymbol_ast": "星號運算子", - "DE.Controllers.Toolbar.txtSymbol_beta": "Beta", - "DE.Controllers.Toolbar.txtSymbol_beth": "Beth", + "DE.Controllers.Toolbar.txtSymbol_beta": "測試版", + "DE.Controllers.Toolbar.txtSymbol_beth": "賭注", "DE.Controllers.Toolbar.txtSymbol_bullet": "點運算子", - "DE.Controllers.Toolbar.txtSymbol_cap": "Cap", - "DE.Controllers.Toolbar.txtSymbol_cbrt": "Cbrt", - "DE.Controllers.Toolbar.txtSymbol_cdots": "Cdot", + "DE.Controllers.Toolbar.txtSymbol_cap": "交集", + "DE.Controllers.Toolbar.txtSymbol_cbrt": "立方根", + "DE.Controllers.Toolbar.txtSymbol_cdots": "中線水平省略號", "DE.Controllers.Toolbar.txtSymbol_celsius": "攝氏度", "DE.Controllers.Toolbar.txtSymbol_chi": "Chi", - "DE.Controllers.Toolbar.txtSymbol_cong": "Cong", - "DE.Controllers.Toolbar.txtSymbol_cup": "Cup", - "DE.Controllers.Toolbar.txtSymbol_ddots": "Ddots", - "DE.Controllers.Toolbar.txtSymbol_degree": "Degree", - "DE.Controllers.Toolbar.txtSymbol_delta": "Delta", - "DE.Controllers.Toolbar.txtSymbol_div": "Div", - "DE.Controllers.Toolbar.txtSymbol_downarrow": "Downarrow", - "DE.Controllers.Toolbar.txtSymbol_emptyset": "Emptyset", + "DE.Controllers.Toolbar.txtSymbol_cong": "大約等於", + "DE.Controllers.Toolbar.txtSymbol_cup": "聯合", + "DE.Controllers.Toolbar.txtSymbol_ddots": "向右下對角省略號", + "DE.Controllers.Toolbar.txtSymbol_degree": "度", + "DE.Controllers.Toolbar.txtSymbol_delta": "Delta 等於", + "DE.Controllers.Toolbar.txtSymbol_div": "除號", + "DE.Controllers.Toolbar.txtSymbol_downarrow": "向下箭頭", + "DE.Controllers.Toolbar.txtSymbol_emptyset": "空集合", "DE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon", - "DE.Controllers.Toolbar.txtSymbol_equals": "Equals", - "DE.Controllers.Toolbar.txtSymbol_equiv": "Equiv", + "DE.Controllers.Toolbar.txtSymbol_equals": "等於", + "DE.Controllers.Toolbar.txtSymbol_equiv": "相同於", "DE.Controllers.Toolbar.txtSymbol_eta": "Eta", - "DE.Controllers.Toolbar.txtSymbol_exists": "Exists ", - "DE.Controllers.Toolbar.txtSymbol_factorial": "Factorial", - "DE.Controllers.Toolbar.txtSymbol_fahrenheit": "Fahrenheit", - "DE.Controllers.Toolbar.txtSymbol_forall": "Forall", + "DE.Controllers.Toolbar.txtSymbol_exists": "存在", + "DE.Controllers.Toolbar.txtSymbol_factorial": "階乘", + "DE.Controllers.Toolbar.txtSymbol_fahrenheit": "華氏度", + "DE.Controllers.Toolbar.txtSymbol_forall": "適用於全部", "DE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", "DE.Controllers.Toolbar.txtSymbol_geq": "Geq", - "DE.Controllers.Toolbar.txtSymbol_gg": "Gg", - "DE.Controllers.Toolbar.txtSymbol_greater": "Greater", - "DE.Controllers.Toolbar.txtSymbol_in": "In", - "DE.Controllers.Toolbar.txtSymbol_inc": "Inc", - "DE.Controllers.Toolbar.txtSymbol_infinity": "Infinity", + "DE.Controllers.Toolbar.txtSymbol_gg": "遠大於", + "DE.Controllers.Toolbar.txtSymbol_greater": "大於等於", + "DE.Controllers.Toolbar.txtSymbol_in": "元素", + "DE.Controllers.Toolbar.txtSymbol_inc": "增量", + "DE.Controllers.Toolbar.txtSymbol_infinity": "無窮大", "DE.Controllers.Toolbar.txtSymbol_iota": "Iota", "DE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", "DE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", - "DE.Controllers.Toolbar.txtSymbol_leftarrow": "Leftarrow", - "DE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Leftrightarrow", - "DE.Controllers.Toolbar.txtSymbol_leq": "Leq", - "DE.Controllers.Toolbar.txtSymbol_less": "Less", - "DE.Controllers.Toolbar.txtSymbol_ll": "Ll", - "DE.Controllers.Toolbar.txtSymbol_minus": "Minus", - "DE.Controllers.Toolbar.txtSymbol_mp": "Mp", + "DE.Controllers.Toolbar.txtSymbol_leftarrow": "向左箭頭", + "DE.Controllers.Toolbar.txtSymbol_leftrightarrow": "左右箭頭", + "DE.Controllers.Toolbar.txtSymbol_leq": "小於或等於", + "DE.Controllers.Toolbar.txtSymbol_less": "小於", + "DE.Controllers.Toolbar.txtSymbol_ll": "遠小於", + "DE.Controllers.Toolbar.txtSymbol_minus": "減號", + "DE.Controllers.Toolbar.txtSymbol_mp": "減加號", "DE.Controllers.Toolbar.txtSymbol_mu": "Mu", "DE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", - "DE.Controllers.Toolbar.txtSymbol_neq": "Neq", - "DE.Controllers.Toolbar.txtSymbol_ni": "Ni", - "DE.Controllers.Toolbar.txtSymbol_not": "Not", - "DE.Controllers.Toolbar.txtSymbol_notexists": "Notexists", + "DE.Controllers.Toolbar.txtSymbol_neq": "不等於", + "DE.Controllers.Toolbar.txtSymbol_ni": "包含為成員", + "DE.Controllers.Toolbar.txtSymbol_not": "沒有簽名", + "DE.Controllers.Toolbar.txtSymbol_notexists": "不存在", "DE.Controllers.Toolbar.txtSymbol_nu": "Nu", - "DE.Controllers.Toolbar.txtSymbol_o": "Omicron", - "DE.Controllers.Toolbar.txtSymbol_omega": "Omega", - "DE.Controllers.Toolbar.txtSymbol_partial": "Partial", - "DE.Controllers.Toolbar.txtSymbol_percent": "Percent", + "DE.Controllers.Toolbar.txtSymbol_o": "Ο (歐米克戎)", + "DE.Controllers.Toolbar.txtSymbol_omega": "Ω (歐米茄)", + "DE.Controllers.Toolbar.txtSymbol_partial": "偏微分", + "DE.Controllers.Toolbar.txtSymbol_percent": "百分比", "DE.Controllers.Toolbar.txtSymbol_phi": "Phi", "DE.Controllers.Toolbar.txtSymbol_pi": "Pi", - "DE.Controllers.Toolbar.txtSymbol_plus": "Plus", - "DE.Controllers.Toolbar.txtSymbol_pm": "Pm", - "DE.Controllers.Toolbar.txtSymbol_propto": "Propto", - "DE.Controllers.Toolbar.txtSymbol_psi": "Psi", - "DE.Controllers.Toolbar.txtSymbol_qdrt": "Qdrt", - "DE.Controllers.Toolbar.txtSymbol_qed": "Qed", - "DE.Controllers.Toolbar.txtSymbol_rddots": "Rddots", - "DE.Controllers.Toolbar.txtSymbol_rho": "Rho", - "DE.Controllers.Toolbar.txtSymbol_rightarrow": "Rightarrow", + "DE.Controllers.Toolbar.txtSymbol_plus": "加號", + "DE.Controllers.Toolbar.txtSymbol_pm": "加減號", + "DE.Controllers.Toolbar.txtSymbol_propto": "比例縮放為", + "DE.Controllers.Toolbar.txtSymbol_psi": "Ψ(希臘字母普西)", + "DE.Controllers.Toolbar.txtSymbol_qdrt": "四次根", + "DE.Controllers.Toolbar.txtSymbol_qed": "證明結束", + "DE.Controllers.Toolbar.txtSymbol_rddots": "右上對角省略符號", + "DE.Controllers.Toolbar.txtSymbol_rho": "希臘字母\"ρ\"", + "DE.Controllers.Toolbar.txtSymbol_rightarrow": "右箭頭", "DE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", - "DE.Controllers.Toolbar.txtSymbol_sqrt": "Sqrt", + "DE.Controllers.Toolbar.txtSymbol_sqrt": "根號符號", "DE.Controllers.Toolbar.txtSymbol_tau": "Tau", - "DE.Controllers.Toolbar.txtSymbol_therefore": "Therefore", + "DE.Controllers.Toolbar.txtSymbol_therefore": "因此", "DE.Controllers.Toolbar.txtSymbol_theta": "Theta", - "DE.Controllers.Toolbar.txtSymbol_times": "Times", - "DE.Controllers.Toolbar.txtSymbol_uparrow": "Uparrow", + "DE.Controllers.Toolbar.txtSymbol_times": "乘法符號", + "DE.Controllers.Toolbar.txtSymbol_uparrow": "向上箭頭", "DE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", - "DE.Controllers.Toolbar.txtSymbol_varepsilon": "Varepsilon", - "DE.Controllers.Toolbar.txtSymbol_varphi": "Varphi", - "DE.Controllers.Toolbar.txtSymbol_varpi": "Varpi", - "DE.Controllers.Toolbar.txtSymbol_varrho": "Varrho", - "DE.Controllers.Toolbar.txtSymbol_varsigma": "Varsigma", - "DE.Controllers.Toolbar.txtSymbol_vartheta": "Vartheta", - "DE.Controllers.Toolbar.txtSymbol_vdots": "Vdots", - "DE.Controllers.Toolbar.txtSymbol_xsi": "Xi", - "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", - "DE.Controllers.Viewport.textFitPage": "調整至頁面", - "DE.Controllers.Viewport.textFitWidth": "調整至寬度", - "DE.Controllers.Viewport.txtDarkMode": "夜間模式", + "DE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon變體", + "DE.Controllers.Toolbar.txtSymbol_varphi": "Phi 變體", + "DE.Controllers.Toolbar.txtSymbol_varpi": "Pi變體", + "DE.Controllers.Toolbar.txtSymbol_varrho": "Rho變體", + "DE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma 變體", + "DE.Controllers.Toolbar.txtSymbol_vartheta": "Θ 變體", + "DE.Controllers.Toolbar.txtSymbol_vdots": "垂直省略號", + "DE.Controllers.Toolbar.txtSymbol_xsi": "希臘字母\"Ξ\"", + "DE.Controllers.Toolbar.txtSymbol_zeta": "ζ", + "DE.Controllers.Viewport.textFitPage": "調整至頁面大小", + "DE.Controllers.Viewport.textFitWidth": "調整至寬度大小", + "DE.Controllers.Viewport.txtDarkMode": "深色模式", "DE.Views.AddNewCaptionLabelDialog.textLabel": "標籤:", "DE.Views.AddNewCaptionLabelDialog.textLabelError": "標籤不能為空。", "DE.Views.BookmarksDialog.textAdd": "新增", @@ -1556,164 +1556,164 @@ "DE.Views.BookmarksDialog.textCopy": "複製", "DE.Views.BookmarksDialog.textDelete": "刪除", "DE.Views.BookmarksDialog.textGetLink": "取得連結", - "DE.Views.BookmarksDialog.textGoto": "到", - "DE.Views.BookmarksDialog.textHidden": "隱藏的書籤", + "DE.Views.BookmarksDialog.textGoto": "前往", + "DE.Views.BookmarksDialog.textHidden": "隱藏書籤", "DE.Views.BookmarksDialog.textLocation": "位置", "DE.Views.BookmarksDialog.textName": "名稱", "DE.Views.BookmarksDialog.textSort": "排序方式", "DE.Views.BookmarksDialog.textTitle": "書籤", - "DE.Views.BookmarksDialog.txtInvalidName": "書籤名稱只能包含字母,數字和下劃線,並且應以字母開頭", + "DE.Views.BookmarksDialog.txtInvalidName": "書籤名稱只能包含字母、數字和底線,且必須以字母開頭", "DE.Views.CaptionDialog.textAdd": "新增標籤", "DE.Views.CaptionDialog.textAfter": "之後", - "DE.Views.CaptionDialog.textBefore": "文字在前", + "DE.Views.CaptionDialog.textBefore": "之前", "DE.Views.CaptionDialog.textCaption": "標題", - "DE.Views.CaptionDialog.textChapter": "本章始於風格", + "DE.Views.CaptionDialog.textChapter": "章節起始樣式", "DE.Views.CaptionDialog.textChapterInc": "包括章節編號", "DE.Views.CaptionDialog.textColon": "冒號", - "DE.Views.CaptionDialog.textDash": "破折號", + "DE.Views.CaptionDialog.textDash": "虛線", "DE.Views.CaptionDialog.textDelete": "刪除標籤", "DE.Views.CaptionDialog.textEquation": "方程式", - "DE.Views.CaptionDialog.textExamples": "示例:表2-A,圖像1.IV", - "DE.Views.CaptionDialog.textExclude": "從標題中排除標籤", - "DE.Views.CaptionDialog.textFigure": "數字", + "DE.Views.CaptionDialog.textExamples": "範例:表格2-A,圖片1.IV", + "DE.Views.CaptionDialog.textExclude": "排除標籤以外的說明文字", + "DE.Views.CaptionDialog.textFigure": "圖表", "DE.Views.CaptionDialog.textHyphen": "連字號", "DE.Views.CaptionDialog.textInsert": "插入", "DE.Views.CaptionDialog.textLabel": "標籤", "DE.Views.CaptionDialog.textLongDash": "長破折號", "DE.Views.CaptionDialog.textNumbering": "編號", "DE.Views.CaptionDialog.textPeriod": "區間", - "DE.Views.CaptionDialog.textSeparator": "使用分隔符號", + "DE.Views.CaptionDialog.textSeparator": "使用分隔符", "DE.Views.CaptionDialog.textTable": "表格", "DE.Views.CaptionDialog.textTitle": "插入標題", "DE.Views.CellsAddDialog.textCol": "欄", "DE.Views.CellsAddDialog.textDown": "游標下方", - "DE.Views.CellsAddDialog.textLeft": "靠左", - "DE.Views.CellsAddDialog.textRight": "靠右", + "DE.Views.CellsAddDialog.textLeft": "向左", + "DE.Views.CellsAddDialog.textRight": "向右", "DE.Views.CellsAddDialog.textRow": "列", "DE.Views.CellsAddDialog.textTitle": "插入多個", "DE.Views.CellsAddDialog.textUp": "游標上方", - "DE.Views.ChartSettings.text3dDepth": "深度(基準的百分比)", - "DE.Views.ChartSettings.text3dHeight": "高度(基準的百分比)", + "DE.Views.ChartSettings.text3dDepth": "深度(相對於基底的百分比)", + "DE.Views.ChartSettings.text3dHeight": "高度(基礎的百分比)", "DE.Views.ChartSettings.text3dRotation": "3D 旋轉", "DE.Views.ChartSettings.textAdvanced": "顯示進階設定", - "DE.Views.ChartSettings.textAutoscale": "自動縮放", + "DE.Views.ChartSettings.textAutoscale": "自動調整比例", "DE.Views.ChartSettings.textChartType": "變更圖表類型", "DE.Views.ChartSettings.textDefault": "預設旋轉", "DE.Views.ChartSettings.textDown": "下", "DE.Views.ChartSettings.textEditData": "編輯資料", "DE.Views.ChartSettings.textHeight": "\n高度", "DE.Views.ChartSettings.textLeft": "左", - "DE.Views.ChartSettings.textNarrow": "窄視角", + "DE.Views.ChartSettings.textNarrow": "視野狹窄", "DE.Views.ChartSettings.textOriginalSize": "實際大小", "DE.Views.ChartSettings.textPerspective": "透視", "DE.Views.ChartSettings.textRight": "右", "DE.Views.ChartSettings.textRightAngle": "直角座標軸", "DE.Views.ChartSettings.textSize": "大小", - "DE.Views.ChartSettings.textStyle": "風格", - "DE.Views.ChartSettings.textUndock": "從面板上卸下", - "DE.Views.ChartSettings.textUp": "上", - "DE.Views.ChartSettings.textWiden": "廣角", + "DE.Views.ChartSettings.textStyle": "樣式", + "DE.Views.ChartSettings.textUndock": "取消固定於面板", + "DE.Views.ChartSettings.textUp": "向上", + "DE.Views.ChartSettings.textWiden": "擴大視野", "DE.Views.ChartSettings.textWidth": "寬度", - "DE.Views.ChartSettings.textWrap": "包覆風格", - "DE.Views.ChartSettings.textX": "X軸旋轉", - "DE.Views.ChartSettings.textY": "Y軸旋轉", - "DE.Views.ChartSettings.txtBehind": "文字置於後方", - "DE.Views.ChartSettings.txtInFront": "文字在前", - "DE.Views.ChartSettings.txtInline": "與文字排列", - "DE.Views.ChartSettings.txtSquare": "正方形", - "DE.Views.ChartSettings.txtThrough": "通過", - "DE.Views.ChartSettings.txtTight": "緊", + "DE.Views.ChartSettings.textWrap": "換行樣式", + "DE.Views.ChartSettings.textX": "X旋轉", + "DE.Views.ChartSettings.textY": "Y旋轉", + "DE.Views.ChartSettings.txtBehind": "文字在後", + "DE.Views.ChartSettings.txtInFront": "置於文字前方", + "DE.Views.ChartSettings.txtInline": "與文字對齊", + "DE.Views.ChartSettings.txtSquare": "方形", + "DE.Views.ChartSettings.txtThrough": "透過", + "DE.Views.ChartSettings.txtTight": "緊密", "DE.Views.ChartSettings.txtTitle": "圖表", "DE.Views.ChartSettings.txtTopAndBottom": "頂部和底部", "DE.Views.ControlSettingsDialog.strGeneral": "一般", "DE.Views.ControlSettingsDialog.textAdd": "新增", - "DE.Views.ControlSettingsDialog.textAppearance": "外貌", + "DE.Views.ControlSettingsDialog.textAppearance": "外觀", "DE.Views.ControlSettingsDialog.textApplyAll": "套用至所有", - "DE.Views.ControlSettingsDialog.textBox": "文字方塊", + "DE.Views.ControlSettingsDialog.textBox": "邊界框", "DE.Views.ControlSettingsDialog.textChange": "編輯", - "DE.Views.ControlSettingsDialog.textCheckbox": "複選框", - "DE.Views.ControlSettingsDialog.textChecked": "選中的符號", + "DE.Views.ControlSettingsDialog.textCheckbox": "核取方塊", + "DE.Views.ControlSettingsDialog.textChecked": "勾選符號", "DE.Views.ControlSettingsDialog.textColor": "顏色", - "DE.Views.ControlSettingsDialog.textCombobox": "組合方塊", + "DE.Views.ControlSettingsDialog.textCombobox": "下拉式方框", "DE.Views.ControlSettingsDialog.textDate": "日期格式", "DE.Views.ControlSettingsDialog.textDelete": "刪除", "DE.Views.ControlSettingsDialog.textDisplayName": "顯示名稱", "DE.Views.ControlSettingsDialog.textDown": "下", - "DE.Views.ControlSettingsDialog.textDropDown": "下拉選單", - "DE.Views.ControlSettingsDialog.textFormat": "以此顯示日期", + "DE.Views.ControlSettingsDialog.textDropDown": "下拉式清單", + "DE.Views.ControlSettingsDialog.textFormat": "以這種方式顯示日期", "DE.Views.ControlSettingsDialog.textLang": "語言", - "DE.Views.ControlSettingsDialog.textLock": "鎖定", + "DE.Views.ControlSettingsDialog.textLock": "鎖定中", "DE.Views.ControlSettingsDialog.textName": "標題", "DE.Views.ControlSettingsDialog.textNone": "無", - "DE.Views.ControlSettingsDialog.textPlaceholder": "預留位置", + "DE.Views.ControlSettingsDialog.textPlaceholder": "佔位符", "DE.Views.ControlSettingsDialog.textShowAs": "顯示為", "DE.Views.ControlSettingsDialog.textSystemColor": "系統", "DE.Views.ControlSettingsDialog.textTag": "標籤", - "DE.Views.ControlSettingsDialog.textTitle": "內容控制項設定", - "DE.Views.ControlSettingsDialog.textUnchecked": "未經檢查的符號", - "DE.Views.ControlSettingsDialog.textUp": "上", + "DE.Views.ControlSettingsDialog.textTitle": "內容控制設定", + "DE.Views.ControlSettingsDialog.textUnchecked": "未勾選符號", + "DE.Views.ControlSettingsDialog.textUp": "向上", "DE.Views.ControlSettingsDialog.textValue": "值", "DE.Views.ControlSettingsDialog.tipChange": "變更符號", - "DE.Views.ControlSettingsDialog.txtLockDelete": "內容控制無法刪除", - "DE.Views.ControlSettingsDialog.txtLockEdit": "內容無法編輯", + "DE.Views.ControlSettingsDialog.txtLockDelete": "無法刪除內容控制", + "DE.Views.ControlSettingsDialog.txtLockEdit": "無法編輯內容", "DE.Views.CrossReferenceDialog.textAboveBelow": "上/下", "DE.Views.CrossReferenceDialog.textBookmark": "書籤", "DE.Views.CrossReferenceDialog.textBookmarkText": "書籤文字", - "DE.Views.CrossReferenceDialog.textCaption": "整個標題", - "DE.Views.CrossReferenceDialog.textEmpty": "請求引用為空。", - "DE.Views.CrossReferenceDialog.textEndnote": "尾註", - "DE.Views.CrossReferenceDialog.textEndNoteNum": "尾註編號", - "DE.Views.CrossReferenceDialog.textEndNoteNumForm": "尾註編號(格式化)", + "DE.Views.CrossReferenceDialog.textCaption": "完整的標題", + "DE.Views.CrossReferenceDialog.textEmpty": "請求參考為空", + "DE.Views.CrossReferenceDialog.textEndnote": "註腳", + "DE.Views.CrossReferenceDialog.textEndNoteNum": "註腳編號", + "DE.Views.CrossReferenceDialog.textEndNoteNumForm": "註腳編號(格式化)", "DE.Views.CrossReferenceDialog.textEquation": "方程式", - "DE.Views.CrossReferenceDialog.textFigure": "數字", + "DE.Views.CrossReferenceDialog.textFigure": "圖表", "DE.Views.CrossReferenceDialog.textFootnote": "註腳", "DE.Views.CrossReferenceDialog.textHeading": "標題", "DE.Views.CrossReferenceDialog.textHeadingNum": "標題編號", - "DE.Views.CrossReferenceDialog.textHeadingNumFull": "標題編號(全文)", - "DE.Views.CrossReferenceDialog.textHeadingNumNo": "標題編號(無內容)", + "DE.Views.CrossReferenceDialog.textHeadingNumFull": "完整內容的標題編號", + "DE.Views.CrossReferenceDialog.textHeadingNumNo": "無內容的標題編號", "DE.Views.CrossReferenceDialog.textHeadingText": "標題文字", "DE.Views.CrossReferenceDialog.textIncludeAbove": "包括上方/下方", "DE.Views.CrossReferenceDialog.textInsert": "插入", - "DE.Views.CrossReferenceDialog.textInsertAs": "用超連結插入", + "DE.Views.CrossReferenceDialog.textInsertAs": "插入超連結", "DE.Views.CrossReferenceDialog.textLabelNum": "僅標籤和編號", "DE.Views.CrossReferenceDialog.textNoteNum": "註腳編號", "DE.Views.CrossReferenceDialog.textNoteNumForm": "註腳編號(格式化)", - "DE.Views.CrossReferenceDialog.textOnlyCaption": "僅字幕文字", + "DE.Views.CrossReferenceDialog.textOnlyCaption": "僅標題文字", "DE.Views.CrossReferenceDialog.textPageNum": "頁碼", "DE.Views.CrossReferenceDialog.textParagraph": "編號項目", "DE.Views.CrossReferenceDialog.textParaNum": "段落編號", - "DE.Views.CrossReferenceDialog.textParaNumFull": "段落編號(全文)", - "DE.Views.CrossReferenceDialog.textParaNumNo": "段落編號(無上下文)", - "DE.Views.CrossReferenceDialog.textSeparate": "用分隔數字", + "DE.Views.CrossReferenceDialog.textParaNumFull": "段落編號(完整內容)", + "DE.Views.CrossReferenceDialog.textParaNumNo": "段落編號(無內容)", + "DE.Views.CrossReferenceDialog.textSeparate": "用...分隔數字", "DE.Views.CrossReferenceDialog.textTable": "表格", "DE.Views.CrossReferenceDialog.textText": "段落文字", "DE.Views.CrossReferenceDialog.textWhich": "對於哪個標題", "DE.Views.CrossReferenceDialog.textWhichBookmark": "對於哪個書籤", - "DE.Views.CrossReferenceDialog.textWhichEndnote": "對於哪個尾註", + "DE.Views.CrossReferenceDialog.textWhichEndnote": "對應哪個章節附註", "DE.Views.CrossReferenceDialog.textWhichHeading": "對於哪個標題", - "DE.Views.CrossReferenceDialog.textWhichNote": "對於哪個腳註", + "DE.Views.CrossReferenceDialog.textWhichNote": "對應哪個註腳", "DE.Views.CrossReferenceDialog.textWhichPara": "對於哪個編號項目", - "DE.Views.CrossReferenceDialog.txtReference": "插入對", - "DE.Views.CrossReferenceDialog.txtTitle": "相互參照", + "DE.Views.CrossReferenceDialog.txtReference": "插入參照至", + "DE.Views.CrossReferenceDialog.txtTitle": "交叉引用", "DE.Views.CrossReferenceDialog.txtType": "參考類型", - "DE.Views.CustomColumnsDialog.textColumns": "列數", - "DE.Views.CustomColumnsDialog.textEqualWidth": "平均分配欄寬", - "DE.Views.CustomColumnsDialog.textSeparator": "欄位分隔線", + "DE.Views.CustomColumnsDialog.textColumns": "欄數", + "DE.Views.CustomColumnsDialog.textEqualWidth": "等寬欄寬", + "DE.Views.CustomColumnsDialog.textSeparator": "欄分隔線", "DE.Views.CustomColumnsDialog.textTitle": "欄", "DE.Views.CustomColumnsDialog.textTitleSpacing": "間距", "DE.Views.CustomColumnsDialog.textWidth": "寬度", - "DE.Views.DateTimeDialog.confirmDefault": "設置{0}的預設格式:“ {1}”", - "DE.Views.DateTimeDialog.textDefault": "設為預設", + "DE.Views.DateTimeDialog.confirmDefault": "設定 {0} 的預設格式為 \"{1}\"", + "DE.Views.DateTimeDialog.textDefault": "設為預設值", "DE.Views.DateTimeDialog.textFormat": "格式", "DE.Views.DateTimeDialog.textLang": "語言", "DE.Views.DateTimeDialog.textUpdate": "自動更新", "DE.Views.DateTimeDialog.txtTitle": "日期和時間", "DE.Views.DocProtection.hintProtectDoc": "受保護的文件", - "DE.Views.DocProtection.txtDocProtectedComment": "文件受到保護。您只能在此文件中插入註解。", - "DE.Views.DocProtection.txtDocProtectedForms": "文件受到保護。您只能在此文件中填寫表單。", - "DE.Views.DocProtection.txtDocProtectedTrack": "文件已由其他使用者保護。您可以編輯此文件,但所有更改都將被追蹤。", - "DE.Views.DocProtection.txtDocProtectedView": "文件受到保護。您只能檢視此文件。", - "DE.Views.DocProtection.txtDocUnlockDescription": "輸入密碼以解除對文件的保護", + "DE.Views.DocProtection.txtDocProtectedComment": "文件已受保護。
您只能在此文件中插入註解。", + "DE.Views.DocProtection.txtDocProtectedForms": "文件已受保護。
您只能填寫此文件中的表單。", + "DE.Views.DocProtection.txtDocProtectedTrack": "文件已受保護。
您可以編輯此文件,但所有更改都將被追蹤。", + "DE.Views.DocProtection.txtDocProtectedView": "文件已受保護。
您只能查看此文件。", + "DE.Views.DocProtection.txtDocUnlockDescription": "請輸入用於解除保護文件的密碼", "DE.Views.DocProtection.txtProtectDoc": "受保護的文件", "DE.Views.DocProtection.txtUnlockTitle": "解除保護文件", "DE.Views.DocumentHolder.aboveText": "以上", @@ -1727,18 +1727,18 @@ "DE.Views.DocumentHolder.alignmentText": "對齊", "DE.Views.DocumentHolder.allLinearText": "全部 - 線性", "DE.Views.DocumentHolder.allProfText": "全部 - 專業", - "DE.Views.DocumentHolder.belowText": "之下", + "DE.Views.DocumentHolder.belowText": "下方", "DE.Views.DocumentHolder.breakBeforeText": "分頁之前", - "DE.Views.DocumentHolder.bulletsText": "項目符和編號", + "DE.Views.DocumentHolder.bulletsText": "項目符號與編號", "DE.Views.DocumentHolder.cellAlignText": "儲存格垂直對齊", "DE.Views.DocumentHolder.cellText": "儲存格", - "DE.Views.DocumentHolder.centerText": "中心", + "DE.Views.DocumentHolder.centerText": "置中", "DE.Views.DocumentHolder.chartText": "圖表進階設定", "DE.Views.DocumentHolder.columnText": "欄", "DE.Views.DocumentHolder.currLinearText": "目前 - 線性", "DE.Views.DocumentHolder.currProfText": "目前 - 專業", - "DE.Views.DocumentHolder.deleteColumnText": "刪除欄位", - "DE.Views.DocumentHolder.deleteRowText": "刪除行列", + "DE.Views.DocumentHolder.deleteColumnText": "刪除欄", + "DE.Views.DocumentHolder.deleteRowText": "刪除列", "DE.Views.DocumentHolder.deleteTableText": "刪除表格", "DE.Views.DocumentHolder.deleteText": "刪除", "DE.Views.DocumentHolder.direct270Text": "向上旋轉文字", @@ -1750,34 +1750,34 @@ "DE.Views.DocumentHolder.editHeaderText": "編輯頁首", "DE.Views.DocumentHolder.editHyperlinkText": "編輯超連結", "DE.Views.DocumentHolder.eqToDisplayText": "預覽更改", - "DE.Views.DocumentHolder.eqToInlineText": "更改為內嵌", - "DE.Views.DocumentHolder.guestText": "來賓帳戶", + "DE.Views.DocumentHolder.eqToInlineText": "變更為內嵌", + "DE.Views.DocumentHolder.guestText": "訪客", "DE.Views.DocumentHolder.hyperlinkText": "超連結", - "DE.Views.DocumentHolder.ignoreAllSpellText": "忽略所有", + "DE.Views.DocumentHolder.ignoreAllSpellText": "全部忽略", "DE.Views.DocumentHolder.ignoreSpellText": "忽略", - "DE.Views.DocumentHolder.imageText": "影像進階設定", - "DE.Views.DocumentHolder.insertColumnLeftText": "欄位以左", - "DE.Views.DocumentHolder.insertColumnRightText": "欄位以右", - "DE.Views.DocumentHolder.insertColumnText": "插入欄位", - "DE.Views.DocumentHolder.insertRowAboveText": "上行", - "DE.Views.DocumentHolder.insertRowBelowText": "下行", - "DE.Views.DocumentHolder.insertRowText": "插入行", + "DE.Views.DocumentHolder.imageText": "圖片進階設定", + "DE.Views.DocumentHolder.insertColumnLeftText": "左欄", + "DE.Views.DocumentHolder.insertColumnRightText": "右欄", + "DE.Views.DocumentHolder.insertColumnText": "插入欄", + "DE.Views.DocumentHolder.insertRowAboveText": "上方列", + "DE.Views.DocumentHolder.insertRowBelowText": "下方列", + "DE.Views.DocumentHolder.insertRowText": "插入列", "DE.Views.DocumentHolder.insertText": "插入", "DE.Views.DocumentHolder.keepLinesText": "保持線條一致", "DE.Views.DocumentHolder.langText": "選擇語言", "DE.Views.DocumentHolder.latexText": "LaTeX", "DE.Views.DocumentHolder.leftText": "左", - "DE.Views.DocumentHolder.loadSpellText": "正在加載變體...", + "DE.Views.DocumentHolder.loadSpellText": "載入變體中...", "DE.Views.DocumentHolder.mergeCellsText": "合併儲存格", "DE.Views.DocumentHolder.moreText": "更多變體...", "DE.Views.DocumentHolder.noSpellVariantsText": "沒有變體", "DE.Views.DocumentHolder.notcriticalErrorTitle": "警告", "DE.Views.DocumentHolder.originalSizeText": "實際大小", "DE.Views.DocumentHolder.paragraphText": "段落", - "DE.Views.DocumentHolder.removeHyperlinkText": "刪除超連結", + "DE.Views.DocumentHolder.removeHyperlinkText": "移除超連結", "DE.Views.DocumentHolder.rightText": "右", - "DE.Views.DocumentHolder.rowText": "行", - "DE.Views.DocumentHolder.saveStyleText": "建立新樣式", + "DE.Views.DocumentHolder.rowText": "列", + "DE.Views.DocumentHolder.saveStyleText": "創建新樣式", "DE.Views.DocumentHolder.selectCellText": "選擇儲存格", "DE.Views.DocumentHolder.selectColumnText": "選擇欄", "DE.Views.DocumentHolder.selectRowText": "選擇列", @@ -1787,66 +1787,66 @@ "DE.Views.DocumentHolder.spellcheckText": "拼字檢查", "DE.Views.DocumentHolder.splitCellsText": "分割儲存格...", "DE.Views.DocumentHolder.splitCellTitleText": "分割儲存格", - "DE.Views.DocumentHolder.strDelete": "刪除簽名", - "DE.Views.DocumentHolder.strDetails": "簽名細節", + "DE.Views.DocumentHolder.strDelete": "移除簽名", + "DE.Views.DocumentHolder.strDetails": "簽名詳細資訊", "DE.Views.DocumentHolder.strSetup": "簽名設定", "DE.Views.DocumentHolder.strSign": "簽名", - "DE.Views.DocumentHolder.styleText": "轉換為風格", + "DE.Views.DocumentHolder.styleText": "格式設定為樣式", "DE.Views.DocumentHolder.tableText": "表格", "DE.Views.DocumentHolder.textAccept": "同意更新", "DE.Views.DocumentHolder.textAlign": "對齊", "DE.Views.DocumentHolder.textArrange": "排列", - "DE.Views.DocumentHolder.textArrangeBack": "下移一層", - "DE.Views.DocumentHolder.textArrangeBackward": "向後傳送", - "DE.Views.DocumentHolder.textArrangeForward": "向前傳送", - "DE.Views.DocumentHolder.textArrangeFront": "上移一層", + "DE.Views.DocumentHolder.textArrangeBack": "傳送到背景", + "DE.Views.DocumentHolder.textArrangeBackward": "向後發送", + "DE.Views.DocumentHolder.textArrangeForward": "向前移動", + "DE.Views.DocumentHolder.textArrangeFront": "置於前景", "DE.Views.DocumentHolder.textCells": "儲存格", - "DE.Views.DocumentHolder.textCol": "刪除整列", + "DE.Views.DocumentHolder.textCol": "刪除整個欄", "DE.Views.DocumentHolder.textContentControls": "內容控制", "DE.Views.DocumentHolder.textContinueNumbering": "繼續編號", "DE.Views.DocumentHolder.textCopy": "複製", - "DE.Views.DocumentHolder.textCrop": "剪裁", + "DE.Views.DocumentHolder.textCrop": "裁剪", "DE.Views.DocumentHolder.textCropFill": "填入", - "DE.Views.DocumentHolder.textCropFit": "切合", + "DE.Views.DocumentHolder.textCropFit": "適應大小", "DE.Views.DocumentHolder.textCut": "剪下", - "DE.Views.DocumentHolder.textDistributeCols": "分配列", - "DE.Views.DocumentHolder.textDistributeRows": "分配行", - "DE.Views.DocumentHolder.textEditControls": "內容控制項設定", + "DE.Views.DocumentHolder.textDistributeCols": "分佈欄", + "DE.Views.DocumentHolder.textDistributeRows": "分佈列", + "DE.Views.DocumentHolder.textEditControls": "內容控制設定", "DE.Views.DocumentHolder.textEditPoints": "編輯點", "DE.Views.DocumentHolder.textEditWrapBoundary": "編輯換行邊界", "DE.Views.DocumentHolder.textFlipH": "水平翻轉", "DE.Views.DocumentHolder.textFlipV": "垂直翻轉", "DE.Views.DocumentHolder.textFollow": "跟隨移動", - "DE.Views.DocumentHolder.textFromFile": "從檔案插入", - "DE.Views.DocumentHolder.textFromStorage": "從儲存位置插入", - "DE.Views.DocumentHolder.textFromUrl": "從 URL", + "DE.Views.DocumentHolder.textFromFile": "從檔案", + "DE.Views.DocumentHolder.textFromStorage": "從儲存空間", + "DE.Views.DocumentHolder.textFromUrl": "從網址", "DE.Views.DocumentHolder.textIndents": "調整清單縮排", "DE.Views.DocumentHolder.textJoinList": "加入上一個列表", - "DE.Views.DocumentHolder.textLeft": "儲存格並向左移", - "DE.Views.DocumentHolder.textNest": "摺疊表格", + "DE.Views.DocumentHolder.textLeft": "向左移動儲存格", + "DE.Views.DocumentHolder.textNest": "巢狀表格", "DE.Views.DocumentHolder.textNextPage": "下一頁", "DE.Views.DocumentHolder.textNumberingValue": "編號值", "DE.Views.DocumentHolder.textPaste": "貼上", "DE.Views.DocumentHolder.textPrevPage": "前一頁", - "DE.Views.DocumentHolder.textRefreshField": "更新段落", - "DE.Views.DocumentHolder.textReject": "駁回更新", - "DE.Views.DocumentHolder.textRemCheckBox": "刪除複選框", - "DE.Views.DocumentHolder.textRemComboBox": "刪除組合框", - "DE.Views.DocumentHolder.textRemDropdown": "刪除下拉菜單", - "DE.Views.DocumentHolder.textRemField": "刪除文字欄位", - "DE.Views.DocumentHolder.textRemove": "刪除", - "DE.Views.DocumentHolder.textRemoveControl": "刪除內容控制", - "DE.Views.DocumentHolder.textRemPicture": "刪除圖片", - "DE.Views.DocumentHolder.textRemRadioBox": "刪除單選按鈕", + "DE.Views.DocumentHolder.textRefreshField": "更新欄位", + "DE.Views.DocumentHolder.textReject": "拒絕變更", + "DE.Views.DocumentHolder.textRemCheckBox": "移除核取方塊", + "DE.Views.DocumentHolder.textRemComboBox": "移除下拉式清單", + "DE.Views.DocumentHolder.textRemDropdown": "移除下拉式選單", + "DE.Views.DocumentHolder.textRemField": "移除文字欄位", + "DE.Views.DocumentHolder.textRemove": "移除", + "DE.Views.DocumentHolder.textRemoveControl": "移除內容控制項", + "DE.Views.DocumentHolder.textRemPicture": "移除圖片", + "DE.Views.DocumentHolder.textRemRadioBox": "移除單選按鈕", "DE.Views.DocumentHolder.textReplace": "取代圖片", "DE.Views.DocumentHolder.textRotate": "旋轉", "DE.Views.DocumentHolder.textRotate270": "逆時針旋轉90°", "DE.Views.DocumentHolder.textRotate90": "順時針旋轉90°", - "DE.Views.DocumentHolder.textRow": "刪除整行", + "DE.Views.DocumentHolder.textRow": "刪除整列", "DE.Views.DocumentHolder.textSaveAsPicture": "另存為圖片", - "DE.Views.DocumentHolder.textSeparateList": "獨立的清單", + "DE.Views.DocumentHolder.textSeparateList": "分隔清單", "DE.Views.DocumentHolder.textSettings": "設定", - "DE.Views.DocumentHolder.textSeveral": "多行/多列", + "DE.Views.DocumentHolder.textSeveral": "多列/多欄", "DE.Views.DocumentHolder.textShapeAlignBottom": "底部對齊", "DE.Views.DocumentHolder.textShapeAlignCenter": "居中對齊", "DE.Views.DocumentHolder.textShapeAlignLeft": "對齊左側", @@ -1860,10 +1860,10 @@ "DE.Views.DocumentHolder.textTOCSettings": "目錄設定", "DE.Views.DocumentHolder.textUndo": "復原", "DE.Views.DocumentHolder.textUpdateAll": "更新整個表格", - "DE.Views.DocumentHolder.textUpdatePages": "只更新頁碼", + "DE.Views.DocumentHolder.textUpdatePages": "僅更新頁碼", "DE.Views.DocumentHolder.textUpdateTOC": "更新目錄", "DE.Views.DocumentHolder.textWrap": "文繞圖", - "DE.Views.DocumentHolder.tipIsLocked": "該元素當前正在由另一個帳戶編輯。", + "DE.Views.DocumentHolder.tipIsLocked": "此元素正在被其他使用者編輯。", "DE.Views.DocumentHolder.toDictionaryText": "新增到字典", "DE.Views.DocumentHolder.txtAddBottom": "新增底部邊框", "DE.Views.DocumentHolder.txtAddFractionBar": "新增分數欄", @@ -1875,13 +1875,13 @@ "DE.Views.DocumentHolder.txtAddTop": "加入上邊框", "DE.Views.DocumentHolder.txtAddVer": "加入垂直線", "DE.Views.DocumentHolder.txtAlignToChar": "與角色對齊", - "DE.Views.DocumentHolder.txtBehind": "文字置於後方", + "DE.Views.DocumentHolder.txtBehind": "文字在後", "DE.Views.DocumentHolder.txtBorderProps": "邊框屬性", "DE.Views.DocumentHolder.txtBottom": "底部", - "DE.Views.DocumentHolder.txtColumnAlign": "欄位對齊", - "DE.Views.DocumentHolder.txtDecreaseArg": "減小參數大小", + "DE.Views.DocumentHolder.txtColumnAlign": "欄對齊", + "DE.Views.DocumentHolder.txtDecreaseArg": "減少參數大小", "DE.Views.DocumentHolder.txtDeleteArg": "刪除參數", - "DE.Views.DocumentHolder.txtDeleteBreak": "刪除手動的斷行", + "DE.Views.DocumentHolder.txtDeleteBreak": "刪除手動分頁", "DE.Views.DocumentHolder.txtDeleteChars": "刪除封閉字元", "DE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "刪除括起來的字元和分隔符號", "DE.Views.DocumentHolder.txtDeleteEq": "刪除方程式", @@ -1891,99 +1891,99 @@ "DE.Views.DocumentHolder.txtDistribVert": "垂直分散對齊", "DE.Views.DocumentHolder.txtEmpty": "(空)", "DE.Views.DocumentHolder.txtFractionLinear": "變更為線性分數", - "DE.Views.DocumentHolder.txtFractionSkewed": "變更為傾斜分數", - "DE.Views.DocumentHolder.txtFractionStacked": "變更為堆積分數", + "DE.Views.DocumentHolder.txtFractionSkewed": "變更為斜角分數", + "DE.Views.DocumentHolder.txtFractionStacked": "變更為堆疊分數", "DE.Views.DocumentHolder.txtGroup": "群組", - "DE.Views.DocumentHolder.txtGroupCharOver": "文字上的群組字元", - "DE.Views.DocumentHolder.txtGroupCharUnder": "文字下的群組字元", + "DE.Views.DocumentHolder.txtGroupCharOver": "字元上方", + "DE.Views.DocumentHolder.txtGroupCharUnder": "字元下方", "DE.Views.DocumentHolder.txtHideBottom": "隱藏底部邊框", - "DE.Views.DocumentHolder.txtHideBottomLimit": "隱藏下限", - "DE.Views.DocumentHolder.txtHideCloseBracket": "隱藏右括號", - "DE.Views.DocumentHolder.txtHideDegree": "隱藏度", + "DE.Views.DocumentHolder.txtHideBottomLimit": "隱藏底部限制", + "DE.Views.DocumentHolder.txtHideCloseBracket": "隱藏閉括號", + "DE.Views.DocumentHolder.txtHideDegree": "隱藏度數", "DE.Views.DocumentHolder.txtHideHor": "隱藏水平線", - "DE.Views.DocumentHolder.txtHideLB": "隱藏左底線", + "DE.Views.DocumentHolder.txtHideLB": "隱藏左下線", "DE.Views.DocumentHolder.txtHideLeft": "隱藏左邊框", - "DE.Views.DocumentHolder.txtHideLT": "隱藏左頂行", - "DE.Views.DocumentHolder.txtHideOpenBracket": "隱藏開口括號", - "DE.Views.DocumentHolder.txtHidePlaceholder": "隱藏預留位置", + "DE.Views.DocumentHolder.txtHideLT": "隱藏左上線", + "DE.Views.DocumentHolder.txtHideOpenBracket": "隱藏開括號", + "DE.Views.DocumentHolder.txtHidePlaceholder": "隱藏佔位符", "DE.Views.DocumentHolder.txtHideRight": "隱藏右邊框", "DE.Views.DocumentHolder.txtHideTop": "隱藏頂部邊框", - "DE.Views.DocumentHolder.txtHideTopLimit": "隱藏最高限額", + "DE.Views.DocumentHolder.txtHideTopLimit": "隱藏頂部限制", "DE.Views.DocumentHolder.txtHideVer": "隱藏垂直線", "DE.Views.DocumentHolder.txtIncreaseArg": "增加參數大小", - "DE.Views.DocumentHolder.txtInFront": "文字在前", - "DE.Views.DocumentHolder.txtInline": "與文字排列", + "DE.Views.DocumentHolder.txtInFront": "置於文字前方", + "DE.Views.DocumentHolder.txtInline": "與文字對齊", "DE.Views.DocumentHolder.txtInsertArgAfter": "在後面插入參數", "DE.Views.DocumentHolder.txtInsertArgBefore": "在前面插入參數", - "DE.Views.DocumentHolder.txtInsertBreak": "插入手動中斷", + "DE.Views.DocumentHolder.txtInsertBreak": "插入手動分頁", "DE.Views.DocumentHolder.txtInsertCaption": "插入標題", - "DE.Views.DocumentHolder.txtInsertEqAfter": "在後面插入方程式", - "DE.Views.DocumentHolder.txtInsertEqBefore": "在前面插入方程式", + "DE.Views.DocumentHolder.txtInsertEqAfter": "在之後插入方程式", + "DE.Views.DocumentHolder.txtInsertEqBefore": "在之前插入方程式", "DE.Views.DocumentHolder.txtKeepTextOnly": "僅保留文字", "DE.Views.DocumentHolder.txtLimitChange": "變更限制位置", "DE.Views.DocumentHolder.txtLimitOver": "文字限制", "DE.Views.DocumentHolder.txtLimitUnder": "文字下的限制", - "DE.Views.DocumentHolder.txtMatchBrackets": "將括號匹配到參數高度", + "DE.Views.DocumentHolder.txtMatchBrackets": "括號與其內容的高度對齊", "DE.Views.DocumentHolder.txtMatrixAlign": "矩陣對齊", - "DE.Views.DocumentHolder.txtOverbar": "槓覆蓋文字", - "DE.Views.DocumentHolder.txtOverwriteCells": "覆蓋儲存格", - "DE.Views.DocumentHolder.txtPasteSourceFormat": "保持來源格式", + "DE.Views.DocumentHolder.txtOverbar": "文字上方橫線", + "DE.Views.DocumentHolder.txtOverwriteCells": "覆寫儲存格", + "DE.Views.DocumentHolder.txtPasteSourceFormat": "保留原始格式", "DE.Views.DocumentHolder.txtPressLink": "按{0}並單擊連結", "DE.Views.DocumentHolder.txtPrintSelection": "列印選擇", - "DE.Views.DocumentHolder.txtRemFractionBar": "刪除分數欄", - "DE.Views.DocumentHolder.txtRemLimit": "取消限制", - "DE.Views.DocumentHolder.txtRemoveAccentChar": "刪除強調字元", + "DE.Views.DocumentHolder.txtRemFractionBar": "移除分數欄", + "DE.Views.DocumentHolder.txtRemLimit": "移除限制", + "DE.Views.DocumentHolder.txtRemoveAccentChar": "刪除強調字符", "DE.Views.DocumentHolder.txtRemoveBar": "移除欄", - "DE.Views.DocumentHolder.txtRemoveWarning": "確定移除此簽名?
這動作無法復原.", - "DE.Views.DocumentHolder.txtRemScripts": "刪除腳本", - "DE.Views.DocumentHolder.txtRemSubscript": "刪除下標", - "DE.Views.DocumentHolder.txtRemSuperscript": "刪除上標", - "DE.Views.DocumentHolder.txtScriptsAfter": "文字後的文字", + "DE.Views.DocumentHolder.txtRemoveWarning": "您是否要刪除此簽名?
此操作無法撤消。", + "DE.Views.DocumentHolder.txtRemScripts": "移除腳本", + "DE.Views.DocumentHolder.txtRemSubscript": "移除下標", + "DE.Views.DocumentHolder.txtRemSuperscript": "移除上標", + "DE.Views.DocumentHolder.txtScriptsAfter": "文字後的腳本", "DE.Views.DocumentHolder.txtScriptsBefore": "文字前的腳本", "DE.Views.DocumentHolder.txtShowBottomLimit": "顯示底限", "DE.Views.DocumentHolder.txtShowCloseBracket": "顯示結束括號", - "DE.Views.DocumentHolder.txtShowDegree": "顯示程度", - "DE.Views.DocumentHolder.txtShowOpenBracket": "顯示開口括號", - "DE.Views.DocumentHolder.txtShowPlaceholder": "顯示預留位置", - "DE.Views.DocumentHolder.txtShowTopLimit": "顯示上限額", - "DE.Views.DocumentHolder.txtSquare": "正方形", + "DE.Views.DocumentHolder.txtShowDegree": "顯示度量單位", + "DE.Views.DocumentHolder.txtShowOpenBracket": "顯示開始括號", + "DE.Views.DocumentHolder.txtShowPlaceholder": "顯示佔位符", + "DE.Views.DocumentHolder.txtShowTopLimit": "顯示頂部限制", + "DE.Views.DocumentHolder.txtSquare": "方形", "DE.Views.DocumentHolder.txtStretchBrackets": "延伸括號", - "DE.Views.DocumentHolder.txtThrough": "通過", - "DE.Views.DocumentHolder.txtTight": "緊", - "DE.Views.DocumentHolder.txtTop": "上方", + "DE.Views.DocumentHolder.txtThrough": "透過", + "DE.Views.DocumentHolder.txtTight": "緊密", + "DE.Views.DocumentHolder.txtTop": "頂部", "DE.Views.DocumentHolder.txtTopAndBottom": "頂部和底部", - "DE.Views.DocumentHolder.txtUnderbar": "文字底線", - "DE.Views.DocumentHolder.txtUngroup": "取消群組", - "DE.Views.DocumentHolder.txtWarnUrl": "這連結可能對您的設備和資料造成損害。
您確定要繼續嗎?", - "DE.Views.DocumentHolder.unicodeText": "Unicode 碼", - "DE.Views.DocumentHolder.updateStyleText": "更新%1風格", + "DE.Views.DocumentHolder.txtUnderbar": "文字下方橫線", + "DE.Views.DocumentHolder.txtUngroup": "取消分組", + "DE.Views.DocumentHolder.txtWarnUrl": "點擊此連結可能對您的設備和資料造成損害。您確定要繼續嗎?", + "DE.Views.DocumentHolder.unicodeText": "Unicode", + "DE.Views.DocumentHolder.updateStyleText": "更新%1樣式", "DE.Views.DocumentHolder.vertAlignText": "垂直對齊", "DE.Views.DropcapSettingsAdvanced.strBorders": "框線和新增", - "DE.Views.DropcapSettingsAdvanced.strDropcap": "插入首字大寫", - "DE.Views.DropcapSettingsAdvanced.strMargins": "邊界", + "DE.Views.DropcapSettingsAdvanced.strDropcap": "首字大寫", + "DE.Views.DropcapSettingsAdvanced.strMargins": "邊框", "DE.Views.DropcapSettingsAdvanced.textAlign": "對齊", "DE.Views.DropcapSettingsAdvanced.textAtLeast": "至少", "DE.Views.DropcapSettingsAdvanced.textAuto": "自動", - "DE.Views.DropcapSettingsAdvanced.textBackColor": "背景色彩", + "DE.Views.DropcapSettingsAdvanced.textBackColor": "背景顏色", "DE.Views.DropcapSettingsAdvanced.textBorderColor": "邊框色彩", - "DE.Views.DropcapSettingsAdvanced.textBorderDesc": "點選圖表或使用按鈕選擇框線", + "DE.Views.DropcapSettingsAdvanced.textBorderDesc": "點擊圖表或使用按鈕選擇邊框", "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "邊框大小", "DE.Views.DropcapSettingsAdvanced.textBottom": "底部", - "DE.Views.DropcapSettingsAdvanced.textCenter": "中心", + "DE.Views.DropcapSettingsAdvanced.textCenter": "置中", "DE.Views.DropcapSettingsAdvanced.textColumn": "欄", "DE.Views.DropcapSettingsAdvanced.textDistance": "與文字的距離", - "DE.Views.DropcapSettingsAdvanced.textExact": "準確", - "DE.Views.DropcapSettingsAdvanced.textFlow": "流程圖", - "DE.Views.DropcapSettingsAdvanced.textFont": "字體", - "DE.Views.DropcapSettingsAdvanced.textFrame": "框", + "DE.Views.DropcapSettingsAdvanced.textExact": "確切地", + "DE.Views.DropcapSettingsAdvanced.textFlow": "流程框架", + "DE.Views.DropcapSettingsAdvanced.textFont": "字型", + "DE.Views.DropcapSettingsAdvanced.textFrame": "框線", "DE.Views.DropcapSettingsAdvanced.textHeight": "高度", "DE.Views.DropcapSettingsAdvanced.textHorizontal": "水平", - "DE.Views.DropcapSettingsAdvanced.textInline": "內聯框架", + "DE.Views.DropcapSettingsAdvanced.textInline": "內嵌框架", "DE.Views.DropcapSettingsAdvanced.textInMargin": "在邊界內", - "DE.Views.DropcapSettingsAdvanced.textInText": "文字內", + "DE.Views.DropcapSettingsAdvanced.textInText": "在文字中", "DE.Views.DropcapSettingsAdvanced.textLeft": "左", - "DE.Views.DropcapSettingsAdvanced.textMargin": "邊界", - "DE.Views.DropcapSettingsAdvanced.textMove": "與文字移動", + "DE.Views.DropcapSettingsAdvanced.textMargin": "邊框", + "DE.Views.DropcapSettingsAdvanced.textMove": "隨文字移動", "DE.Views.DropcapSettingsAdvanced.textNone": "無", "DE.Views.DropcapSettingsAdvanced.textPage": "頁面", "DE.Views.DropcapSettingsAdvanced.textParagraph": "段落", @@ -1994,32 +1994,32 @@ "DE.Views.DropcapSettingsAdvanced.textRowHeight": "行高", "DE.Views.DropcapSettingsAdvanced.textTitle": "插入首字大寫-進階設定", "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "框線-進階設定", - "DE.Views.DropcapSettingsAdvanced.textTop": "上方", + "DE.Views.DropcapSettingsAdvanced.textTop": "頂部", "DE.Views.DropcapSettingsAdvanced.textVertical": "垂直", "DE.Views.DropcapSettingsAdvanced.textWidth": "寬度", - "DE.Views.DropcapSettingsAdvanced.tipFontName": "字體", + "DE.Views.DropcapSettingsAdvanced.tipFontName": "字型", "DE.Views.EditListItemDialog.textDisplayName": "顯示名稱", "DE.Views.EditListItemDialog.textNameError": "顯示名稱不能為空白。", "DE.Views.EditListItemDialog.textValue": "數值", "DE.Views.EditListItemDialog.textValueError": "具有相同數值的項目已存在。", - "DE.Views.FileMenu.btnBackCaption": "打開文件所在位置", + "DE.Views.FileMenu.btnBackCaption": "打開檔案位置", "DE.Views.FileMenu.btnCloseMenuCaption": "關閉選單", "DE.Views.FileMenu.btnCreateNewCaption": "新增", - "DE.Views.FileMenu.btnDownloadCaption": "下載為", + "DE.Views.FileMenu.btnDownloadCaption": "另存為", "DE.Views.FileMenu.btnExitCaption": "關閉", "DE.Views.FileMenu.btnFileOpenCaption": "開啟", - "DE.Views.FileMenu.btnHelpCaption": "幫助", + "DE.Views.FileMenu.btnHelpCaption": "說明", "DE.Views.FileMenu.btnHistoryCaption": "版本歷史", "DE.Views.FileMenu.btnInfoCaption": "文件資訊", "DE.Views.FileMenu.btnPrintCaption": "列印", "DE.Views.FileMenu.btnProtectCaption": "保護", - "DE.Views.FileMenu.btnRecentFilesCaption": "打開最近", + "DE.Views.FileMenu.btnRecentFilesCaption": "最近打開的", "DE.Views.FileMenu.btnRenameCaption": "重新命名", - "DE.Views.FileMenu.btnReturnCaption": "返回到文件", + "DE.Views.FileMenu.btnReturnCaption": "返回文件", "DE.Views.FileMenu.btnRightsCaption": "存取權限", "DE.Views.FileMenu.btnSaveAsCaption": "另存為", - "DE.Views.FileMenu.btnSaveCaption": "存檔", - "DE.Views.FileMenu.btnSaveCopyAsCaption": "另存新檔為", + "DE.Views.FileMenu.btnSaveCaption": "儲存", + "DE.Views.FileMenu.btnSaveCopyAsCaption": "另存副本", "DE.Views.FileMenu.btnSettingsCaption": "進階設定", "DE.Views.FileMenu.btnToEditCaption": "編輯文件", "DE.Views.FileMenu.textDownload": "下載", @@ -2031,281 +2031,281 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "應用程式", "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "作者", "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "變更存取權限", - "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "註解", - "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "已建立", + "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "評論", + "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "已創建", "DE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo": "文件資訊", - "DE.Views.FileMenuPanels.DocumentInfo.txtFastWV": "快速Web預覽", + "DE.Views.FileMenuPanels.DocumentInfo.txtFastWV": "快速網頁檢視", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "載入中...", - "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "最後修改者", - "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "上一次更改", - "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "沒有", + "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "上次修改者", + "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "上次修改時間", + "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "否", "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "擁有者", - "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "頁", + "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "頁數", "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "頁面大小", - "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "段落", + "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "段落數", "DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer": "PDF產生器", - "DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged": "已標記為PDF", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged": "已標記的PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF版本", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "位置", - "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "有權利的人", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "帶空格的符號", + "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "擁有權限的人", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "字元數(含空白)", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "統計", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "主旨", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "符號", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "字元數(不含空白)", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "標籤", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "標題", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "\n已上傳", - "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "文字", + "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "字數", "DE.Views.FileMenuPanels.DocumentInfo.txtYes": "是", "DE.Views.FileMenuPanels.DocumentRights.txtAccessRights": "存取權限", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "變更存取權限", - "DE.Views.FileMenuPanels.DocumentRights.txtRights": "有權利的人", + "DE.Views.FileMenuPanels.DocumentRights.txtRights": "擁有權限的人", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "警告", "DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "帶密碼", "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "受保護的文件", "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "帶簽名", - "DE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature": "已將有效簽名加入文件。
該文件受到編輯保護。", - "DE.Views.FileMenuPanels.ProtectDoc.txtAddSignature": "添加無形的數位簽章以確保文件的完整性", + "DE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature": "有效簽名已添加到文件中。文件已受到編輯保護。", + "DE.Views.FileMenuPanels.ProtectDoc.txtAddSignature": "通過添加不可見的數位簽名確保文件的完整性", "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "編輯文件", - "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "編輯將刪除文檔中的簽名。
確定要繼續嗎?", - "DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "本文件已受密碼保護", - "DE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument": "使用密碼加密此文件", + "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "編輯將從文件中刪除簽名
是否繼續?", + "DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "此文件已受到密碼保護。", + "DE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument": "使用密碼對該文件進行加密", "DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "該文件需要簽名。", - "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "有效簽名已增加到文件檔中。該文件檔受到保護,無法編輯。", - "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "文檔中的某些數字簽名無效或無法驗證。該文檔受到保護,無法編輯。", - "DE.Views.FileMenuPanels.ProtectDoc.txtView": "查看簽名", + "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "有效簽名已添加到文件中。文件已受到編輯保護。", + "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "文件中的一些數位簽章無效或無法驗證。該文件受到保護,無法編輯。", + "DE.Views.FileMenuPanels.ProtectDoc.txtView": "檢視簽署", "DE.Views.FileMenuPanels.Settings.okButtonText": "套用", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "共同編輯模式", "DE.Views.FileMenuPanels.Settings.strFast": "快速", - "DE.Views.FileMenuPanels.Settings.strFontRender": "字體提示", - "DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "忽略大寫單詞", + "DE.Views.FileMenuPanels.Settings.strFontRender": "字型微調", + "DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "忽略大寫字詞", "DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "忽略帶數字的單詞", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "巨集設定", - "DE.Views.FileMenuPanels.Settings.strPasteButton": "粘貼內容時顯示“粘貼選項”按鈕", + "DE.Views.FileMenuPanels.Settings.strPasteButton": "貼上內容時顯示\"貼上選項\"按鈕", "DE.Views.FileMenuPanels.Settings.strShowChanges": "即時共同編輯設定更新", - "DE.Views.FileMenuPanels.Settings.strShowComments": "在內文中顯示註釋", - "DE.Views.FileMenuPanels.Settings.strShowOthersChanges": "顯示其他用戶的更改", + "DE.Views.FileMenuPanels.Settings.strShowComments": "在文字中顯示註解", + "DE.Views.FileMenuPanels.Settings.strShowOthersChanges": "顯示其他使用者的變更", "DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "顯示已解決的註釋", "DE.Views.FileMenuPanels.Settings.strStrict": "嚴格", "DE.Views.FileMenuPanels.Settings.strTheme": "介面主題", "DE.Views.FileMenuPanels.Settings.strUnit": "測量單位", - "DE.Views.FileMenuPanels.Settings.strZoom": "預設縮放", + "DE.Views.FileMenuPanels.Settings.strZoom": "預設縮放值", "DE.Views.FileMenuPanels.Settings.text10Minutes": "每10分鐘", "DE.Views.FileMenuPanels.Settings.text30Minutes": "每30分鐘", "DE.Views.FileMenuPanels.Settings.text5Minutes": "每5分鐘", - "DE.Views.FileMenuPanels.Settings.text60Minutes": "每一小時", + "DE.Views.FileMenuPanels.Settings.text60Minutes": "每小時", "DE.Views.FileMenuPanels.Settings.textAlignGuides": "對齊指南", "DE.Views.FileMenuPanels.Settings.textAutoRecover": "自動恢復", - "DE.Views.FileMenuPanels.Settings.textAutoSave": "自動存檔", + "DE.Views.FileMenuPanels.Settings.textAutoSave": "自動儲存", "DE.Views.FileMenuPanels.Settings.textDisabled": "已停用", "DE.Views.FileMenuPanels.Settings.textForceSave": "儲存所有歷史版本到伺服器", - "DE.Views.FileMenuPanels.Settings.textMinute": "每一分鐘", - "DE.Views.FileMenuPanels.Settings.textOldVersions": "儲存為DOCX時,使文件與舊版MS Word兼容", + "DE.Views.FileMenuPanels.Settings.textMinute": "每分鐘", + "DE.Views.FileMenuPanels.Settings.textOldVersions": "將文件保存為DOCX格式時,使其與舊版MS Word兼容", "DE.Views.FileMenuPanels.Settings.txtAdvancedSettings": "進階設定", - "DE.Views.FileMenuPanels.Settings.txtAll": "查看全部", - "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "自動更正選項...", - "DE.Views.FileMenuPanels.Settings.txtCacheMode": "預設緩存模式", - "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "點擊氣球而展示", - "DE.Views.FileMenuPanels.Settings.txtChangesTip": "懸停在工具提示而展示", + "DE.Views.FileMenuPanels.Settings.txtAll": "檢視全部", + "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "自動校正選項...", + "DE.Views.FileMenuPanels.Settings.txtCacheMode": "預設暫存模式", + "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "點擊後,以球形文字顯示修訂", + "DE.Views.FileMenuPanels.Settings.txtChangesTip": "游標放在修訂內容上時,以提示框顯示", "DE.Views.FileMenuPanels.Settings.txtCm": "公分", "DE.Views.FileMenuPanels.Settings.txtCollaboration": "共同編輯", - "DE.Views.FileMenuPanels.Settings.txtDarkMode": "開啟文件夜間模式", + "DE.Views.FileMenuPanels.Settings.txtDarkMode": "開啟文件暗黑模式", "DE.Views.FileMenuPanels.Settings.txtEditingSaving": "編輯並儲存", - "DE.Views.FileMenuPanels.Settings.txtFastTip": "實時共同編輯,所有變更將自動儲存。", - "DE.Views.FileMenuPanels.Settings.txtFitPage": "調整至頁面", - "DE.Views.FileMenuPanels.Settings.txtFitWidth": "調整至寬度", - "DE.Views.FileMenuPanels.Settings.txtHieroglyphs": "特殊符號", - "DE.Views.FileMenuPanels.Settings.txtInch": "吋", - "DE.Views.FileMenuPanels.Settings.txtLast": "查看最後", - "DE.Views.FileMenuPanels.Settings.txtMac": "作為OS X", - "DE.Views.FileMenuPanels.Settings.txtNative": "本機", - "DE.Views.FileMenuPanels.Settings.txtNone": "查看無", - "DE.Views.FileMenuPanels.Settings.txtProofing": "打樣", + "DE.Views.FileMenuPanels.Settings.txtFastTip": "即時共同編輯。所有更改都會自動儲存", + "DE.Views.FileMenuPanels.Settings.txtFitPage": "調整至頁面大小", + "DE.Views.FileMenuPanels.Settings.txtFitWidth": "調整至寬度大小", + "DE.Views.FileMenuPanels.Settings.txtHieroglyphs": "象形文字", + "DE.Views.FileMenuPanels.Settings.txtInch": "英寸", + "DE.Views.FileMenuPanels.Settings.txtLast": "檢視最後", + "DE.Views.FileMenuPanels.Settings.txtMac": "參照 OS X", + "DE.Views.FileMenuPanels.Settings.txtNative": "參照本機", + "DE.Views.FileMenuPanels.Settings.txtNone": "不檢視", + "DE.Views.FileMenuPanels.Settings.txtProofing": "校對", "DE.Views.FileMenuPanels.Settings.txtPt": "點", "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "在編輯器標頭中顯示快速列印按鈕", - "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "文件將由最後選取或預設的印表機列印。", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "文件將被列印在上次選擇的或預設的印表機上。", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "全部啟用", - "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "不用提示啟用全部巨集", - "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "顯示追蹤修訂", + "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "啟用巨集時不通知", + "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "顯示追蹤更改", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "拼字檢查", - "DE.Views.FileMenuPanels.Settings.txtStopMacros": "全部停用", - "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "不用提示停用全部巨集", - "DE.Views.FileMenuPanels.Settings.txtStrictTip": "使用儲存鍵來同步你和其他用戶的變更", - "DE.Views.FileMenuPanels.Settings.txtUseAltKey": "使用Alt鍵來操控用戶介面", - "DE.Views.FileMenuPanels.Settings.txtUseOptionKey": "使用Option鍵來操控用戶介面", + "DE.Views.FileMenuPanels.Settings.txtStopMacros": "停用全部", + "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "停用巨集時不通知", + "DE.Views.FileMenuPanels.Settings.txtStrictTip": "使用「儲存」按鈕同步您和其他人所做的更改", + "DE.Views.FileMenuPanels.Settings.txtUseAltKey": "使用 Alt 鍵使用鍵盤瀏覽使用者介面", + "DE.Views.FileMenuPanels.Settings.txtUseOptionKey": "使用 Option 鍵使用鍵盤瀏覽使用者介面", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "顯示通知", - "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "以提示停用全部巨集", - "DE.Views.FileMenuPanels.Settings.txtWin": "作為Windows", - "DE.Views.FileMenuPanels.Settings.txtWorkspace": "工作空間", - "DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs": "下載為", + "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "停用巨集時通知", + "DE.Views.FileMenuPanels.Settings.txtWin": "參照 Windows", + "DE.Views.FileMenuPanels.Settings.txtWorkspace": "工作區", + "DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs": "另存為", "DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs": "另存新檔為", "DE.Views.FormSettings.textAlways": "永遠", "DE.Views.FormSettings.textAnyone": "任何人", - "DE.Views.FormSettings.textAspect": "鎖定寬高比", + "DE.Views.FormSettings.textAspect": "鎖定長寬比", "DE.Views.FormSettings.textAtLeast": "至少", "DE.Views.FormSettings.textAuto": "自動", - "DE.Views.FormSettings.textAutofit": "自動調整", - "DE.Views.FormSettings.textBackgroundColor": "背景色彩", - "DE.Views.FormSettings.textCheckbox": "複選框", - "DE.Views.FormSettings.textCheckDefault": "核取方塊預設為已選取", + "DE.Views.FormSettings.textAutofit": "自動調整大小", + "DE.Views.FormSettings.textBackgroundColor": "背景顏色", + "DE.Views.FormSettings.textCheckbox": "核取方塊", + "DE.Views.FormSettings.textCheckDefault": "核取方塊預設為已勾選", "DE.Views.FormSettings.textColor": "邊框色彩", - "DE.Views.FormSettings.textComb": "文字組合", - "DE.Views.FormSettings.textCombobox": "組合框", + "DE.Views.FormSettings.textComb": "字符組合", + "DE.Views.FormSettings.textCombobox": "下拉式方框", "DE.Views.FormSettings.textComplex": "複雜字段", - "DE.Views.FormSettings.textConnected": "段落已連結", + "DE.Views.FormSettings.textConnected": "已連結的欄位", "DE.Views.FormSettings.textCreditCard": "信用卡號碼(例如 4111-1111-1111-1111)", "DE.Views.FormSettings.textDateField": "日期和時間欄位", - "DE.Views.FormSettings.textDateFormat": "以此顯示日期", + "DE.Views.FormSettings.textDateFormat": "以這種方式顯示日期", "DE.Views.FormSettings.textDefValue": "預設值", "DE.Views.FormSettings.textDelete": "刪除", "DE.Views.FormSettings.textDigits": "數字", "DE.Views.FormSettings.textDisconnect": "斷線", - "DE.Views.FormSettings.textDropDown": "下拉式", - "DE.Views.FormSettings.textExact": "準確的", + "DE.Views.FormSettings.textDropDown": "下拉式選單", + "DE.Views.FormSettings.textExact": "確切地", "DE.Views.FormSettings.textField": "文字段落", - "DE.Views.FormSettings.textFillRoles": "誰需要填寫?", - "DE.Views.FormSettings.textFixed": "固定欄位大小", + "DE.Views.FormSettings.textFillRoles": "誰需要填寫這個?", + "DE.Views.FormSettings.textFixed": "固定大小欄位", "DE.Views.FormSettings.textFormat": "格式", "DE.Views.FormSettings.textFormatSymbols": "允許的符號", - "DE.Views.FormSettings.textFromFile": "從檔案插入", - "DE.Views.FormSettings.textFromStorage": "從儲存位置插入", - "DE.Views.FormSettings.textFromUrl": "從 URL", - "DE.Views.FormSettings.textGroupKey": "群組金鑰", + "DE.Views.FormSettings.textFromFile": "從檔案", + "DE.Views.FormSettings.textFromStorage": "從儲存空間", + "DE.Views.FormSettings.textFromUrl": "從網址", + "DE.Views.FormSettings.textGroupKey": "群組密鑰", "DE.Views.FormSettings.textImage": "圖像", - "DE.Views.FormSettings.textKey": "鍵", + "DE.Views.FormSettings.textKey": "密鑰", "DE.Views.FormSettings.textLang": "語言", "DE.Views.FormSettings.textLetters": "字母", - "DE.Views.FormSettings.textLock": "鎖", + "DE.Views.FormSettings.textLock": "鎖定", "DE.Views.FormSettings.textMask": "任意遮罩", - "DE.Views.FormSettings.textMaxChars": "文字數限制", + "DE.Views.FormSettings.textMaxChars": "字元數限制", "DE.Views.FormSettings.textMulti": "多行文字欄位", "DE.Views.FormSettings.textNever": "永不", - "DE.Views.FormSettings.textNoBorder": "無邊界", + "DE.Views.FormSettings.textNoBorder": "無邊框", "DE.Views.FormSettings.textNone": "無", "DE.Views.FormSettings.textPhone1": "電話號碼(例:(123)456-7890)", "DE.Views.FormSettings.textPhone2": "電話號碼(例:+447911123456)", - "DE.Views.FormSettings.textPlaceholder": "預留位置", - "DE.Views.FormSettings.textRadiobox": "收音機按鈕", - "DE.Views.FormSettings.textRadioDefault": "按鈕預設為已選取", - "DE.Views.FormSettings.textReg": "標準運算式", + "DE.Views.FormSettings.textPlaceholder": "佔位符", + "DE.Views.FormSettings.textRadiobox": "單選按鈕", + "DE.Views.FormSettings.textRadioDefault": "按鈕預設為選中狀態", + "DE.Views.FormSettings.textReg": "正規表示式", "DE.Views.FormSettings.textRequired": "必填", - "DE.Views.FormSettings.textScale": "何時縮放", + "DE.Views.FormSettings.textScale": "何時進行縮放", "DE.Views.FormSettings.textSelectImage": "選擇圖片", "DE.Views.FormSettings.textTag": "標籤", - "DE.Views.FormSettings.textTip": "頂點", + "DE.Views.FormSettings.textTip": "提示", "DE.Views.FormSettings.textTipAdd": "增加新數值", "DE.Views.FormSettings.textTipDelete": "刪除數值", - "DE.Views.FormSettings.textTipDown": "下移", - "DE.Views.FormSettings.textTipUp": "上移", - "DE.Views.FormSettings.textTooBig": "圖像過大", - "DE.Views.FormSettings.textTooSmall": "圖像過小", + "DE.Views.FormSettings.textTipDown": "向下移動", + "DE.Views.FormSettings.textTipUp": "向上移動", + "DE.Views.FormSettings.textTooBig": "圖片過大", + "DE.Views.FormSettings.textTooSmall": "圖片過小", "DE.Views.FormSettings.textUKPassport": "英國護照號碼(例如925665416)", "DE.Views.FormSettings.textUnlock": "解鎖", "DE.Views.FormSettings.textUSSSN": "美國社會安全碼(例如123-45-6789)", - "DE.Views.FormSettings.textValue": "數值選項", + "DE.Views.FormSettings.textValue": "數值項", "DE.Views.FormSettings.textWidth": "儲存格寬度", "DE.Views.FormSettings.textZipCodeUS": "美國郵遞區號(例如92663或92663-1234)", - "DE.Views.FormsTab.capBtnCheckBox": "複選框", - "DE.Views.FormsTab.capBtnComboBox": "組合框", + "DE.Views.FormsTab.capBtnCheckBox": "核取方塊", + "DE.Views.FormsTab.capBtnComboBox": "下拉式方框", "DE.Views.FormsTab.capBtnComplex": "複雜字段", - "DE.Views.FormsTab.capBtnDownloadForm": "下載為pdf", - "DE.Views.FormsTab.capBtnDropDown": "下拉式", - "DE.Views.FormsTab.capBtnEmail": "電子郵件地址", - "DE.Views.FormsTab.capBtnImage": "圖像", + "DE.Views.FormsTab.capBtnDownloadForm": "另存為pdf", + "DE.Views.FormsTab.capBtnDropDown": "下拉式選單", + "DE.Views.FormsTab.capBtnEmail": "電子郵件", + "DE.Views.FormsTab.capBtnImage": "圖片", "DE.Views.FormsTab.capBtnManager": "管理角色", "DE.Views.FormsTab.capBtnNext": "下一欄位", "DE.Views.FormsTab.capBtnPhone": "電話號碼", - "DE.Views.FormsTab.capBtnPrev": "上一欄位", - "DE.Views.FormsTab.capBtnRadioBox": "收音機按鈕", - "DE.Views.FormsTab.capBtnSaveForm": "另存pdf檔", - "DE.Views.FormsTab.capBtnSubmit": "傳送", + "DE.Views.FormsTab.capBtnPrev": "前一個欄位", + "DE.Views.FormsTab.capBtnRadioBox": "單選按鈕", + "DE.Views.FormsTab.capBtnSaveForm": "另存為 PDF", + "DE.Views.FormsTab.capBtnSubmit": "提交", "DE.Views.FormsTab.capBtnText": "文字段落", - "DE.Views.FormsTab.capBtnView": "查看表格", + "DE.Views.FormsTab.capBtnView": "檢視表單", "DE.Views.FormsTab.capCreditCard": "信用卡", "DE.Views.FormsTab.capDateTime": "日期和時間", "DE.Views.FormsTab.capZipCode": "郵遞區號", "DE.Views.FormsTab.textAnyone": "任何人", "DE.Views.FormsTab.textClear": "清除欄位", - "DE.Views.FormsTab.textClearFields": "清除所有段落", + "DE.Views.FormsTab.textClearFields": "清除所有欄位", "DE.Views.FormsTab.textCreateForm": "新增文字段落並建立一個可填寫的 PDF 文件", - "DE.Views.FormsTab.textGotIt": "我瞭解了", - "DE.Views.FormsTab.textHighlight": "強調顯示設定", - "DE.Views.FormsTab.textNoHighlight": "沒有突出顯示", + "DE.Views.FormsTab.textGotIt": "了解", + "DE.Views.FormsTab.textHighlight": "突顯設定", + "DE.Views.FormsTab.textNoHighlight": "無醒目標示", "DE.Views.FormsTab.textRequired": "填寫所有必填欄位以傳送表單。", - "DE.Views.FormsTab.textSubmited": "表格傳送成功", - "DE.Views.FormsTab.tipCheckBox": "插入複選框", + "DE.Views.FormsTab.textSubmited": "表單提交成功", + "DE.Views.FormsTab.tipCheckBox": "插入核取方塊", "DE.Views.FormsTab.tipComboBox": "插入組合框", "DE.Views.FormsTab.tipComplexField": "插入複雜欄位", "DE.Views.FormsTab.tipCreditCard": "插入信用卡號碼", "DE.Views.FormsTab.tipDateTime": "插入日期和時間", "DE.Views.FormsTab.tipDownloadForm": "下載成可編輯PDF文件", - "DE.Views.FormsTab.tipDropDown": "插入下拉列表", + "DE.Views.FormsTab.tipDropDown": "插入下拉清單", "DE.Views.FormsTab.tipEmailField": "插入電子郵件地址", "DE.Views.FormsTab.tipFixedText": "插入固定文字欄位", "DE.Views.FormsTab.tipImageField": "插入圖片", - "DE.Views.FormsTab.tipInlineText": "插入行內文字欄位", + "DE.Views.FormsTab.tipInlineText": "插入內嵌文字欄位", "DE.Views.FormsTab.tipManager": "管理角色", - "DE.Views.FormsTab.tipNextForm": "移至下一欄位", + "DE.Views.FormsTab.tipNextForm": "前往下一個欄位", "DE.Views.FormsTab.tipPhoneField": "插入電話號碼", - "DE.Views.FormsTab.tipPrevForm": "移至上一欄位", - "DE.Views.FormsTab.tipRadioBox": "插入收音機按鈕", + "DE.Views.FormsTab.tipPrevForm": "前往上一個欄位", + "DE.Views.FormsTab.tipRadioBox": "插入單選按鈕", "DE.Views.FormsTab.tipSaveFile": "點擊\"儲存成pdf\"即可轉成可填入的表單", "DE.Views.FormsTab.tipSaveForm": "儲存一份可以填寫的 PDF 檔案", - "DE.Views.FormsTab.tipSubmit": "傳送表格", + "DE.Views.FormsTab.tipSubmit": "提交表單", "DE.Views.FormsTab.tipTextField": "插入文字欄位", - "DE.Views.FormsTab.tipViewForm": "查看表格", + "DE.Views.FormsTab.tipViewForm": "檢視表單", "DE.Views.FormsTab.tipZipCode": "插入郵遞區號", "DE.Views.FormsTab.txtFixedDesc": "插入固定文字欄位", "DE.Views.FormsTab.txtFixedText": "固定", - "DE.Views.FormsTab.txtInlineDesc": "插入行內文字欄位", - "DE.Views.FormsTab.txtInlineText": "同一行", - "DE.Views.FormsTab.txtUntitled": "無標題", + "DE.Views.FormsTab.txtInlineDesc": "插入內嵌文字欄位", + "DE.Views.FormsTab.txtInlineText": "內嵌", + "DE.Views.FormsTab.txtUntitled": "未命名", "DE.Views.HeaderFooterSettings.textBottomCenter": "底部中間", "DE.Views.HeaderFooterSettings.textBottomLeft": "左下方", - "DE.Views.HeaderFooterSettings.textBottomPage": "頁底", - "DE.Views.HeaderFooterSettings.textBottomRight": "右下方", + "DE.Views.HeaderFooterSettings.textBottomPage": "頁面底部", + "DE.Views.HeaderFooterSettings.textBottomRight": "底部右側", "DE.Views.HeaderFooterSettings.textDiffFirst": "首頁不同", - "DE.Views.HeaderFooterSettings.textDiffOdd": "單/雙數頁不同", - "DE.Views.HeaderFooterSettings.textFrom": "開始", - "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "底部的頁腳", - "DE.Views.HeaderFooterSettings.textHeaderFromTop": "標頭從上方", - "DE.Views.HeaderFooterSettings.textInsertCurrent": "插入到當前位置", + "DE.Views.HeaderFooterSettings.textDiffOdd": "不同的奇數和偶數頁", + "DE.Views.HeaderFooterSettings.textFrom": "從...開始", + "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "頁尾距底部", + "DE.Views.HeaderFooterSettings.textHeaderFromTop": "頁首距離上方", + "DE.Views.HeaderFooterSettings.textInsertCurrent": "插入至目前位置", "DE.Views.HeaderFooterSettings.textOptions": "選項", "DE.Views.HeaderFooterSettings.textPageNum": "插入頁碼", - "DE.Views.HeaderFooterSettings.textPageNumbering": "頁編碼", + "DE.Views.HeaderFooterSettings.textPageNumbering": "頁碼編號", "DE.Views.HeaderFooterSettings.textPosition": "位置", - "DE.Views.HeaderFooterSettings.textPrev": "從上個部份繼續", - "DE.Views.HeaderFooterSettings.textSameAs": "連接到上一個", - "DE.Views.HeaderFooterSettings.textTopCenter": "頂部中心", - "DE.Views.HeaderFooterSettings.textTopLeft": "左上方", - "DE.Views.HeaderFooterSettings.textTopPage": "頁面頂部", - "DE.Views.HeaderFooterSettings.textTopRight": "右上", - "DE.Views.HyperlinkSettingsDialog.textDefault": "所選文字片段", + "DE.Views.HeaderFooterSettings.textPrev": "從前一節繼續", + "DE.Views.HeaderFooterSettings.textSameAs": "連結到前一個", + "DE.Views.HeaderFooterSettings.textTopCenter": "頂部中央", + "DE.Views.HeaderFooterSettings.textTopLeft": "頂部左側", + "DE.Views.HeaderFooterSettings.textTopPage": "頁首", + "DE.Views.HeaderFooterSettings.textTopRight": "頂部右側", + "DE.Views.HyperlinkSettingsDialog.textDefault": "選擇的文字片段", "DE.Views.HyperlinkSettingsDialog.textDisplay": "顯示", "DE.Views.HyperlinkSettingsDialog.textExternal": "外部連結", "DE.Views.HyperlinkSettingsDialog.textInternal": "放置在文件中", "DE.Views.HyperlinkSettingsDialog.textTitle": "超連結設置", - "DE.Views.HyperlinkSettingsDialog.textTooltip": "屏幕提示文字", + "DE.Views.HyperlinkSettingsDialog.textTooltip": "工具提示文字", "DE.Views.HyperlinkSettingsDialog.textUrl": "連結至", - "DE.Views.HyperlinkSettingsDialog.txtBeginning": "文件的開頭", + "DE.Views.HyperlinkSettingsDialog.txtBeginning": "文件開頭", "DE.Views.HyperlinkSettingsDialog.txtBookmarks": "書籤", - "DE.Views.HyperlinkSettingsDialog.txtEmpty": "這是必填欄", - "DE.Views.HyperlinkSettingsDialog.txtHeadings": "頁首", - "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "此段落應為“ http://www.example.com”格式的網址", - "DE.Views.HyperlinkSettingsDialog.txtSizeLimit": "此欄位限2083字元", + "DE.Views.HyperlinkSettingsDialog.txtEmpty": "此欄位為必填欄位", + "DE.Views.HyperlinkSettingsDialog.txtHeadings": "標題", + "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "此欄位應為符合「http://www.example.com」格式的網址。", + "DE.Views.HyperlinkSettingsDialog.txtSizeLimit": "此欄位的限制為 2083 個字元。", "DE.Views.HyphenationDialog.textAuto": "自動斷字功能", "DE.Views.ImageSettings.textAdvanced": "顯示進階設定", - "DE.Views.ImageSettings.textCrop": "剪裁", + "DE.Views.ImageSettings.textCrop": "裁剪", "DE.Views.ImageSettings.textCropFill": "填入", - "DE.Views.ImageSettings.textCropFit": "調整", - "DE.Views.ImageSettings.textCropToShape": "剪裁成圖形", + "DE.Views.ImageSettings.textCropFit": "適應大小", + "DE.Views.ImageSettings.textCropToShape": "裁剪為形狀", "DE.Views.ImageSettings.textEdit": "編輯", "DE.Views.ImageSettings.textEditObject": "編輯物件", - "DE.Views.ImageSettings.textFitMargins": "切合至邊框", + "DE.Views.ImageSettings.textFitMargins": "調整至邊界大小", "DE.Views.ImageSettings.textFlip": "翻轉", "DE.Views.ImageSettings.textFromFile": "從檔案", - "DE.Views.ImageSettings.textFromStorage": "從儲存位置插入", - "DE.Views.ImageSettings.textFromUrl": "從 URL", + "DE.Views.ImageSettings.textFromStorage": "從儲存空間", + "DE.Views.ImageSettings.textFromUrl": "從網址", "DE.Views.ImageSettings.textHeight": "高度", "DE.Views.ImageSettings.textHint270": "逆時針旋轉90°", "DE.Views.ImageSettings.textHint90": "順時針旋轉90°", @@ -2318,13 +2318,13 @@ "DE.Views.ImageSettings.textRotation": "旋轉", "DE.Views.ImageSettings.textSize": "大小", "DE.Views.ImageSettings.textWidth": "寬度", - "DE.Views.ImageSettings.textWrap": "文繞圖", - "DE.Views.ImageSettings.txtBehind": "文字置於後方", - "DE.Views.ImageSettings.txtInFront": "文字在前", - "DE.Views.ImageSettings.txtInline": "與文字排列", - "DE.Views.ImageSettings.txtSquare": "正方形", - "DE.Views.ImageSettings.txtThrough": "通過", - "DE.Views.ImageSettings.txtTight": "緊", + "DE.Views.ImageSettings.textWrap": "換行樣式", + "DE.Views.ImageSettings.txtBehind": "文字在後", + "DE.Views.ImageSettings.txtInFront": "置於文字前方", + "DE.Views.ImageSettings.txtInline": "與文字對齊", + "DE.Views.ImageSettings.txtSquare": "方形", + "DE.Views.ImageSettings.txtThrough": "透過", + "DE.Views.ImageSettings.txtTight": "緊密", "DE.Views.ImageSettings.txtTopAndBottom": "頂部和底部", "DE.Views.ImageSettingsAdvanced.strMargins": "文字填充", "DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "絕對", @@ -2335,36 +2335,36 @@ "DE.Views.ImageSettingsAdvanced.textAltTitle": "標題", "DE.Views.ImageSettingsAdvanced.textAngle": "角度", "DE.Views.ImageSettingsAdvanced.textArrows": "箭頭", - "DE.Views.ImageSettingsAdvanced.textAspectRatio": "鎖定縮放比例", - "DE.Views.ImageSettingsAdvanced.textAutofit": "自動調整", + "DE.Views.ImageSettingsAdvanced.textAspectRatio": "鎖定長寬比", + "DE.Views.ImageSettingsAdvanced.textAutofit": "自動調整大小", "DE.Views.ImageSettingsAdvanced.textBeginSize": "起始大小", "DE.Views.ImageSettingsAdvanced.textBeginStyle": "起始樣式", - "DE.Views.ImageSettingsAdvanced.textBelow": "之下", - "DE.Views.ImageSettingsAdvanced.textBevel": "斜角", + "DE.Views.ImageSettingsAdvanced.textBelow": "下方", + "DE.Views.ImageSettingsAdvanced.textBevel": "立體斜角", "DE.Views.ImageSettingsAdvanced.textBottom": "底部", "DE.Views.ImageSettingsAdvanced.textBottomMargin": "下方邊界", "DE.Views.ImageSettingsAdvanced.textBtnWrap": "文字包裝", "DE.Views.ImageSettingsAdvanced.textCapType": "大寫字元樣式型", - "DE.Views.ImageSettingsAdvanced.textCenter": "中心", - "DE.Views.ImageSettingsAdvanced.textCharacter": "文字", + "DE.Views.ImageSettingsAdvanced.textCenter": "置中", + "DE.Views.ImageSettingsAdvanced.textCharacter": "字元", "DE.Views.ImageSettingsAdvanced.textColumn": "欄", "DE.Views.ImageSettingsAdvanced.textDistance": "與文字的距離", "DE.Views.ImageSettingsAdvanced.textEndSize": "結束大小", "DE.Views.ImageSettingsAdvanced.textEndStyle": "結束樣式", - "DE.Views.ImageSettingsAdvanced.textFlat": "平面", - "DE.Views.ImageSettingsAdvanced.textFlipped": "已翻轉", + "DE.Views.ImageSettingsAdvanced.textFlat": "平坦", + "DE.Views.ImageSettingsAdvanced.textFlipped": "翻轉的", "DE.Views.ImageSettingsAdvanced.textHeight": "高度", "DE.Views.ImageSettingsAdvanced.textHorizontal": "水平", "DE.Views.ImageSettingsAdvanced.textHorizontally": "水平地", "DE.Views.ImageSettingsAdvanced.textJoinType": "加入類型", - "DE.Views.ImageSettingsAdvanced.textKeepRatio": "保持比例", + "DE.Views.ImageSettingsAdvanced.textKeepRatio": "比例恆定", "DE.Views.ImageSettingsAdvanced.textLeft": "左", "DE.Views.ImageSettingsAdvanced.textLeftMargin": "左邊距", - "DE.Views.ImageSettingsAdvanced.textLine": "線", + "DE.Views.ImageSettingsAdvanced.textLine": "折線圖", "DE.Views.ImageSettingsAdvanced.textLineStyle": "線型", "DE.Views.ImageSettingsAdvanced.textMargin": "邊框", - "DE.Views.ImageSettingsAdvanced.textMiter": "斜接角", - "DE.Views.ImageSettingsAdvanced.textMove": "用文字移動對象", + "DE.Views.ImageSettingsAdvanced.textMiter": "Miter", + "DE.Views.ImageSettingsAdvanced.textMove": "隨文字移動物件", "DE.Views.ImageSettingsAdvanced.textOptions": "選項", "DE.Views.ImageSettingsAdvanced.textOriginalSize": "實際大小", "DE.Views.ImageSettingsAdvanced.textOverlap": "允許重疊", @@ -2374,340 +2374,340 @@ "DE.Views.ImageSettingsAdvanced.textPositionPc": "相對位置", "DE.Views.ImageSettingsAdvanced.textRelative": "關係到", "DE.Views.ImageSettingsAdvanced.textRelativeWH": "相對的", - "DE.Views.ImageSettingsAdvanced.textResizeFit": "調整形狀以適合文本", + "DE.Views.ImageSettingsAdvanced.textResizeFit": "調整形狀以符合文字大小", "DE.Views.ImageSettingsAdvanced.textRight": "右", "DE.Views.ImageSettingsAdvanced.textRightMargin": "右邊距", - "DE.Views.ImageSettingsAdvanced.textRightOf": "在 - 的右邊", + "DE.Views.ImageSettingsAdvanced.textRightOf": "在右側", "DE.Views.ImageSettingsAdvanced.textRotation": "旋轉", - "DE.Views.ImageSettingsAdvanced.textRound": "圓", + "DE.Views.ImageSettingsAdvanced.textRound": "圓形", "DE.Views.ImageSettingsAdvanced.textShape": "形狀設定", "DE.Views.ImageSettingsAdvanced.textSize": "大小", - "DE.Views.ImageSettingsAdvanced.textSquare": "正方形", - "DE.Views.ImageSettingsAdvanced.textTextBox": "文字框", - "DE.Views.ImageSettingsAdvanced.textTitle": "影像-進階設定", + "DE.Views.ImageSettingsAdvanced.textSquare": "方形", + "DE.Views.ImageSettingsAdvanced.textTextBox": "文字方塊", + "DE.Views.ImageSettingsAdvanced.textTitle": "圖片-進階設定", "DE.Views.ImageSettingsAdvanced.textTitleChart": "圖表-進階設定", "DE.Views.ImageSettingsAdvanced.textTitleShape": "形狀 - 進階設定", - "DE.Views.ImageSettingsAdvanced.textTop": "上方", + "DE.Views.ImageSettingsAdvanced.textTop": "頂部", "DE.Views.ImageSettingsAdvanced.textTopMargin": "頂部邊框", "DE.Views.ImageSettingsAdvanced.textVertical": "垂直", "DE.Views.ImageSettingsAdvanced.textVertically": "垂直地", - "DE.Views.ImageSettingsAdvanced.textWeightArrows": "重量和箭頭", + "DE.Views.ImageSettingsAdvanced.textWeightArrows": "權重與箭頭", "DE.Views.ImageSettingsAdvanced.textWidth": "寬度", - "DE.Views.ImageSettingsAdvanced.textWrap": "文繞圖", - "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "文字置於後方", - "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "文字在前", - "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "與文字排列", - "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "正方形", - "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "通過", - "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "緊", + "DE.Views.ImageSettingsAdvanced.textWrap": "換行樣式", + "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "文字在後", + "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "置於文字前方", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "與文字對齊", + "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "方形", + "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "透過", + "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "緊密", "DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "頂部和底部", "DE.Views.LeftMenu.tipAbout": "關於", "DE.Views.LeftMenu.tipChat": "聊天", "DE.Views.LeftMenu.tipComments": "註解", - "DE.Views.LeftMenu.tipNavigation": "導航", + "DE.Views.LeftMenu.tipNavigation": "導覽", "DE.Views.LeftMenu.tipOutline": "標題", "DE.Views.LeftMenu.tipPageThumbnails": "頁面預覽圖", - "DE.Views.LeftMenu.tipPlugins": "插入增益集", + "DE.Views.LeftMenu.tipPlugins": "外掛程式", "DE.Views.LeftMenu.tipSearch": "搜尋", - "DE.Views.LeftMenu.tipSupport": "反饋與支持", + "DE.Views.LeftMenu.tipSupport": "意見回饋與支援", "DE.Views.LeftMenu.tipTitles": "標題", - "DE.Views.LeftMenu.txtDeveloper": "開發者模式", + "DE.Views.LeftMenu.txtDeveloper": "開發人員模式", "DE.Views.LeftMenu.txtEditor": "文字編輯器", "DE.Views.LeftMenu.txtLimit": "限制存取", "DE.Views.LeftMenu.txtTrial": "試用模式", - "DE.Views.LeftMenu.txtTrialDev": "試用開發人員模式", + "DE.Views.LeftMenu.txtTrialDev": "試用開發者模式", "DE.Views.LineNumbersDialog.textAddLineNumbering": "新增行號", - "DE.Views.LineNumbersDialog.textApplyTo": "套用更改", - "DE.Views.LineNumbersDialog.textContinuous": "連續", - "DE.Views.LineNumbersDialog.textCountBy": "計數", - "DE.Views.LineNumbersDialog.textDocument": "整個文檔", - "DE.Views.LineNumbersDialog.textForward": "這一點向前", - "DE.Views.LineNumbersDialog.textFromText": "來自文字", - "DE.Views.LineNumbersDialog.textNumbering": "編號項目", - "DE.Views.LineNumbersDialog.textRestartEachPage": "重新開始每一頁", - "DE.Views.LineNumbersDialog.textRestartEachSection": "重新開始每個部分", - "DE.Views.LineNumbersDialog.textSection": "當前部分", - "DE.Views.LineNumbersDialog.textStartAt": "開始", + "DE.Views.LineNumbersDialog.textApplyTo": "套用更動至", + "DE.Views.LineNumbersDialog.textContinuous": "連續的", + "DE.Views.LineNumbersDialog.textCountBy": "計數方式", + "DE.Views.LineNumbersDialog.textDocument": "整份文件", + "DE.Views.LineNumbersDialog.textForward": "此處起始", + "DE.Views.LineNumbersDialog.textFromText": "從文字", + "DE.Views.LineNumbersDialog.textNumbering": "編號", + "DE.Views.LineNumbersDialog.textRestartEachPage": "每頁重新開始", + "DE.Views.LineNumbersDialog.textRestartEachSection": "每節重新開始", + "DE.Views.LineNumbersDialog.textSection": "目前章節", + "DE.Views.LineNumbersDialog.textStartAt": "從...開始", "DE.Views.LineNumbersDialog.textTitle": "行號", "DE.Views.LineNumbersDialog.txtAutoText": "自動", "DE.Views.Links.capBtnAddText": "新增文字", "DE.Views.Links.capBtnBookmarks": "書籤", "DE.Views.Links.capBtnCaption": "標題", "DE.Views.Links.capBtnContentsUpdate": "更新表格", - "DE.Views.Links.capBtnCrossRef": "相互參照", + "DE.Views.Links.capBtnCrossRef": "交叉引用", "DE.Views.Links.capBtnInsContents": "目錄", "DE.Views.Links.capBtnInsFootnote": "註腳", "DE.Views.Links.capBtnInsLink": "超連結", - "DE.Views.Links.capBtnTOF": "圖表", - "DE.Views.Links.confirmDeleteFootnotes": "您要刪除所有註腳嗎?", - "DE.Views.Links.confirmReplaceTOF": "您要替換選定的數字表格嗎?", + "DE.Views.Links.capBtnTOF": "圖表目錄", + "DE.Views.Links.confirmDeleteFootnotes": "您是否要刪除所有註腳?", + "DE.Views.Links.confirmReplaceTOF": "您是否要取代所選的圖表目錄?", "DE.Views.Links.mniConvertNote": "轉換所有註解", "DE.Views.Links.mniDelFootnote": "刪除所有註解", "DE.Views.Links.mniInsEndnote": "插入尾註", "DE.Views.Links.mniInsFootnote": "插入註腳", "DE.Views.Links.mniNoteSettings": "筆記設定", - "DE.Views.Links.textContentsRemove": "刪除目錄", + "DE.Views.Links.textContentsRemove": "移除目錄", "DE.Views.Links.textContentsSettings": "設定", - "DE.Views.Links.textConvertToEndnotes": "將所有腳註轉換為尾註", - "DE.Views.Links.textConvertToFootnotes": "將所有尾註轉換為註腳", + "DE.Views.Links.textConvertToEndnotes": "將所有註腳轉換為註尾", + "DE.Views.Links.textConvertToFootnotes": "將所有註尾轉換為註腳", "DE.Views.Links.textGotoEndnote": "轉到尾註", "DE.Views.Links.textGotoFootnote": "前往註腳", - "DE.Views.Links.textSwapNotes": "交換註腳和尾註", + "DE.Views.Links.textSwapNotes": "交換註腳和章節末註", "DE.Views.Links.textUpdateAll": "更新整個表格", - "DE.Views.Links.textUpdatePages": "只更新頁碼", + "DE.Views.Links.textUpdatePages": "僅更新頁碼", "DE.Views.Links.tipAddText": "包含標題在目錄裡", - "DE.Views.Links.tipBookmarks": "創建一個書籤", + "DE.Views.Links.tipBookmarks": "創建書籤", "DE.Views.Links.tipCaption": "插入標題", "DE.Views.Links.tipContents": "插入目錄", "DE.Views.Links.tipContentsUpdate": "更新目錄", - "DE.Views.Links.tipCrossRef": "插入交叉參考", + "DE.Views.Links.tipCrossRef": "插入交叉參照", "DE.Views.Links.tipInsertHyperlink": "新增超連結", "DE.Views.Links.tipNotes": "插入或編輯註腳", "DE.Views.Links.tipTableFigures": "插入圖表", - "DE.Views.Links.tipTableFiguresUpdate": "更新目錄圖", - "DE.Views.Links.titleUpdateTOF": "更新目錄圖", + "DE.Views.Links.tipTableFiguresUpdate": "更新圖表目錄", + "DE.Views.Links.titleUpdateTOF": "更新圖表目錄", "DE.Views.Links.txtDontShowTof": "不在目錄中顯示", - "DE.Views.Links.txtLevel": "等級", - "DE.Views.ListIndentsDialog.textSpace": "空間", - "DE.Views.ListIndentsDialog.textTab": "定位元", - "DE.Views.ListIndentsDialog.textTitle": "有格線的清單", - "DE.Views.ListIndentsDialog.txtFollowBullet": "接續項目符號", - "DE.Views.ListIndentsDialog.txtFollowNumber": "接續編號", + "DE.Views.Links.txtLevel": "層級", + "DE.Views.ListIndentsDialog.textSpace": "空格", + "DE.Views.ListIndentsDialog.textTab": "定位字元", + "DE.Views.ListIndentsDialog.textTitle": "清單縮排", + "DE.Views.ListIndentsDialog.txtFollowBullet": "跟隨項目符號", + "DE.Views.ListIndentsDialog.txtFollowNumber": "跟隨數字", "DE.Views.ListIndentsDialog.txtIndent": "文字縮排", "DE.Views.ListIndentsDialog.txtNone": "無", "DE.Views.ListIndentsDialog.txtPosBullet": "項目符號位置", "DE.Views.ListIndentsDialog.txtPosNumber": "編號位置", "DE.Views.ListSettingsDialog.textAuto": "自動", "DE.Views.ListSettingsDialog.textBold": "粗體", - "DE.Views.ListSettingsDialog.textCenter": "中心", + "DE.Views.ListSettingsDialog.textCenter": "置中", "DE.Views.ListSettingsDialog.textHide": "隱藏設定", "DE.Views.ListSettingsDialog.textItalic": "斜體", "DE.Views.ListSettingsDialog.textLeft": "左", - "DE.Views.ListSettingsDialog.textLevel": "水平", + "DE.Views.ListSettingsDialog.textLevel": "層級", "DE.Views.ListSettingsDialog.textMore": "顯示更多設定", "DE.Views.ListSettingsDialog.textPreview": "預覽", "DE.Views.ListSettingsDialog.textRight": "右", - "DE.Views.ListSettingsDialog.textSelectLevel": "選取階層", - "DE.Views.ListSettingsDialog.textSpace": "空間", - "DE.Views.ListSettingsDialog.textTab": "定位元", + "DE.Views.ListSettingsDialog.textSelectLevel": "選擇層級", + "DE.Views.ListSettingsDialog.textSpace": "空格", + "DE.Views.ListSettingsDialog.textTab": "定位字元", "DE.Views.ListSettingsDialog.txtAlign": "對齊", "DE.Views.ListSettingsDialog.txtAlignAt": "在", - "DE.Views.ListSettingsDialog.txtBullet": "項目點", + "DE.Views.ListSettingsDialog.txtBullet": "項目符號", "DE.Views.ListSettingsDialog.txtColor": "顏色", - "DE.Views.ListSettingsDialog.txtFollow": "接續編號", - "DE.Views.ListSettingsDialog.txtFontName": "字體", - "DE.Views.ListSettingsDialog.txtInclcudeLevel": "包含階層編號", + "DE.Views.ListSettingsDialog.txtFollow": "跟隨數字", + "DE.Views.ListSettingsDialog.txtFontName": "字型", + "DE.Views.ListSettingsDialog.txtInclcudeLevel": "包括層級編號", "DE.Views.ListSettingsDialog.txtIndent": "文字縮排", - "DE.Views.ListSettingsDialog.txtLikeText": "類似文字", + "DE.Views.ListSettingsDialog.txtLikeText": "像文字", "DE.Views.ListSettingsDialog.txtMoreTypes": "更多類型", - "DE.Views.ListSettingsDialog.txtNewBullet": "新項目點", + "DE.Views.ListSettingsDialog.txtNewBullet": "新增項目符號", "DE.Views.ListSettingsDialog.txtNone": "無", "DE.Views.ListSettingsDialog.txtNumFormatString": "數字格式", "DE.Views.ListSettingsDialog.txtRestart": "重啟清單", "DE.Views.ListSettingsDialog.txtSize": "大小", - "DE.Views.ListSettingsDialog.txtStart": "開始", + "DE.Views.ListSettingsDialog.txtStart": "從...開始", "DE.Views.ListSettingsDialog.txtSymbol": "符號", "DE.Views.ListSettingsDialog.txtTabStop": "在...新增定位點", "DE.Views.ListSettingsDialog.txtTitle": "清單設定", "DE.Views.ListSettingsDialog.txtType": "類型", - "DE.Views.ListTypesAdvanced.labelSelect": "選取清單樣式", - "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF格式", - "DE.Views.MailMergeEmailDlg.okButtonText": "傳送", + "DE.Views.ListTypesAdvanced.labelSelect": "選擇清單類型", + "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", + "DE.Views.MailMergeEmailDlg.okButtonText": "發送", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "主題", "DE.Views.MailMergeEmailDlg.textAttachDocx": "附加為DOCX", "DE.Views.MailMergeEmailDlg.textAttachPdf": "附件為PDF", "DE.Views.MailMergeEmailDlg.textFileName": "檔案名稱", "DE.Views.MailMergeEmailDlg.textFormat": "郵件格式", - "DE.Views.MailMergeEmailDlg.textFrom": "從", + "DE.Views.MailMergeEmailDlg.textFrom": "從...來", "DE.Views.MailMergeEmailDlg.textHTML": "HTML", "DE.Views.MailMergeEmailDlg.textMessage": "訊息", "DE.Views.MailMergeEmailDlg.textSubject": "主題行", "DE.Views.MailMergeEmailDlg.textTitle": "傳送到電子郵件", - "DE.Views.MailMergeEmailDlg.textTo": "到", + "DE.Views.MailMergeEmailDlg.textTo": "至", "DE.Views.MailMergeEmailDlg.textWarning": "警告!", - "DE.Views.MailMergeEmailDlg.textWarningMsg": "請注意,點擊\"傳送\"按鈕後就無法停止郵件寄出。", - "DE.Views.MailMergeSettings.downloadMergeTitle": "合併", + "DE.Views.MailMergeEmailDlg.textWarningMsg": "請注意,一旦您按下發送按鈕,郵件無法停止。", + "DE.Views.MailMergeSettings.downloadMergeTitle": "合併中", "DE.Views.MailMergeSettings.errorMailMergeSaveFile": "合併失敗.", "DE.Views.MailMergeSettings.notcriticalErrorTitle": "警告", "DE.Views.MailMergeSettings.textAddRecipients": "首先將一些收件人添加到列表中", "DE.Views.MailMergeSettings.textAll": "所有記錄", - "DE.Views.MailMergeSettings.textCurrent": "當前記錄", - "DE.Views.MailMergeSettings.textDataSource": "數據源", + "DE.Views.MailMergeSettings.textCurrent": "目前記錄", + "DE.Views.MailMergeSettings.textDataSource": "資料來源", "DE.Views.MailMergeSettings.textDocx": "Docx", "DE.Views.MailMergeSettings.textDownload": "下載", - "DE.Views.MailMergeSettings.textEditData": "編輯收件人列表", + "DE.Views.MailMergeSettings.textEditData": "編輯收件者清單", "DE.Views.MailMergeSettings.textEmail": "電子郵件", - "DE.Views.MailMergeSettings.textFrom": "從", - "DE.Views.MailMergeSettings.textGoToMail": "轉到郵件", - "DE.Views.MailMergeSettings.textHighlight": "突出顯示合併字段", - "DE.Views.MailMergeSettings.textInsertField": "插入合併字段", + "DE.Views.MailMergeSettings.textFrom": "從...來", + "DE.Views.MailMergeSettings.textGoToMail": "前往郵件", + "DE.Views.MailMergeSettings.textHighlight": "突顯合併欄位", + "DE.Views.MailMergeSettings.textInsertField": "插入合併欄位", "DE.Views.MailMergeSettings.textMaxRecepients": "最多100個收件人。", "DE.Views.MailMergeSettings.textMerge": "合併", "DE.Views.MailMergeSettings.textMergeFields": "合併欄位", "DE.Views.MailMergeSettings.textMergeTo": "合併到", - "DE.Views.MailMergeSettings.textPdf": "PDF格式", - "DE.Views.MailMergeSettings.textPortal": "存檔", + "DE.Views.MailMergeSettings.textPdf": "PDF", + "DE.Views.MailMergeSettings.textPortal": "儲存", "DE.Views.MailMergeSettings.textPreview": "預覽結果", "DE.Views.MailMergeSettings.textReadMore": "瞭解更多", "DE.Views.MailMergeSettings.textSendMsg": "所有郵件均已準備就緒,將在一段時間內傳送出去。
郵件的傳送速度取決於您的郵件服務。
您可以繼續使用檔案或將其關閉。操作結束後,通知將傳送到您註冊的電子郵件地址。", - "DE.Views.MailMergeSettings.textTo": "到", - "DE.Views.MailMergeSettings.txtFirst": "到第一個記錄", + "DE.Views.MailMergeSettings.textTo": "至", + "DE.Views.MailMergeSettings.txtFirst": "到第一筆記錄", "DE.Views.MailMergeSettings.txtFromToError": "\"從\"值必須小於\"到\"值", - "DE.Views.MailMergeSettings.txtLast": "到最後記錄", - "DE.Views.MailMergeSettings.txtNext": "到下一條記錄", - "DE.Views.MailMergeSettings.txtPrev": "到之前的紀錄", - "DE.Views.MailMergeSettings.txtUntitled": "無標題", + "DE.Views.MailMergeSettings.txtLast": "到最後一筆記錄", + "DE.Views.MailMergeSettings.txtNext": "到下一筆記錄", + "DE.Views.MailMergeSettings.txtPrev": "到前一筆記錄", + "DE.Views.MailMergeSettings.txtUntitled": "未命名", "DE.Views.MailMergeSettings.warnProcessMailMerge": "開始合併失敗", "DE.Views.Navigation.strNavigate": "標題", "DE.Views.Navigation.txtClosePanel": "關閉標題", - "DE.Views.Navigation.txtCollapse": "全部收縮", + "DE.Views.Navigation.txtCollapse": "全部折疊", "DE.Views.Navigation.txtDemote": "降級", - "DE.Views.Navigation.txtEmpty": "文件中沒有標題。
應用一個標題風格,以便出現在目錄中。", + "DE.Views.Navigation.txtEmpty": "文件中沒有任何標題。
請對文字應用標題樣式,以便在目錄中顯示。", "DE.Views.Navigation.txtEmptyItem": "空標題", "DE.Views.Navigation.txtEmptyViewer": "文件中沒有標題。", - "DE.Views.Navigation.txtExpand": "展開全部", - "DE.Views.Navigation.txtExpandToLevel": "擴展到水平", + "DE.Views.Navigation.txtExpand": "全部展開", + "DE.Views.Navigation.txtExpandToLevel": "展開至層級", "DE.Views.Navigation.txtFontSize": "字型大小", "DE.Views.Navigation.txtHeadingAfter": "之後的新標題", "DE.Views.Navigation.txtHeadingBefore": "之前的新標題", - "DE.Views.Navigation.txtLarge": "大", - "DE.Views.Navigation.txtMedium": "中", + "DE.Views.Navigation.txtLarge": "大號", + "DE.Views.Navigation.txtMedium": "中等", "DE.Views.Navigation.txtNewHeading": "新副標題", - "DE.Views.Navigation.txtPromote": "促進", + "DE.Views.Navigation.txtPromote": "提升", "DE.Views.Navigation.txtSelect": "選擇內容", - "DE.Views.Navigation.txtSettings": "標題設置", + "DE.Views.Navigation.txtSettings": "標題設定", "DE.Views.Navigation.txtSmall": "小", - "DE.Views.Navigation.txtWrapHeadings": "包覆長的標題", + "DE.Views.Navigation.txtWrapHeadings": "折行長標題", "DE.Views.NoteSettingsDialog.textApply": "套用", - "DE.Views.NoteSettingsDialog.textApplyTo": "套用更改", - "DE.Views.NoteSettingsDialog.textContinue": "連續", + "DE.Views.NoteSettingsDialog.textApplyTo": "套用更動至", + "DE.Views.NoteSettingsDialog.textContinue": "連續的", "DE.Views.NoteSettingsDialog.textCustom": "自訂標記", "DE.Views.NoteSettingsDialog.textDocEnd": "文件結尾", - "DE.Views.NoteSettingsDialog.textDocument": "整個文檔", - "DE.Views.NoteSettingsDialog.textEachPage": "重新開始每一頁", + "DE.Views.NoteSettingsDialog.textDocument": "整份文件", + "DE.Views.NoteSettingsDialog.textEachPage": "每頁重新開始", "DE.Views.NoteSettingsDialog.textEachSection": "重新開始每個部分", - "DE.Views.NoteSettingsDialog.textEndnote": "尾註", + "DE.Views.NoteSettingsDialog.textEndnote": "註腳", "DE.Views.NoteSettingsDialog.textFootnote": "註腳", "DE.Views.NoteSettingsDialog.textFormat": "格式", "DE.Views.NoteSettingsDialog.textInsert": "插入", "DE.Views.NoteSettingsDialog.textLocation": "位置", "DE.Views.NoteSettingsDialog.textNumbering": "編號", "DE.Views.NoteSettingsDialog.textNumFormat": "數字格式", - "DE.Views.NoteSettingsDialog.textPageBottom": "頁底", - "DE.Views.NoteSettingsDialog.textSectEnd": "本節結束", - "DE.Views.NoteSettingsDialog.textSection": "當前部分", - "DE.Views.NoteSettingsDialog.textStart": "開始", - "DE.Views.NoteSettingsDialog.textTextBottom": "文字之下", + "DE.Views.NoteSettingsDialog.textPageBottom": "頁面底部", + "DE.Views.NoteSettingsDialog.textSectEnd": "章節結尾", + "DE.Views.NoteSettingsDialog.textSection": "目前章節", + "DE.Views.NoteSettingsDialog.textStart": "從...開始", + "DE.Views.NoteSettingsDialog.textTextBottom": "文字下方", "DE.Views.NoteSettingsDialog.textTitle": "筆記設定", "DE.Views.NotesRemoveDialog.textEnd": "刪除所有章節附註", "DE.Views.NotesRemoveDialog.textFoot": "刪除所有註腳", "DE.Views.NotesRemoveDialog.textTitle": "刪除註解", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "警告", "DE.Views.PageMarginsDialog.textBottom": "底部", - "DE.Views.PageMarginsDialog.textGutter": "溝", - "DE.Views.PageMarginsDialog.textGutterPosition": "溝位置", - "DE.Views.PageMarginsDialog.textInside": "內", - "DE.Views.PageMarginsDialog.textLandscape": "橫向方向", + "DE.Views.PageMarginsDialog.textGutter": "裝訂線", + "DE.Views.PageMarginsDialog.textGutterPosition": "裝訂線位置", + "DE.Views.PageMarginsDialog.textInside": "內部", + "DE.Views.PageMarginsDialog.textLandscape": "橫向", "DE.Views.PageMarginsDialog.textLeft": "左", - "DE.Views.PageMarginsDialog.textMirrorMargins": "對應邊距", + "DE.Views.PageMarginsDialog.textMirrorMargins": "鏡像邊界", "DE.Views.PageMarginsDialog.textMultiplePages": "多頁", - "DE.Views.PageMarginsDialog.textNormal": "標準", + "DE.Views.PageMarginsDialog.textNormal": "一般", "DE.Views.PageMarginsDialog.textOrientation": "方向", - "DE.Views.PageMarginsDialog.textOutside": "外", + "DE.Views.PageMarginsDialog.textOutside": "外部", "DE.Views.PageMarginsDialog.textPortrait": "直向方向", "DE.Views.PageMarginsDialog.textPreview": "預覽", "DE.Views.PageMarginsDialog.textRight": "右", "DE.Views.PageMarginsDialog.textTitle": "邊框", - "DE.Views.PageMarginsDialog.textTop": "上方", - "DE.Views.PageMarginsDialog.txtMarginsH": "對於給定的頁面高度,上下邊距太高", - "DE.Views.PageMarginsDialog.txtMarginsW": "給定頁面寬度,左右頁邊距太寬", + "DE.Views.PageMarginsDialog.textTop": "頂部", + "DE.Views.PageMarginsDialog.txtMarginsH": "頂部和底部的邊界對於給定的頁面高度太高了", + "DE.Views.PageMarginsDialog.txtMarginsW": "給定頁面寬度下,左右邊界過寬", "DE.Views.PageSizeDialog.textHeight": "高度", "DE.Views.PageSizeDialog.textPreset": "預設值", "DE.Views.PageSizeDialog.textTitle": "頁面大小", "DE.Views.PageSizeDialog.textWidth": "寬度", "DE.Views.PageSizeDialog.txtCustom": "自訂", - "DE.Views.PageThumbnails.textClosePanel": "關閉預覽圖", - "DE.Views.PageThumbnails.textHighlightVisiblePart": "色彩醒目提示頁面可見部份", + "DE.Views.PageThumbnails.textClosePanel": "關閉頁面縮略圖", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "突顯可見部分頁面", "DE.Views.PageThumbnails.textPageThumbnails": "頁面預覽圖", - "DE.Views.PageThumbnails.textThumbnailsSettings": "預覽圖設定", - "DE.Views.PageThumbnails.textThumbnailsSize": "預覽圖大小", - "DE.Views.ParagraphSettings.strIndent": "縮進", + "DE.Views.PageThumbnails.textThumbnailsSettings": "縮圖設定", + "DE.Views.PageThumbnails.textThumbnailsSize": "縮圖大小", + "DE.Views.ParagraphSettings.strIndent": "縮排", "DE.Views.ParagraphSettings.strIndentsLeftText": "左", "DE.Views.ParagraphSettings.strIndentsRightText": "右", "DE.Views.ParagraphSettings.strIndentsSpecial": "特殊", "DE.Views.ParagraphSettings.strLineHeight": "行間距", "DE.Views.ParagraphSettings.strParagraphSpacing": "段落間距", - "DE.Views.ParagraphSettings.strSomeParagraphSpace": "不要在相同風格的文字段落之間添加間隔", + "DE.Views.ParagraphSettings.strSomeParagraphSpace": "不在相同樣式的段落間增加間距", "DE.Views.ParagraphSettings.strSpacingAfter": "之後", "DE.Views.ParagraphSettings.strSpacingBefore": "之前", "DE.Views.ParagraphSettings.textAdvanced": "顯示進階設定", "DE.Views.ParagraphSettings.textAt": "在", "DE.Views.ParagraphSettings.textAtLeast": "至少", - "DE.Views.ParagraphSettings.textAuto": "多項", - "DE.Views.ParagraphSettings.textBackColor": "背景色彩", - "DE.Views.ParagraphSettings.textExact": "準確", - "DE.Views.ParagraphSettings.textFirstLine": "第一行", - "DE.Views.ParagraphSettings.textHanging": "懸掛式", + "DE.Views.ParagraphSettings.textAuto": "多個", + "DE.Views.ParagraphSettings.textBackColor": "背景顏色", + "DE.Views.ParagraphSettings.textExact": "確切地", + "DE.Views.ParagraphSettings.textFirstLine": "首行縮排", + "DE.Views.ParagraphSettings.textHanging": "懸掛", "DE.Views.ParagraphSettings.textNoneSpecial": "(空)", "DE.Views.ParagraphSettings.txtAutoText": "自動", - "DE.Views.ParagraphSettingsAdvanced.noTabs": "指定的標籤將出現在此段落中", + "DE.Views.ParagraphSettingsAdvanced.noTabs": "指定的標籤將出現在這個欄位中。", "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "全部大寫", "DE.Views.ParagraphSettingsAdvanced.strBorders": "邊框和添入", "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "分頁之前", "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "雙刪除線", - "DE.Views.ParagraphSettingsAdvanced.strIndent": "縮進", + "DE.Views.ParagraphSettingsAdvanced.strIndent": "縮排", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "左", "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "行間距", - "DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "大綱級別", + "DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "大綱層級", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "右", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "之後", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "之前", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "特殊", "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "保持線條一致", - "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "跟著下一個", - "DE.Views.ParagraphSettingsAdvanced.strMargins": "填充物", - "DE.Views.ParagraphSettingsAdvanced.strOrphan": "孤兒控制", - "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "字體", - "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "縮進和間距", + "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "與下一段連在一起", + "DE.Views.ParagraphSettingsAdvanced.strMargins": "內距", + "DE.Views.ParagraphSettingsAdvanced.strOrphan": "孤立控制", + "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "字型", + "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "縮排與間距", "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "換行和分頁符", "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "放置", - "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "小大寫", - "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "不要在相同風格的文字段落之間添加間隔", + "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "小型大寫", + "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "不在相同樣式的段落間增加間距", "DE.Views.ParagraphSettingsAdvanced.strSpacing": "間距", "DE.Views.ParagraphSettingsAdvanced.strStrike": "刪除線", "DE.Views.ParagraphSettingsAdvanced.strSubscript": "下標", "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "上標", - "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "禁止行號", + "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "隱藏行號", "DE.Views.ParagraphSettingsAdvanced.strTabs": "標籤", "DE.Views.ParagraphSettingsAdvanced.textAlign": "對齊", "DE.Views.ParagraphSettingsAdvanced.textAll": "全部", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "至少", - "DE.Views.ParagraphSettingsAdvanced.textAuto": "多項", - "DE.Views.ParagraphSettingsAdvanced.textBackColor": "背景色彩", + "DE.Views.ParagraphSettingsAdvanced.textAuto": "多個", + "DE.Views.ParagraphSettingsAdvanced.textBackColor": "背景顏色", "DE.Views.ParagraphSettingsAdvanced.textBodyText": "基本文字", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "邊框色彩", - "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "點擊圖或使用按鈕選擇邊框並將選定的樣式應用於邊框", + "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "點擊圖表或使用按鈕選擇邊框以套用樣式", "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "邊框大小", "DE.Views.ParagraphSettingsAdvanced.textBottom": "底部", - "DE.Views.ParagraphSettingsAdvanced.textCentered": "置中", + "DE.Views.ParagraphSettingsAdvanced.textCentered": "置中對齊", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "字元間距", - "DE.Views.ParagraphSettingsAdvanced.textContext": "上下文的", + "DE.Views.ParagraphSettingsAdvanced.textContext": "上下文", "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "上下文與推薦", "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "上下文、歷史與推薦", "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "上下文與歷史", "DE.Views.ParagraphSettingsAdvanced.textDefault": "預設定位點", - "DE.Views.ParagraphSettingsAdvanced.textDiscret": "任用的", + "DE.Views.ParagraphSettingsAdvanced.textDiscret": "選擇性", "DE.Views.ParagraphSettingsAdvanced.textEffects": "效果", - "DE.Views.ParagraphSettingsAdvanced.textExact": "準確", - "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "第一行", - "DE.Views.ParagraphSettingsAdvanced.textHanging": "懸掛式", - "DE.Views.ParagraphSettingsAdvanced.textHistorical": "歷史的", + "DE.Views.ParagraphSettingsAdvanced.textExact": "確切地", + "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "首行縮排", + "DE.Views.ParagraphSettingsAdvanced.textHanging": "懸掛", + "DE.Views.ParagraphSettingsAdvanced.textHistorical": "歷史", "DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "歷史與任用的", - "DE.Views.ParagraphSettingsAdvanced.textJustified": "合理的", - "DE.Views.ParagraphSettingsAdvanced.textLeader": "領導", + "DE.Views.ParagraphSettingsAdvanced.textJustified": "兩端對齊", + "DE.Views.ParagraphSettingsAdvanced.textLeader": "導引符", "DE.Views.ParagraphSettingsAdvanced.textLeft": "左", - "DE.Views.ParagraphSettingsAdvanced.textLevel": "水平", - "DE.Views.ParagraphSettingsAdvanced.textLigatures": "連字符號", + "DE.Views.ParagraphSettingsAdvanced.textLevel": "層級", + "DE.Views.ParagraphSettingsAdvanced.textLigatures": "連字", "DE.Views.ParagraphSettingsAdvanced.textNone": "無", "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(空)", "DE.Views.ParagraphSettingsAdvanced.textOpenType": "OpenType 功能", @@ -2729,55 +2729,55 @@ "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "標籤位置", "DE.Views.ParagraphSettingsAdvanced.textTabRight": "右", "DE.Views.ParagraphSettingsAdvanced.textTitle": "段落-進階設定", - "DE.Views.ParagraphSettingsAdvanced.textTop": "上方", - "DE.Views.ParagraphSettingsAdvanced.tipAll": "設定外邊界和所有內線", - "DE.Views.ParagraphSettingsAdvanced.tipBottom": "僅設定底部框線", - "DE.Views.ParagraphSettingsAdvanced.tipInner": "僅設定水平內框線", - "DE.Views.ParagraphSettingsAdvanced.tipLeft": "僅設定左框線", - "DE.Views.ParagraphSettingsAdvanced.tipNone": "設定無邊界", - "DE.Views.ParagraphSettingsAdvanced.tipOuter": "僅設定外部框線", - "DE.Views.ParagraphSettingsAdvanced.tipRight": "僅設定右框線", - "DE.Views.ParagraphSettingsAdvanced.tipTop": "僅設定頂部框線", + "DE.Views.ParagraphSettingsAdvanced.textTop": "頂部", + "DE.Views.ParagraphSettingsAdvanced.tipAll": "設定外框和所有內部線", + "DE.Views.ParagraphSettingsAdvanced.tipBottom": "僅設定底部邊框", + "DE.Views.ParagraphSettingsAdvanced.tipInner": "僅設定水平內部線", + "DE.Views.ParagraphSettingsAdvanced.tipLeft": "僅設定左邊框", + "DE.Views.ParagraphSettingsAdvanced.tipNone": "設定無邊框", + "DE.Views.ParagraphSettingsAdvanced.tipOuter": "僅設定外框", + "DE.Views.ParagraphSettingsAdvanced.tipRight": "僅設定右邊框", + "DE.Views.ParagraphSettingsAdvanced.tipTop": "僅設定上邊框", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "自動", - "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "無框線", + "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "無邊框", "DE.Views.PrintWithPreview.textMarginsLast": "最後自訂", "DE.Views.PrintWithPreview.textMarginsModerate": "中等", - "DE.Views.PrintWithPreview.textMarginsNarrow": "狹窄", - "DE.Views.PrintWithPreview.textMarginsNormal": "標準", - "DE.Views.PrintWithPreview.textMarginsUsNormal": "美國普通", + "DE.Views.PrintWithPreview.textMarginsNarrow": "窄", + "DE.Views.PrintWithPreview.textMarginsNormal": "一般", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "US Normal", "DE.Views.PrintWithPreview.textMarginsWide": "寬", "DE.Views.PrintWithPreview.txtAllPages": "所有頁面", "DE.Views.PrintWithPreview.txtBothSides": "雙面列印", - "DE.Views.PrintWithPreview.txtBothSidesLongDesc": "依長邊翻轉頁面", - "DE.Views.PrintWithPreview.txtBothSidesShortDesc": "依短邊翻轉頁面", + "DE.Views.PrintWithPreview.txtBothSidesLongDesc": "沿長邊翻轉頁面", + "DE.Views.PrintWithPreview.txtBothSidesShortDesc": "沿短邊翻轉頁面", "DE.Views.PrintWithPreview.txtBottom": "底部", "DE.Views.PrintWithPreview.txtCopies": "副本", "DE.Views.PrintWithPreview.txtCurrentPage": "目前頁面", "DE.Views.PrintWithPreview.txtCustom": "自訂", "DE.Views.PrintWithPreview.txtCustomPages": "自訂列印", - "DE.Views.PrintWithPreview.txtLandscape": "景觀", + "DE.Views.PrintWithPreview.txtLandscape": "橫向", "DE.Views.PrintWithPreview.txtLeft": "左", "DE.Views.PrintWithPreview.txtMargins": "邊框", - "DE.Views.PrintWithPreview.txtOf": "之 {0}", + "DE.Views.PrintWithPreview.txtOf": "共 {0} 頁", "DE.Views.PrintWithPreview.txtOneSide": "單面列印", - "DE.Views.PrintWithPreview.txtOneSideDesc": "只印單面", + "DE.Views.PrintWithPreview.txtOneSideDesc": "僅在頁面的一側進行列印", "DE.Views.PrintWithPreview.txtPage": "頁面", "DE.Views.PrintWithPreview.txtPageNumInvalid": "頁碼無效", "DE.Views.PrintWithPreview.txtPageOrientation": "頁面方向", - "DE.Views.PrintWithPreview.txtPages": "頁", + "DE.Views.PrintWithPreview.txtPages": "頁數", "DE.Views.PrintWithPreview.txtPageSize": "頁面大小", "DE.Views.PrintWithPreview.txtPortrait": "肖像", "DE.Views.PrintWithPreview.txtPrint": "打印", - "DE.Views.PrintWithPreview.txtPrintPdf": "以PDF格式列印", + "DE.Views.PrintWithPreview.txtPrintPdf": "列印為 PDF", "DE.Views.PrintWithPreview.txtPrintRange": "列印範圍", "DE.Views.PrintWithPreview.txtPrintSides": "列印面", "DE.Views.PrintWithPreview.txtRight": "右", - "DE.Views.PrintWithPreview.txtSelection": "選拔", - "DE.Views.PrintWithPreview.txtTop": "上方", - "DE.Views.ProtectDialog.textComments": "留言", + "DE.Views.PrintWithPreview.txtSelection": "選擇", + "DE.Views.PrintWithPreview.txtTop": "頂部", + "DE.Views.ProtectDialog.textComments": "評論", "DE.Views.ProtectDialog.textForms": "填寫表單", "DE.Views.ProtectDialog.textReview": "已追蹤的變更", - "DE.Views.ProtectDialog.textView": "沒有變更(唯獨)", + "DE.Views.ProtectDialog.textView": "沒有變更(唯讀)", "DE.Views.ProtectDialog.txtAllow": "僅允許在文件中進行此類編輯", "DE.Views.ProtectDialog.txtIncorrectPwd": "確認密碼不相同", "DE.Views.ProtectDialog.txtLimit": "密碼限制為15字元", @@ -2786,69 +2786,69 @@ "DE.Views.ProtectDialog.txtProtect": "保護", "DE.Views.ProtectDialog.txtRepeat": "重複輸入密碼", "DE.Views.ProtectDialog.txtTitle": "保護", - "DE.Views.ProtectDialog.txtWarning": "警告:如果失去密碼,將無法取回。請妥善保存。", + "DE.Views.ProtectDialog.txtWarning": "警告:如果您遺失或忘記密碼,將無法恢復。請將密碼保存在安全的地方。", "DE.Views.RightMenu.txtChartSettings": "圖表設定", - "DE.Views.RightMenu.txtFormSettings": "表格設定", - "DE.Views.RightMenu.txtHeaderFooterSettings": "標頭和頁腳設定", - "DE.Views.RightMenu.txtImageSettings": "影像設定", + "DE.Views.RightMenu.txtFormSettings": "表單設定", + "DE.Views.RightMenu.txtHeaderFooterSettings": "頁首和頁尾設定", + "DE.Views.RightMenu.txtImageSettings": "圖片設定", "DE.Views.RightMenu.txtMailMergeSettings": "郵件合併設定", "DE.Views.RightMenu.txtParagraphSettings": "段落設定", "DE.Views.RightMenu.txtShapeSettings": "形狀設定", "DE.Views.RightMenu.txtSignatureSettings": "簽名設定", "DE.Views.RightMenu.txtTableSettings": "表格設定", "DE.Views.RightMenu.txtTextArtSettings": "文字藝術設定", - "DE.Views.RoleDeleteDlg.textLabel": "若要刪除此角色,您需要將與其關聯的欄位移至另一個角色。", - "DE.Views.RoleDeleteDlg.textSelect": "選取合併欄位角色", + "DE.Views.RoleDeleteDlg.textLabel": "要刪除此角色,您需要將與之關聯的欄位移至其他角色。", + "DE.Views.RoleDeleteDlg.textSelect": "選擇欄位合併角色", "DE.Views.RoleDeleteDlg.textTitle": "刪除角色", - "DE.Views.RoleEditDlg.errNameExists": "已存在該角色名稱。", + "DE.Views.RoleEditDlg.errNameExists": "已存在具有該名稱的角色。", "DE.Views.RoleEditDlg.textEmptyError": "角色名稱不能為空。", "DE.Views.RoleEditDlg.textName": "角色名稱", "DE.Views.RoleEditDlg.textNameEx": "範例:申請人、用戶、銷售代表", - "DE.Views.RoleEditDlg.textNoHighlight": "沒有突出顯示", + "DE.Views.RoleEditDlg.textNoHighlight": "無醒目標示", "DE.Views.RoleEditDlg.txtTitleEdit": "編輯角色", - "DE.Views.RoleEditDlg.txtTitleNew": "建立新角色", + "DE.Views.RoleEditDlg.txtTitleNew": "创建新角色", "DE.Views.RolesManagerDlg.textAnyone": "任何人", "DE.Views.RolesManagerDlg.textDelete": "刪除", "DE.Views.RolesManagerDlg.textDeleteLast": "您確定要刪除角色 {0} 嗎?
刪除後,將建立預設角色。", "DE.Views.RolesManagerDlg.textDescription": "新增角色並設定填表人接收並簽署文件的順序", "DE.Views.RolesManagerDlg.textDown": "向下移動角色", "DE.Views.RolesManagerDlg.textEdit": "編輯", - "DE.Views.RolesManagerDlg.textEmpty": "目前尚未建立任何角色。
請至少建立一個角色,它將顯示在此欄位中。", - "DE.Views.RolesManagerDlg.textNew": "新", + "DE.Views.RolesManagerDlg.textEmpty": "尚未建立任何角色。
請至少建立一個角色,它將顯示在此欄位中。", + "DE.Views.RolesManagerDlg.textNew": "新增", "DE.Views.RolesManagerDlg.textUp": "向上移動角色", "DE.Views.RolesManagerDlg.txtTitle": "管理角色", - "DE.Views.RolesManagerDlg.warnCantDelete": "您無法刪除該角色,因為它有關聯的欄位。", + "DE.Views.RolesManagerDlg.warnCantDelete": "您無法刪除此角色,因為它有相關聯的欄位。", "DE.Views.RolesManagerDlg.warnDelete": "您確定要刪除角色 {0} 嗎?", "DE.Views.SaveFormDlg.saveButtonText": "儲存", "DE.Views.SaveFormDlg.textAnyone": "任何人", - "DE.Views.SaveFormDlg.textDescription": "在儲存至pdf時,只有具有欄位的角色會被添加到填寫清單中。", + "DE.Views.SaveFormDlg.textDescription": "在保存為PDF時,只有帶有字段的角色才會添加到填充清單中", "DE.Views.SaveFormDlg.textEmpty": "沒有與欄位有關聯的角色。", - "DE.Views.SaveFormDlg.textFill": "填寫清單", + "DE.Views.SaveFormDlg.textFill": "填充清單", "DE.Views.SaveFormDlg.txtTitle": "另存為表單", - "DE.Views.ShapeSettings.strBackground": "背景色彩", + "DE.Views.ShapeSettings.strBackground": "背景顏色", "DE.Views.ShapeSettings.strChange": "變更形狀", "DE.Views.ShapeSettings.strColor": "顏色", "DE.Views.ShapeSettings.strFill": "填入", - "DE.Views.ShapeSettings.strForeground": "前景色", - "DE.Views.ShapeSettings.strPattern": "模式", + "DE.Views.ShapeSettings.strForeground": "前景顏色", + "DE.Views.ShapeSettings.strPattern": "圖案", "DE.Views.ShapeSettings.strShadow": "顯示陰影", "DE.Views.ShapeSettings.strSize": "大小", - "DE.Views.ShapeSettings.strStroke": "筆鋒", + "DE.Views.ShapeSettings.strStroke": "折線圖", "DE.Views.ShapeSettings.strTransparency": "透明度", - "DE.Views.ShapeSettings.strType": "輸入", + "DE.Views.ShapeSettings.strType": "類型", "DE.Views.ShapeSettings.textAdvanced": "顯示進階設定", "DE.Views.ShapeSettings.textAngle": "角度", - "DE.Views.ShapeSettings.textBorderSizeErr": "輸入的值不正確。
請輸入0 pt至1584 pt之間的值。", + "DE.Views.ShapeSettings.textBorderSizeErr": "輸入的值不正確。
請輸入介於0pt和1584pt之間的值。", "DE.Views.ShapeSettings.textColor": "填充顏色", "DE.Views.ShapeSettings.textDirection": "方向", "DE.Views.ShapeSettings.textEditPoints": "編輯點", "DE.Views.ShapeSettings.textEditShape": "編輯外框", - "DE.Views.ShapeSettings.textEmptyPattern": "無模式", + "DE.Views.ShapeSettings.textEmptyPattern": "無圖案", "DE.Views.ShapeSettings.textFlip": "翻轉", - "DE.Views.ShapeSettings.textFromFile": "從檔案插入", - "DE.Views.ShapeSettings.textFromStorage": "從儲存位置插入", - "DE.Views.ShapeSettings.textFromUrl": "從 URL", - "DE.Views.ShapeSettings.textGradient": "漸變點", + "DE.Views.ShapeSettings.textFromFile": "從檔案", + "DE.Views.ShapeSettings.textFromStorage": "從儲存空間", + "DE.Views.ShapeSettings.textFromUrl": "從網址", + "DE.Views.ShapeSettings.textGradient": "漸層點", "DE.Views.ShapeSettings.textGradientFill": "漸層填充", "DE.Views.ShapeSettings.textHint270": "逆時針旋轉90°", "DE.Views.ShapeSettings.textHint90": "順時針旋轉90°", @@ -2856,123 +2856,123 @@ "DE.Views.ShapeSettings.textHintFlipV": "垂直翻轉", "DE.Views.ShapeSettings.textImageTexture": "圖片或紋理", "DE.Views.ShapeSettings.textLinear": "線性的", - "DE.Views.ShapeSettings.textNoFill": "無填滿", - "DE.Views.ShapeSettings.textPatternFill": "模式", + "DE.Views.ShapeSettings.textNoFill": "無填充", + "DE.Views.ShapeSettings.textPatternFill": "圖案", "DE.Views.ShapeSettings.textPosition": "位置", - "DE.Views.ShapeSettings.textRadial": "徑向的", + "DE.Views.ShapeSettings.textRadial": "放射狀", "DE.Views.ShapeSettings.textRecentlyUsed": "最近使用", "DE.Views.ShapeSettings.textRotate90": "旋轉90°", "DE.Views.ShapeSettings.textRotation": "旋轉", "DE.Views.ShapeSettings.textSelectImage": "選擇圖片", "DE.Views.ShapeSettings.textSelectTexture": "選擇", "DE.Views.ShapeSettings.textStretch": "延伸", - "DE.Views.ShapeSettings.textStyle": "風格", + "DE.Views.ShapeSettings.textStyle": "樣式", "DE.Views.ShapeSettings.textTexture": "從紋理", "DE.Views.ShapeSettings.textTile": "磚瓦", - "DE.Views.ShapeSettings.textWrap": "包覆風格", + "DE.Views.ShapeSettings.textWrap": "換行樣式", "DE.Views.ShapeSettings.tipAddGradientPoint": "新增漸變點", - "DE.Views.ShapeSettings.tipRemoveGradientPoint": "刪除漸變點", - "DE.Views.ShapeSettings.txtBehind": "文字置於後方", - "DE.Views.ShapeSettings.txtBrownPaper": "牛皮紙", + "DE.Views.ShapeSettings.tipRemoveGradientPoint": "移除漸層點", + "DE.Views.ShapeSettings.txtBehind": "文字在後", + "DE.Views.ShapeSettings.txtBrownPaper": "棕色紙張", "DE.Views.ShapeSettings.txtCanvas": "畫布", - "DE.Views.ShapeSettings.txtCarton": "紙箱", - "DE.Views.ShapeSettings.txtDarkFabric": "深色面料", - "DE.Views.ShapeSettings.txtGrain": "紋", + "DE.Views.ShapeSettings.txtCarton": "紙盒", + "DE.Views.ShapeSettings.txtDarkFabric": "深色布料", + "DE.Views.ShapeSettings.txtGrain": "紋理", "DE.Views.ShapeSettings.txtGranite": "花崗岩", - "DE.Views.ShapeSettings.txtGreyPaper": "灰紙", - "DE.Views.ShapeSettings.txtInFront": "文字在前", - "DE.Views.ShapeSettings.txtInline": "與文字排列", + "DE.Views.ShapeSettings.txtGreyPaper": "灰色紙張", + "DE.Views.ShapeSettings.txtInFront": "置於文字前方", + "DE.Views.ShapeSettings.txtInline": "與文字對齊", "DE.Views.ShapeSettings.txtKnit": "編織", "DE.Views.ShapeSettings.txtLeather": "皮革", "DE.Views.ShapeSettings.txtNoBorders": "無線條", - "DE.Views.ShapeSettings.txtPapyrus": "紙莎草紙", - "DE.Views.ShapeSettings.txtSquare": "正方形", - "DE.Views.ShapeSettings.txtThrough": "通過", - "DE.Views.ShapeSettings.txtTight": "緊", + "DE.Views.ShapeSettings.txtPapyrus": "帛書字體", + "DE.Views.ShapeSettings.txtSquare": "方形", + "DE.Views.ShapeSettings.txtThrough": "透過", + "DE.Views.ShapeSettings.txtTight": "緊密", "DE.Views.ShapeSettings.txtTopAndBottom": "頂部和底部", "DE.Views.ShapeSettings.txtWood": "木頭", "DE.Views.SignatureSettings.notcriticalErrorTitle": "警告", - "DE.Views.SignatureSettings.strDelete": "刪除簽名", - "DE.Views.SignatureSettings.strDetails": "簽名細節", + "DE.Views.SignatureSettings.strDelete": "移除簽名", + "DE.Views.SignatureSettings.strDetails": "簽名詳細資訊", "DE.Views.SignatureSettings.strInvalid": "無效的簽名", - "DE.Views.SignatureSettings.strRequested": "要求的簽名", + "DE.Views.SignatureSettings.strRequested": "要求簽名", "DE.Views.SignatureSettings.strSetup": "簽名設定", "DE.Views.SignatureSettings.strSign": "簽名", "DE.Views.SignatureSettings.strSignature": "簽名", - "DE.Views.SignatureSettings.strSigner": "簽名者", + "DE.Views.SignatureSettings.strSigner": "簽署者", "DE.Views.SignatureSettings.strValid": "有效簽名", - "DE.Views.SignatureSettings.txtContinueEditing": "仍要編輯", - "DE.Views.SignatureSettings.txtEditWarning": "編輯將刪除文檔中的簽名。
是否確定繼續?", - "DE.Views.SignatureSettings.txtRemoveWarning": "確定移除此簽名?
這動作無法復原.", + "DE.Views.SignatureSettings.txtContinueEditing": "無論如何編輯", + "DE.Views.SignatureSettings.txtEditWarning": "編輯將從文件中刪除簽名
是否繼續?", + "DE.Views.SignatureSettings.txtRemoveWarning": "您是否要刪除此簽名?
此操作無法撤消。", "DE.Views.SignatureSettings.txtRequestedSignatures": "該文件需要簽名。", - "DE.Views.SignatureSettings.txtSigned": "有效簽名已添加到文檔中。該文檔受到保護,無法編輯。", - "DE.Views.SignatureSettings.txtSignedInvalid": "文檔中的某些數字簽名無效或無法驗證。該文檔受到保護,無法編輯。", - "DE.Views.Statusbar.goToPageText": "轉到頁面", + "DE.Views.SignatureSettings.txtSigned": "有效簽名已添加到文件中。文件已受到編輯保護。", + "DE.Views.SignatureSettings.txtSignedInvalid": "文件中的一些數位簽章無效或無法驗證。該文件受到保護,無法編輯。", + "DE.Views.Statusbar.goToPageText": "前往頁面", "DE.Views.Statusbar.pageIndexText": "第{0}頁,共{1}頁", - "DE.Views.Statusbar.tipFitPage": "調整至頁面", - "DE.Views.Statusbar.tipFitWidth": "調整至寬度", - "DE.Views.Statusbar.tipHandTool": "移動工具", - "DE.Views.Statusbar.tipSelectTool": "選取工具", + "DE.Views.Statusbar.tipFitPage": "調整至頁面大小", + "DE.Views.Statusbar.tipFitWidth": "調整至寬度大小", + "DE.Views.Statusbar.tipHandTool": "手動工具", + "DE.Views.Statusbar.tipSelectTool": "選擇工具", "DE.Views.Statusbar.tipSetLang": "設定文字語言", - "DE.Views.Statusbar.tipZoomFactor": "放大", + "DE.Views.Statusbar.tipZoomFactor": "縮放", "DE.Views.Statusbar.tipZoomIn": "放大", "DE.Views.Statusbar.tipZoomOut": "縮小", "DE.Views.Statusbar.txtPageNumInvalid": "頁碼無效", - "DE.Views.Statusbar.txtPages": "頁", - "DE.Views.Statusbar.txtParagraphs": "段落", - "DE.Views.Statusbar.txtSpaces": "含空格的符號", + "DE.Views.Statusbar.txtPages": "頁數", + "DE.Views.Statusbar.txtParagraphs": "段落數", + "DE.Views.Statusbar.txtSpaces": "帶有空格的符號", "DE.Views.Statusbar.txtSymbols": "符號", "DE.Views.Statusbar.txtWordCount": "字數統計", - "DE.Views.Statusbar.txtWords": "字幕", - "DE.Views.StyleTitleDialog.textHeader": "建立新樣式", - "DE.Views.StyleTitleDialog.textNextStyle": "下一段風格", + "DE.Views.Statusbar.txtWords": "字數", + "DE.Views.StyleTitleDialog.textHeader": "創建新樣式", + "DE.Views.StyleTitleDialog.textNextStyle": "下一個段落樣式", "DE.Views.StyleTitleDialog.textTitle": "標題", - "DE.Views.StyleTitleDialog.txtEmpty": "這是必填欄", - "DE.Views.StyleTitleDialog.txtNotEmpty": "段落不能為空", - "DE.Views.StyleTitleDialog.txtSameAs": "與新增風格相同", + "DE.Views.StyleTitleDialog.txtEmpty": "此欄位為必填欄位", + "DE.Views.StyleTitleDialog.txtNotEmpty": "欄位不能為空白", + "DE.Views.StyleTitleDialog.txtSameAs": "與新建樣式相同", "DE.Views.TableFormulaDialog.textBookmark": "粘貼書籤", "DE.Views.TableFormulaDialog.textFormat": "數字格式", - "DE.Views.TableFormulaDialog.textFormula": "函數", + "DE.Views.TableFormulaDialog.textFormula": "公式", "DE.Views.TableFormulaDialog.textInsertFunction": "粘貼功能", "DE.Views.TableFormulaDialog.textTitle": "公式設定", - "DE.Views.TableOfContentsSettings.strAlign": "右對齊頁碼", + "DE.Views.TableOfContentsSettings.strAlign": "靠右對齊頁碼", "DE.Views.TableOfContentsSettings.strFullCaption": "包括標籤和編號", - "DE.Views.TableOfContentsSettings.strLinks": "將目錄格式化為連結", - "DE.Views.TableOfContentsSettings.strLinksOF": "調數字目錄格式為鏈接", + "DE.Views.TableOfContentsSettings.strLinks": "將圖表目錄格式化為連結", + "DE.Views.TableOfContentsSettings.strLinksOF": "將圖表目錄格式化為連結", "DE.Views.TableOfContentsSettings.strShowPages": "顯示頁碼", - "DE.Views.TableOfContentsSettings.textBuildTable": "從中建立目錄", - "DE.Views.TableOfContentsSettings.textBuildTableOF": "從建立數據表", + "DE.Views.TableOfContentsSettings.textBuildTable": "從建立目錄", + "DE.Views.TableOfContentsSettings.textBuildTableOF": "從建立圖表目錄", "DE.Views.TableOfContentsSettings.textEquation": "方程式", - "DE.Views.TableOfContentsSettings.textFigure": "數字", - "DE.Views.TableOfContentsSettings.textLeader": "領導", - "DE.Views.TableOfContentsSettings.textLevel": "水平", - "DE.Views.TableOfContentsSettings.textLevels": "層次", + "DE.Views.TableOfContentsSettings.textFigure": "圖表", + "DE.Views.TableOfContentsSettings.textLeader": "導引符", + "DE.Views.TableOfContentsSettings.textLevel": "層級", + "DE.Views.TableOfContentsSettings.textLevels": "層級", "DE.Views.TableOfContentsSettings.textNone": "無", "DE.Views.TableOfContentsSettings.textRadioCaption": "標題", - "DE.Views.TableOfContentsSettings.textRadioLevels": "大綱級別", - "DE.Views.TableOfContentsSettings.textRadioStyle": "風格", - "DE.Views.TableOfContentsSettings.textRadioStyles": "選擇風格", - "DE.Views.TableOfContentsSettings.textStyle": "風格", - "DE.Views.TableOfContentsSettings.textStyles": "風格", + "DE.Views.TableOfContentsSettings.textRadioLevels": "大綱層級", + "DE.Views.TableOfContentsSettings.textRadioStyle": "樣式", + "DE.Views.TableOfContentsSettings.textRadioStyles": "選擇樣式", + "DE.Views.TableOfContentsSettings.textStyle": "樣式", + "DE.Views.TableOfContentsSettings.textStyles": "樣式", "DE.Views.TableOfContentsSettings.textTable": "表格", "DE.Views.TableOfContentsSettings.textTitle": "目錄", - "DE.Views.TableOfContentsSettings.textTitleTOF": "圖表", - "DE.Views.TableOfContentsSettings.txtCentered": "置中", + "DE.Views.TableOfContentsSettings.textTitleTOF": "圖表目錄", + "DE.Views.TableOfContentsSettings.txtCentered": "置中對齊", "DE.Views.TableOfContentsSettings.txtClassic": "經典", - "DE.Views.TableOfContentsSettings.txtCurrent": "當前", + "DE.Views.TableOfContentsSettings.txtCurrent": "目前", "DE.Views.TableOfContentsSettings.txtDistinctive": "獨特的", - "DE.Views.TableOfContentsSettings.txtFormal": "正式", + "DE.Views.TableOfContentsSettings.txtFormal": "正式的", "DE.Views.TableOfContentsSettings.txtModern": "現代", "DE.Views.TableOfContentsSettings.txtOnline": "上線", "DE.Views.TableOfContentsSettings.txtSimple": "簡單", "DE.Views.TableOfContentsSettings.txtStandard": "標準", - "DE.Views.TableSettings.deleteColumnText": "刪除欄位", - "DE.Views.TableSettings.deleteRowText": "刪除行列", + "DE.Views.TableSettings.deleteColumnText": "刪除欄", + "DE.Views.TableSettings.deleteRowText": "刪除列", "DE.Views.TableSettings.deleteTableText": "刪除表格", - "DE.Views.TableSettings.insertColumnLeftText": "向左插入列", - "DE.Views.TableSettings.insertColumnRightText": "向右插入列", - "DE.Views.TableSettings.insertRowAboveText": "在上方插入行", - "DE.Views.TableSettings.insertRowBelowText": "在下方插入行", + "DE.Views.TableSettings.insertColumnLeftText": "在左側插入欄", + "DE.Views.TableSettings.insertColumnRightText": "在右側插入欄", + "DE.Views.TableSettings.insertRowAboveText": "在上方插入列", + "DE.Views.TableSettings.insertRowBelowText": "在下方插入列", "DE.Views.TableSettings.mergeCellsText": "合併儲存格", "DE.Views.TableSettings.selectCellText": "選擇儲存格", "DE.Views.TableSettings.selectColumnText": "選擇欄", @@ -2980,55 +2980,55 @@ "DE.Views.TableSettings.selectTableText": "選擇表格", "DE.Views.TableSettings.splitCellsText": "分割儲存格...", "DE.Views.TableSettings.splitCellTitleText": "分割儲存格", - "DE.Views.TableSettings.strRepeatRow": "在每一頁頂部重複作為標題行", + "DE.Views.TableSettings.strRepeatRow": "在每頁的最上層顯示標題列", "DE.Views.TableSettings.textAddFormula": "插入函數", "DE.Views.TableSettings.textAdvanced": "顯示進階設定", - "DE.Views.TableSettings.textBackColor": "背景色彩", - "DE.Views.TableSettings.textBanded": "帶狀", + "DE.Views.TableSettings.textBackColor": "背景顏色", + "DE.Views.TableSettings.textBanded": "分隔", "DE.Views.TableSettings.textBorderColor": "顏色", "DE.Views.TableSettings.textBorders": "邊框風格", - "DE.Views.TableSettings.textCellSize": "行和列大小", + "DE.Views.TableSettings.textCellSize": "列與欄大小", "DE.Views.TableSettings.textColumns": "欄", "DE.Views.TableSettings.textConvert": "將表格轉換為文字", - "DE.Views.TableSettings.textDistributeCols": "分配列", - "DE.Views.TableSettings.textDistributeRows": "分配行", - "DE.Views.TableSettings.textEdit": "行和列", - "DE.Views.TableSettings.textEmptyTemplate": "\n沒有模板", - "DE.Views.TableSettings.textFirst": "第一", + "DE.Views.TableSettings.textDistributeCols": "分佈欄", + "DE.Views.TableSettings.textDistributeRows": "分佈列", + "DE.Views.TableSettings.textEdit": "列與欄", + "DE.Views.TableSettings.textEmptyTemplate": "沒有範本", + "DE.Views.TableSettings.textFirst": "第一個", "DE.Views.TableSettings.textHeader": "頁首", "DE.Views.TableSettings.textHeight": "高度", "DE.Views.TableSettings.textLast": "最後", - "DE.Views.TableSettings.textRows": "行列", - "DE.Views.TableSettings.textSelectBorders": "選擇您要更改上面選擇的應用風格的邊框", + "DE.Views.TableSettings.textRows": "列", + "DE.Views.TableSettings.textSelectBorders": "選擇要套用上方選定樣式的邊框", "DE.Views.TableSettings.textTemplate": "從範本中選擇", "DE.Views.TableSettings.textTotal": "總計", "DE.Views.TableSettings.textWidth": "寬度", - "DE.Views.TableSettings.tipAll": "設定外部邊界和所有內部框線", - "DE.Views.TableSettings.tipBottom": "僅設定外部底框線", - "DE.Views.TableSettings.tipInner": "僅設定內部框線", - "DE.Views.TableSettings.tipInnerHor": "僅設定水平內部框線", - "DE.Views.TableSettings.tipInnerVert": "僅設定垂直內部框線", - "DE.Views.TableSettings.tipLeft": "僅設定左外部框線", - "DE.Views.TableSettings.tipNone": "設定為無邊界", - "DE.Views.TableSettings.tipOuter": "僅設定外部框線", - "DE.Views.TableSettings.tipRight": "僅設定右外部框線", - "DE.Views.TableSettings.tipTop": "僅設定外部頂框線", + "DE.Views.TableSettings.tipAll": "設定外框和所有內部線", + "DE.Views.TableSettings.tipBottom": "僅設定外部底部邊框", + "DE.Views.TableSettings.tipInner": "僅設定內部線", + "DE.Views.TableSettings.tipInnerHor": "僅設定水平內部線", + "DE.Views.TableSettings.tipInnerVert": "僅設定內部垂直線", + "DE.Views.TableSettings.tipLeft": "僅設定外部左邊框", + "DE.Views.TableSettings.tipNone": "設定無邊框", + "DE.Views.TableSettings.tipOuter": "僅設定外框", + "DE.Views.TableSettings.tipRight": "僅設定外部右邊框", + "DE.Views.TableSettings.tipTop": "僅設定外部上邊框", "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "有邊框和線條的表格", "DE.Views.TableSettings.txtGroupTable_Custom": "自訂", - "DE.Views.TableSettings.txtGroupTable_Grid": "網格表格", + "DE.Views.TableSettings.txtGroupTable_Grid": "格狀表格", "DE.Views.TableSettings.txtGroupTable_List": "清單表格", - "DE.Views.TableSettings.txtGroupTable_Plain": "簡單表格", - "DE.Views.TableSettings.txtNoBorders": "無框線", + "DE.Views.TableSettings.txtGroupTable_Plain": "純文字表格", + "DE.Views.TableSettings.txtNoBorders": "無邊框", "DE.Views.TableSettings.txtTable_Accent": "口音", "DE.Views.TableSettings.txtTable_Bordered": "有邊框的", "DE.Views.TableSettings.txtTable_BorderedAndLined": "有邊框和線條的", - "DE.Views.TableSettings.txtTable_Colorful": "七彩", - "DE.Views.TableSettings.txtTable_Dark": "暗", - "DE.Views.TableSettings.txtTable_GridTable": "網格表", - "DE.Views.TableSettings.txtTable_Light": "光", + "DE.Views.TableSettings.txtTable_Colorful": "豐富多彩的", + "DE.Views.TableSettings.txtTable_Dark": "深色", + "DE.Views.TableSettings.txtTable_GridTable": "格狀表格", + "DE.Views.TableSettings.txtTable_Light": "淺色", "DE.Views.TableSettings.txtTable_Lined": "有格線的", - "DE.Views.TableSettings.txtTable_ListTable": "列表表", - "DE.Views.TableSettings.txtTable_PlainTable": "普通表", + "DE.Views.TableSettings.txtTable_ListTable": "清單表格", + "DE.Views.TableSettings.txtTable_PlainTable": "純文字表格", "DE.Views.TableSettings.txtTable_TableGrid": "表格網格", "DE.Views.TableSettingsAdvanced.textAlign": "對齊", "DE.Views.TableSettingsAdvanced.textAlignment": "對齊", @@ -3038,20 +3038,20 @@ "DE.Views.TableSettingsAdvanced.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。", "DE.Views.TableSettingsAdvanced.textAltTitle": "標題", "DE.Views.TableSettingsAdvanced.textAnchorText": "文字", - "DE.Views.TableSettingsAdvanced.textAutofit": "自動調整大小以適合內容", + "DE.Views.TableSettingsAdvanced.textAutofit": "自動調整大小以符合內容", "DE.Views.TableSettingsAdvanced.textBackColor": "儲存格背景", - "DE.Views.TableSettingsAdvanced.textBelow": "之下", + "DE.Views.TableSettingsAdvanced.textBelow": "下方", "DE.Views.TableSettingsAdvanced.textBorderColor": "邊框色彩", - "DE.Views.TableSettingsAdvanced.textBorderDesc": "點擊圖或使用按鈕選擇邊框並將選定的樣式應用於邊框", + "DE.Views.TableSettingsAdvanced.textBorderDesc": "點擊圖表或使用按鈕選擇邊框以套用樣式", "DE.Views.TableSettingsAdvanced.textBordersBackgroung": "邊框和背景", "DE.Views.TableSettingsAdvanced.textBorderWidth": "邊框大小", "DE.Views.TableSettingsAdvanced.textBottom": "底部", "DE.Views.TableSettingsAdvanced.textCellOptions": "儲存格選項", "DE.Views.TableSettingsAdvanced.textCellProps": "儲存格", "DE.Views.TableSettingsAdvanced.textCellSize": "儲存格大小", - "DE.Views.TableSettingsAdvanced.textCenter": "中心", + "DE.Views.TableSettingsAdvanced.textCenter": "置中", "DE.Views.TableSettingsAdvanced.textCenterTooltip": "中心", - "DE.Views.TableSettingsAdvanced.textCheckMargins": "使用預設邊距", + "DE.Views.TableSettingsAdvanced.textCheckMargins": "使用預設邊界", "DE.Views.TableSettingsAdvanced.textDefaultMargins": "預設儲存格邊界", "DE.Views.TableSettingsAdvanced.textDistance": "與文字的距離", "DE.Views.TableSettingsAdvanced.textHorizontal": "水平", @@ -3060,9 +3060,9 @@ "DE.Views.TableSettingsAdvanced.textLeftTooltip": "左", "DE.Views.TableSettingsAdvanced.textMargin": "邊框", "DE.Views.TableSettingsAdvanced.textMargins": "儲存格邊界", - "DE.Views.TableSettingsAdvanced.textMeasure": "測量", - "DE.Views.TableSettingsAdvanced.textMove": "用文字移動對象", - "DE.Views.TableSettingsAdvanced.textOnlyCells": "僅適用於選取的儲存格", + "DE.Views.TableSettingsAdvanced.textMeasure": "以...為單位", + "DE.Views.TableSettingsAdvanced.textMove": "隨文字移動物件", + "DE.Views.TableSettingsAdvanced.textOnlyCells": "僅適用於選定的儲存格", "DE.Views.TableSettingsAdvanced.textOptions": "選項", "DE.Views.TableSettingsAdvanced.textOverlap": "允許重疊", "DE.Views.TableSettingsAdvanced.textPage": "頁面", @@ -3071,112 +3071,112 @@ "DE.Views.TableSettingsAdvanced.textPreview": "預覽", "DE.Views.TableSettingsAdvanced.textRelative": "關係到", "DE.Views.TableSettingsAdvanced.textRight": "右", - "DE.Views.TableSettingsAdvanced.textRightOf": "在 - 的右邊", + "DE.Views.TableSettingsAdvanced.textRightOf": "在右側", "DE.Views.TableSettingsAdvanced.textRightTooltip": "右", "DE.Views.TableSettingsAdvanced.textTable": "表格", "DE.Views.TableSettingsAdvanced.textTableBackColor": "表格背景", "DE.Views.TableSettingsAdvanced.textTablePosition": "表格位置", "DE.Views.TableSettingsAdvanced.textTableSize": "表格大小", "DE.Views.TableSettingsAdvanced.textTitle": "表格 - 進階設定", - "DE.Views.TableSettingsAdvanced.textTop": "上方", + "DE.Views.TableSettingsAdvanced.textTop": "頂部", "DE.Views.TableSettingsAdvanced.textVertical": "垂直", "DE.Views.TableSettingsAdvanced.textWidth": "寬度", "DE.Views.TableSettingsAdvanced.textWidthSpaces": "寬度與間距", "DE.Views.TableSettingsAdvanced.textWrap": "文字包裝", - "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "內聯表", - "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "流量表", - "DE.Views.TableSettingsAdvanced.textWrappingStyle": "文繞圖樣式", - "DE.Views.TableSettingsAdvanced.textWrapText": "文繞圖文字", - "DE.Views.TableSettingsAdvanced.tipAll": "設定外部邊界和所有內部框線", - "DE.Views.TableSettingsAdvanced.tipCellAll": "設定框線僅用於內部儲存格", - "DE.Views.TableSettingsAdvanced.tipCellInner": "只為內部儲存格設定垂直和水平線", - "DE.Views.TableSettingsAdvanced.tipCellOuter": "為內部儲存格設定外部邊界", - "DE.Views.TableSettingsAdvanced.tipInner": "僅設定內部框線", - "DE.Views.TableSettingsAdvanced.tipNone": "設定為無邊界", - "DE.Views.TableSettingsAdvanced.tipOuter": "僅設定外部框線", - "DE.Views.TableSettingsAdvanced.tipTableOuterCellAll": "設定外部框線和所有內部儲存格的框線", - "DE.Views.TableSettingsAdvanced.tipTableOuterCellInner": "設定內部儲存格的外部邊界以及垂直和水平線", - "DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "設定表格的外部框線和內部儲存格的外部框線", + "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "內嵌表格", + "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "流程圖:交替處理", + "DE.Views.TableSettingsAdvanced.textWrappingStyle": "換行樣式", + "DE.Views.TableSettingsAdvanced.textWrapText": "換行文字", + "DE.Views.TableSettingsAdvanced.tipAll": "設定外框和所有內部線", + "DE.Views.TableSettingsAdvanced.tipCellAll": "僅為內部儲存格設定邊框", + "DE.Views.TableSettingsAdvanced.tipCellInner": "僅設定內部儲存格的垂直和水平線", + "DE.Views.TableSettingsAdvanced.tipCellOuter": "僅設定內部儲存格的外框", + "DE.Views.TableSettingsAdvanced.tipInner": "僅設定內部線", + "DE.Views.TableSettingsAdvanced.tipNone": "設定無邊框", + "DE.Views.TableSettingsAdvanced.tipOuter": "僅設定外框", + "DE.Views.TableSettingsAdvanced.tipTableOuterCellAll": "設定外框和所有內部線", + "DE.Views.TableSettingsAdvanced.tipTableOuterCellInner": "設定外框和內部儲存格的垂直和水平線", + "DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "設定表格的外框和內部儲存格的外框", "DE.Views.TableSettingsAdvanced.txtCm": "公分", - "DE.Views.TableSettingsAdvanced.txtInch": "吋", - "DE.Views.TableSettingsAdvanced.txtNoBorders": "無框線", - "DE.Views.TableSettingsAdvanced.txtPercent": "百分", + "DE.Views.TableSettingsAdvanced.txtInch": "英寸", + "DE.Views.TableSettingsAdvanced.txtNoBorders": "無邊框", + "DE.Views.TableSettingsAdvanced.txtPercent": "百分比", "DE.Views.TableSettingsAdvanced.txtPt": "點", - "DE.Views.TableToTextDialog.textEmpty": "你必須輸入至少一個自訂的分隔字元", - "DE.Views.TableToTextDialog.textNested": "轉換套疊表格", + "DE.Views.TableToTextDialog.textEmpty": "您必須輸入自訂分隔符號的字元。", + "DE.Views.TableToTextDialog.textNested": "轉換嵌套表格", "DE.Views.TableToTextDialog.textOther": "其它", "DE.Views.TableToTextDialog.textPara": "段落標記", "DE.Views.TableToTextDialog.textSemicolon": "分號", - "DE.Views.TableToTextDialog.textSeparator": "文字分隔用", + "DE.Views.TableToTextDialog.textSeparator": "用...分隔文字", "DE.Views.TableToTextDialog.textTab": "標籤", "DE.Views.TableToTextDialog.textTitle": "將表格轉換為文字", "DE.Views.TextArtSettings.strColor": "顏色", "DE.Views.TextArtSettings.strFill": "填入", "DE.Views.TextArtSettings.strSize": "大小", - "DE.Views.TextArtSettings.strStroke": "筆鋒", + "DE.Views.TextArtSettings.strStroke": "折線圖", "DE.Views.TextArtSettings.strTransparency": "透明度", - "DE.Views.TextArtSettings.strType": "輸入", + "DE.Views.TextArtSettings.strType": "類型", "DE.Views.TextArtSettings.textAngle": "角度", - "DE.Views.TextArtSettings.textBorderSizeErr": "輸入的值不正確。
請輸入0 pt至1584 pt之間的值。", + "DE.Views.TextArtSettings.textBorderSizeErr": "輸入的值不正確。
請輸入介於0pt和1584pt之間的值。", "DE.Views.TextArtSettings.textColor": "填充顏色", "DE.Views.TextArtSettings.textDirection": "方向", - "DE.Views.TextArtSettings.textGradient": "漸變點", + "DE.Views.TextArtSettings.textGradient": "漸層點", "DE.Views.TextArtSettings.textGradientFill": "漸層填充", "DE.Views.TextArtSettings.textLinear": "線性的", - "DE.Views.TextArtSettings.textNoFill": "無填滿", + "DE.Views.TextArtSettings.textNoFill": "無填充", "DE.Views.TextArtSettings.textPosition": "位置", - "DE.Views.TextArtSettings.textRadial": "徑向的", + "DE.Views.TextArtSettings.textRadial": "放射狀", "DE.Views.TextArtSettings.textSelectTexture": "選擇", - "DE.Views.TextArtSettings.textStyle": "風格", - "DE.Views.TextArtSettings.textTemplate": "樣板", - "DE.Views.TextArtSettings.textTransform": "轉變", + "DE.Views.TextArtSettings.textStyle": "樣式", + "DE.Views.TextArtSettings.textTemplate": "範本", + "DE.Views.TextArtSettings.textTransform": "轉換", "DE.Views.TextArtSettings.tipAddGradientPoint": "新增漸變點", - "DE.Views.TextArtSettings.tipRemoveGradientPoint": "刪除漸變點", + "DE.Views.TextArtSettings.tipRemoveGradientPoint": "移除漸層點", "DE.Views.TextArtSettings.txtNoBorders": "無線條", "DE.Views.TextToTableDialog.textAutofit": "自動調整行為", "DE.Views.TextToTableDialog.textColumns": "欄", - "DE.Views.TextToTableDialog.textContents": "自動調整欄寬至內容", - "DE.Views.TextToTableDialog.textEmpty": "你必須輸入至少一個自訂的分隔字元", + "DE.Views.TextToTableDialog.textContents": "自動調整為內容大小", + "DE.Views.TextToTableDialog.textEmpty": "您必須輸入自訂分隔符號的字元。", "DE.Views.TextToTableDialog.textFixed": "固定欄寬", "DE.Views.TextToTableDialog.textOther": "其它", - "DE.Views.TextToTableDialog.textPara": "段落", - "DE.Views.TextToTableDialog.textRows": "行列", + "DE.Views.TextToTableDialog.textPara": "段落數", + "DE.Views.TextToTableDialog.textRows": "列", "DE.Views.TextToTableDialog.textSemicolon": "分號", "DE.Views.TextToTableDialog.textSeparator": "文字分隔從", "DE.Views.TextToTableDialog.textTab": "標籤", "DE.Views.TextToTableDialog.textTableSize": "表格大小", "DE.Views.TextToTableDialog.textTitle": "將文字轉換為表格", - "DE.Views.TextToTableDialog.textWindow": "自動調整欄寬至視窗", + "DE.Views.TextToTableDialog.textWindow": "自動調整為視窗大小", "DE.Views.TextToTableDialog.txtAutoText": "自動", "DE.Views.Toolbar.capBtnAddComment": "新增註解", "DE.Views.Toolbar.capBtnBlankPage": "空白頁面", "DE.Views.Toolbar.capBtnColumns": "欄", - "DE.Views.Toolbar.capBtnComment": "註解", + "DE.Views.Toolbar.capBtnComment": "評論", "DE.Views.Toolbar.capBtnDateTime": "日期和時間", "DE.Views.Toolbar.capBtnInsChart": "圖表", - "DE.Views.Toolbar.capBtnInsControls": "內容控制", - "DE.Views.Toolbar.capBtnInsDropcap": "插入首字大寫", + "DE.Views.Toolbar.capBtnInsControls": "內容控制項", + "DE.Views.Toolbar.capBtnInsDropcap": "首字大寫", "DE.Views.Toolbar.capBtnInsEquation": "方程式", - "DE.Views.Toolbar.capBtnInsHeader": "頁首/頁尾", - "DE.Views.Toolbar.capBtnInsImage": "圖像", - "DE.Views.Toolbar.capBtnInsPagebreak": "段落隔斷", + "DE.Views.Toolbar.capBtnInsHeader": "頁首和頁尾", + "DE.Views.Toolbar.capBtnInsImage": "圖片", + "DE.Views.Toolbar.capBtnInsPagebreak": "分頁符號", "DE.Views.Toolbar.capBtnInsShape": "形狀", "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt", "DE.Views.Toolbar.capBtnInsSymbol": "符號", "DE.Views.Toolbar.capBtnInsTable": "表格", "DE.Views.Toolbar.capBtnInsTextart": "文字藝術", - "DE.Views.Toolbar.capBtnInsTextbox": "文字框", + "DE.Views.Toolbar.capBtnInsTextbox": "文字方塊", "DE.Views.Toolbar.capBtnLineNumbers": "行號", "DE.Views.Toolbar.capBtnMargins": "邊框", "DE.Views.Toolbar.capBtnPageOrient": "方向", "DE.Views.Toolbar.capBtnPageSize": "大小", "DE.Views.Toolbar.capBtnWatermark": "浮水印", "DE.Views.Toolbar.capImgAlign": "對齊", - "DE.Views.Toolbar.capImgBackward": "向後退", - "DE.Views.Toolbar.capImgForward": "向前進", + "DE.Views.Toolbar.capImgBackward": "向後發送", + "DE.Views.Toolbar.capImgForward": "向前移動", "DE.Views.Toolbar.capImgGroup": "群組", - "DE.Views.Toolbar.capImgWrapping": "包覆", - "DE.Views.Toolbar.mniCapitalizeWords": "每個單字字首大寫", + "DE.Views.Toolbar.capImgWrapping": "換行", + "DE.Views.Toolbar.mniCapitalizeWords": "每個單詞首字母大寫", "DE.Views.Toolbar.mniCustomTable": "插入自訂表格", "DE.Views.Toolbar.mniDrawTable": "繪製表格", "DE.Views.Toolbar.mniEditControls": "控制設定", @@ -3184,22 +3184,22 @@ "DE.Views.Toolbar.mniEditFooter": "編輯頁尾", "DE.Views.Toolbar.mniEditHeader": "編輯頁首", "DE.Views.Toolbar.mniEraseTable": "刪除表格", - "DE.Views.Toolbar.mniFromFile": "從檔案插入", - "DE.Views.Toolbar.mniFromStorage": "從儲存位置插入", - "DE.Views.Toolbar.mniFromUrl": "從 URL", - "DE.Views.Toolbar.mniHiddenBorders": "隱藏表格邊框", - "DE.Views.Toolbar.mniHiddenChars": "非印刷字符", - "DE.Views.Toolbar.mniHighlightControls": "強調顯示設置", - "DE.Views.Toolbar.mniImageFromFile": "圖片來自文件", - "DE.Views.Toolbar.mniImageFromStorage": "來自存儲的圖像", - "DE.Views.Toolbar.mniImageFromUrl": "來自網址的圖片", - "DE.Views.Toolbar.mniInsertSSE": "插入計算表", + "DE.Views.Toolbar.mniFromFile": "從檔案", + "DE.Views.Toolbar.mniFromStorage": "從儲存空間", + "DE.Views.Toolbar.mniFromUrl": "從網址", + "DE.Views.Toolbar.mniHiddenBorders": "隱藏底部邊框", + "DE.Views.Toolbar.mniHiddenChars": "顯示/隱藏編輯標記", + "DE.Views.Toolbar.mniHighlightControls": "突顯設定", + "DE.Views.Toolbar.mniImageFromFile": "從檔案插入圖片", + "DE.Views.Toolbar.mniImageFromStorage": "從儲存空間插入圖片", + "DE.Views.Toolbar.mniImageFromUrl": "從網址插入圖片", + "DE.Views.Toolbar.mniInsertSSE": "插入試算表", "DE.Views.Toolbar.mniLowerCase": "小寫", "DE.Views.Toolbar.mniRemoveFooter": "移除頁腳", "DE.Views.Toolbar.mniRemoveHeader": "移除頁首", - "DE.Views.Toolbar.mniSentenceCase": "大寫句子頭", + "DE.Views.Toolbar.mniSentenceCase": "句首大寫", "DE.Views.Toolbar.mniTextToTable": "將文字轉換為表格", - "DE.Views.Toolbar.mniToggleCase": "轉換大小寫", + "DE.Views.Toolbar.mniToggleCase": "切換大小寫", "DE.Views.Toolbar.mniUpperCase": "大寫", "DE.Views.Toolbar.strMenuNoFill": "無填充", "DE.Views.Toolbar.textAlpha": "小寫", @@ -3211,14 +3211,14 @@ "DE.Views.Toolbar.textBottom": "底部:", "DE.Views.Toolbar.textBullet": "項目符號", "DE.Views.Toolbar.textChangeLevel": "變更清單層級", - "DE.Views.Toolbar.textCheckboxControl": "複選框", + "DE.Views.Toolbar.textCheckboxControl": "核取方塊", "DE.Views.Toolbar.textColumnsCustom": "自訂欄位", "DE.Views.Toolbar.textColumnsLeft": "左", - "DE.Views.Toolbar.textColumnsOne": "一", + "DE.Views.Toolbar.textColumnsOne": "一個", "DE.Views.Toolbar.textColumnsRight": "右", "DE.Views.Toolbar.textColumnsThree": "三", - "DE.Views.Toolbar.textColumnsTwo": "二", - "DE.Views.Toolbar.textComboboxControl": "組合框", + "DE.Views.Toolbar.textColumnsTwo": "兩個", + "DE.Views.Toolbar.textComboboxControl": "下拉式方框", "DE.Views.Toolbar.textContinuous": "連續", "DE.Views.Toolbar.textContPage": "連續頁面", "DE.Views.Toolbar.textCopyright": "版權符號", @@ -3228,33 +3228,33 @@ "DE.Views.Toolbar.textDelta": "δ", "DE.Views.Toolbar.textDivision": "除號", "DE.Views.Toolbar.textDollar": "美元符號", - "DE.Views.Toolbar.textDropdownControl": "下拉選單", + "DE.Views.Toolbar.textDropdownControl": "下拉式清單", "DE.Views.Toolbar.textEditWatermark": "自訂浮水印", "DE.Views.Toolbar.textEuro": "歐元符號", "DE.Views.Toolbar.textEvenPage": "偶數頁", "DE.Views.Toolbar.textGreaterEqual": "大於或等於", - "DE.Views.Toolbar.textInfinity": "無限", - "DE.Views.Toolbar.textInMargin": "在邊框內", + "DE.Views.Toolbar.textInfinity": "無窮大", + "DE.Views.Toolbar.textInMargin": "在邊界內", "DE.Views.Toolbar.textInsColumnBreak": "插入分欄符", "DE.Views.Toolbar.textInsertPageCount": "插入頁數", "DE.Views.Toolbar.textInsertPageNumber": "插入頁碼", - "DE.Views.Toolbar.textInsPageBreak": "插入分頁符", + "DE.Views.Toolbar.textInsPageBreak": "插入頁碼", "DE.Views.Toolbar.textInsSectionBreak": "插入分節符", - "DE.Views.Toolbar.textInText": "字段內", + "DE.Views.Toolbar.textInText": "在文字中", "DE.Views.Toolbar.textItalic": "斜體", - "DE.Views.Toolbar.textLandscape": "橫向方向", + "DE.Views.Toolbar.textLandscape": "橫向", "DE.Views.Toolbar.textLeft": "左:", "DE.Views.Toolbar.textLetterPi": "π", "DE.Views.Toolbar.textListSettings": "清單設定", "DE.Views.Toolbar.textMarginsLast": "最後自訂", "DE.Views.Toolbar.textMarginsModerate": "中等", - "DE.Views.Toolbar.textMarginsNarrow": "狹窄", - "DE.Views.Toolbar.textMarginsNormal": "標準", - "DE.Views.Toolbar.textMarginsUsNormal": "美國普通", + "DE.Views.Toolbar.textMarginsNarrow": "窄", + "DE.Views.Toolbar.textMarginsNormal": "一般", + "DE.Views.Toolbar.textMarginsUsNormal": "US Normal", "DE.Views.Toolbar.textMarginsWide": "寬", - "DE.Views.Toolbar.textNewColor": "新增自訂顏色", + "DE.Views.Toolbar.textNewColor": "更多顏色", "DE.Views.Toolbar.textNextPage": "下一頁", - "DE.Views.Toolbar.textNoHighlight": "沒有突出顯示", + "DE.Views.Toolbar.textNoHighlight": "無醒目標示", "DE.Views.Toolbar.textNone": "無", "DE.Views.Toolbar.textNotEqualTo": "不等於", "DE.Views.Toolbar.textOddPage": "奇數頁", @@ -3264,68 +3264,68 @@ "DE.Views.Toolbar.textPlainControl": "純文本", "DE.Views.Toolbar.textPortrait": "直向方向", "DE.Views.Toolbar.textRegistered": "註冊標誌", - "DE.Views.Toolbar.textRemoveControl": "刪除內容控制", + "DE.Views.Toolbar.textRemoveControl": "移除內容控制項", "DE.Views.Toolbar.textRemWatermark": "刪除水印", - "DE.Views.Toolbar.textRestartEachPage": "重新開始每一頁", - "DE.Views.Toolbar.textRestartEachSection": "重新開始每個部分", + "DE.Views.Toolbar.textRestartEachPage": "每頁重新開始", + "DE.Views.Toolbar.textRestartEachSection": "每節重新開始", "DE.Views.Toolbar.textRichControl": "富文本", "DE.Views.Toolbar.textRight": "右: ", "DE.Views.Toolbar.textSection": "分區標誌", "DE.Views.Toolbar.textSquareRoot": "平方根", "DE.Views.Toolbar.textStrikeout": "刪除線", - "DE.Views.Toolbar.textStyleMenuDelete": "刪除風格", - "DE.Views.Toolbar.textStyleMenuDeleteAll": "刪除所有自定風格", - "DE.Views.Toolbar.textStyleMenuNew": "精選新風格", - "DE.Views.Toolbar.textStyleMenuRestore": "恢復為預設值", - "DE.Views.Toolbar.textStyleMenuRestoreAll": "恢復全部為預設風格", - "DE.Views.Toolbar.textStyleMenuUpdate": "選擇更新", + "DE.Views.Toolbar.textStyleMenuDelete": "刪除樣式", + "DE.Views.Toolbar.textStyleMenuDeleteAll": "刪除所有自訂樣式", + "DE.Views.Toolbar.textStyleMenuNew": "從選取範圍新增樣式", + "DE.Views.Toolbar.textStyleMenuRestore": "還原為預設值", + "DE.Views.Toolbar.textStyleMenuRestoreAll": "全部還原為預設樣式", + "DE.Views.Toolbar.textStyleMenuUpdate": "從選擇範圍更新", "DE.Views.Toolbar.textSubscript": "下標", "DE.Views.Toolbar.textSuperscript": "上標", "DE.Views.Toolbar.textSuppressForCurrentParagraph": "禁止當前段落", "DE.Views.Toolbar.textTabCollaboration": "共同編輯", - "DE.Views.Toolbar.textTabDraw": "繪圖", + "DE.Views.Toolbar.textTabDraw": "繪製", "DE.Views.Toolbar.textTabFile": "檔案", "DE.Views.Toolbar.textTabHome": "首頁", "DE.Views.Toolbar.textTabInsert": "插入", - "DE.Views.Toolbar.textTabLayout": "佈局", + "DE.Views.Toolbar.textTabLayout": "版面配置", "DE.Views.Toolbar.textTabLinks": "參考文獻", "DE.Views.Toolbar.textTabProtect": "保護", - "DE.Views.Toolbar.textTabReview": "評論;回顧", + "DE.Views.Toolbar.textTabReview": "檢閱", "DE.Views.Toolbar.textTabView": "檢視", "DE.Views.Toolbar.textTilde": "波浪號", "DE.Views.Toolbar.textTitleError": "錯誤", - "DE.Views.Toolbar.textToCurrent": "到當前位置", + "DE.Views.Toolbar.textToCurrent": "至目前位置", "DE.Views.Toolbar.textTop": "頂部: ", "DE.Views.Toolbar.textUnderline": "底線", "DE.Views.Toolbar.tipAlignCenter": "居中對齊", - "DE.Views.Toolbar.tipAlignJust": "合理的", + "DE.Views.Toolbar.tipAlignJust": "兩端對齊", "DE.Views.Toolbar.tipAlignLeft": "對齊左側", "DE.Views.Toolbar.tipAlignRight": "對齊右側", "DE.Views.Toolbar.tipBack": "返回", "DE.Views.Toolbar.tipBlankPage": "插入空白頁", - "DE.Views.Toolbar.tipChangeCase": "改大小寫", + "DE.Views.Toolbar.tipChangeCase": "大小寫轉換", "DE.Views.Toolbar.tipChangeChart": "變更圖表類型", - "DE.Views.Toolbar.tipClearStyle": "清晰的風格", - "DE.Views.Toolbar.tipColorSchemas": "變更配色方案", - "DE.Views.Toolbar.tipColumns": "插入欄", - "DE.Views.Toolbar.tipControls": "插入內容控件", + "DE.Views.Toolbar.tipClearStyle": "清除樣式", + "DE.Views.Toolbar.tipColorSchemas": "變更色彩配置", + "DE.Views.Toolbar.tipColumns": "插入欄位", + "DE.Views.Toolbar.tipControls": "插入內容控制項", "DE.Views.Toolbar.tipCopy": "複製", - "DE.Views.Toolbar.tipCopyStyle": "複製風格", + "DE.Views.Toolbar.tipCopyStyle": "複製格式", "DE.Views.Toolbar.tipCut": "剪下", - "DE.Views.Toolbar.tipDateTime": "插入當前日期和時間", - "DE.Views.Toolbar.tipDecFont": "減少字體大小", - "DE.Views.Toolbar.tipDecPrLeft": "減少縮進", - "DE.Views.Toolbar.tipDropCap": "插入下蓋", - "DE.Views.Toolbar.tipEditHeader": "編輯頁眉或頁腳", - "DE.Views.Toolbar.tipFontColor": "字體顏色", - "DE.Views.Toolbar.tipFontName": "字體", + "DE.Views.Toolbar.tipDateTime": "插入目前日期和時間", + "DE.Views.Toolbar.tipDecFont": "縮小文字", + "DE.Views.Toolbar.tipDecPrLeft": "減少縮排", + "DE.Views.Toolbar.tipDropCap": "插入首字下沉", + "DE.Views.Toolbar.tipEditHeader": "編輯頁首或頁尾", + "DE.Views.Toolbar.tipFontColor": "字型顏色", + "DE.Views.Toolbar.tipFontName": "字型", "DE.Views.Toolbar.tipFontSize": "字型大小", - "DE.Views.Toolbar.tipHighlightColor": "熒光色選", + "DE.Views.Toolbar.tipHighlightColor": "文字醒目提示色彩", "DE.Views.Toolbar.tipHyphenation": "自動斷詞", "DE.Views.Toolbar.tipImgAlign": "對齊物件", - "DE.Views.Toolbar.tipImgGroup": "組對象", - "DE.Views.Toolbar.tipImgWrapping": "包覆文字", - "DE.Views.Toolbar.tipIncFont": "增量字體大小", + "DE.Views.Toolbar.tipImgGroup": "群組物件", + "DE.Views.Toolbar.tipImgWrapping": "換行文字", + "DE.Views.Toolbar.tipIncFont": "放大文字", "DE.Views.Toolbar.tipIncPrLeft": "增加縮進", "DE.Views.Toolbar.tipInsertChart": "插入圖表", "DE.Views.Toolbar.tipInsertEquation": "插入方程式", @@ -3336,31 +3336,31 @@ "DE.Views.Toolbar.tipInsertSmartArt": "插入SmartArt", "DE.Views.Toolbar.tipInsertSymbol": "插入符號", "DE.Views.Toolbar.tipInsertTable": "插入表格", - "DE.Views.Toolbar.tipInsertText": "插入文字框", - "DE.Views.Toolbar.tipInsertTextArt": "插入文字藝術", + "DE.Views.Toolbar.tipInsertText": "插入文字方塊", + "DE.Views.Toolbar.tipInsertTextArt": "插入藝術文字", "DE.Views.Toolbar.tipInsertVerticalText": "插入垂直文字方塊", "DE.Views.Toolbar.tipLineNumbers": "顯示行號", "DE.Views.Toolbar.tipLineSpace": "段落行距", "DE.Views.Toolbar.tipMailRecepients": "郵件合併", "DE.Views.Toolbar.tipMarkers": "項目符號", - "DE.Views.Toolbar.tipMarkersArrow": "箭頭項目符號", - "DE.Views.Toolbar.tipMarkersCheckmark": "核取記號項目符號", - "DE.Views.Toolbar.tipMarkersDash": "連字號項目符號", - "DE.Views.Toolbar.tipMarkersFRhombus": "實心菱形項目符號", - "DE.Views.Toolbar.tipMarkersFRound": "實心圓項目符號", - "DE.Views.Toolbar.tipMarkersFSquare": "實心方形項目符號", - "DE.Views.Toolbar.tipMarkersHRound": "空心圓項目符號", - "DE.Views.Toolbar.tipMarkersStar": "星星項目符號", - "DE.Views.Toolbar.tipMultiLevelArticl": "多層編號文章", - "DE.Views.Toolbar.tipMultiLevelChapter": "多級編號章節", - "DE.Views.Toolbar.tipMultiLevelHeadings": "多層編號標頭", - "DE.Views.Toolbar.tipMultiLevelHeadVarious": "多層不同編號標頭", - "DE.Views.Toolbar.tipMultiLevelNumbered": "多層次數字清單", - "DE.Views.Toolbar.tipMultilevels": "多級清單", - "DE.Views.Toolbar.tipMultiLevelSymbols": "多層次符號清單", - "DE.Views.Toolbar.tipMultiLevelVarious": "多層次數字清單", + "DE.Views.Toolbar.tipMarkersArrow": "箭頭符號", + "DE.Views.Toolbar.tipMarkersCheckmark": "勾號符號清單", + "DE.Views.Toolbar.tipMarkersDash": "虛線符號", + "DE.Views.Toolbar.tipMarkersFRhombus": "填充菱形符號", + "DE.Views.Toolbar.tipMarkersFRound": "填充圓形符號", + "DE.Views.Toolbar.tipMarkersFSquare": "填充方形符號", + "DE.Views.Toolbar.tipMarkersHRound": "空心圓點符號", + "DE.Views.Toolbar.tipMarkersStar": "星形符號", + "DE.Views.Toolbar.tipMultiLevelArticl": "多層次編號文章", + "DE.Views.Toolbar.tipMultiLevelChapter": "多層次編號章節", + "DE.Views.Toolbar.tipMultiLevelHeadings": "多層次編號標題", + "DE.Views.Toolbar.tipMultiLevelHeadVarious": "多層次各種編號標題", + "DE.Views.Toolbar.tipMultiLevelNumbered": "多層次編號符號", + "DE.Views.Toolbar.tipMultilevels": "多層次清單", + "DE.Views.Toolbar.tipMultiLevelSymbols": "多層次符號項目符號", + "DE.Views.Toolbar.tipMultiLevelVarious": "多層次各種編號符號", "DE.Views.Toolbar.tipNumbers": "編號", - "DE.Views.Toolbar.tipPageBreak": "插入分頁符或分節符", + "DE.Views.Toolbar.tipPageBreak": "插入頁面或章節分隔符", "DE.Views.Toolbar.tipPageMargins": "頁邊距", "DE.Views.Toolbar.tipPageOrient": "頁面方向", "DE.Views.Toolbar.tipPageSize": "頁面大小", @@ -3369,82 +3369,82 @@ "DE.Views.Toolbar.tipPrColor": "段落背景顏色", "DE.Views.Toolbar.tipPrint": "列印", "DE.Views.Toolbar.tipPrintQuick": "快速列印", - "DE.Views.Toolbar.tipRedo": "重複", - "DE.Views.Toolbar.tipSave": "存檔", - "DE.Views.Toolbar.tipSaveCoauth": "儲存您的更改,以供其他帳戶查看。", + "DE.Views.Toolbar.tipRedo": "重做", + "DE.Views.Toolbar.tipSave": "儲存", + "DE.Views.Toolbar.tipSaveCoauth": "儲存您的更改,以供其他使用者查看。", "DE.Views.Toolbar.tipSelectAll": "全選", "DE.Views.Toolbar.tipSendBackward": "向後發送", - "DE.Views.Toolbar.tipSendForward": "向前進", - "DE.Views.Toolbar.tipShowHiddenChars": "非印刷字元", - "DE.Views.Toolbar.tipSynchronize": "該文檔已被其他帳戶更改。請單擊以儲存您的更改並重新加載更新。", + "DE.Views.Toolbar.tipSendForward": "向前移動", + "DE.Views.Toolbar.tipShowHiddenChars": "顯示/隱藏編輯標記", + "DE.Views.Toolbar.tipSynchronize": "文件已被其他使用者更改。請按一下以保存您的更改並重新載入更新。", "DE.Views.Toolbar.tipUndo": "復原", - "DE.Views.Toolbar.tipWatermark": "編輯水印", + "DE.Views.Toolbar.tipWatermark": "編輯浮水印", "DE.Views.Toolbar.txtDistribHor": "水平分散對齊", "DE.Views.Toolbar.txtDistribVert": "垂直分散對齊", "DE.Views.Toolbar.txtGroupBulletDoc": "文件項目符號", "DE.Views.Toolbar.txtGroupBulletLib": "項目符號庫", "DE.Views.Toolbar.txtGroupMultiDoc": "目前文件中的清單", - "DE.Views.Toolbar.txtGroupMultiLib": "清單資料庫", - "DE.Views.Toolbar.txtGroupNumDoc": "文件編號格式化", - "DE.Views.Toolbar.txtGroupNumLib": "編號資料庫", + "DE.Views.Toolbar.txtGroupMultiLib": "清單庫", + "DE.Views.Toolbar.txtGroupNumDoc": "文件編號格式", + "DE.Views.Toolbar.txtGroupNumLib": "編號庫", "DE.Views.Toolbar.txtGroupRecent": "最近使用", "DE.Views.Toolbar.txtMarginAlign": "對齊至邊界", "DE.Views.Toolbar.txtObjectsAlign": "對齊所選物件", "DE.Views.Toolbar.txtPageAlign": "對齊至頁面", - "DE.Views.Toolbar.txtScheme1": "辦公室", + "DE.Views.Toolbar.txtScheme1": "Office", "DE.Views.Toolbar.txtScheme10": "中位數", "DE.Views.Toolbar.txtScheme11": " 地鐵", "DE.Views.Toolbar.txtScheme12": "模組", - "DE.Views.Toolbar.txtScheme13": "豐富的", + "DE.Views.Toolbar.txtScheme13": "奢華的", "DE.Views.Toolbar.txtScheme14": "Oriel", - "DE.Views.Toolbar.txtScheme15": "起源", - "DE.Views.Toolbar.txtScheme16": "紙", + "DE.Views.Toolbar.txtScheme15": "起點", + "DE.Views.Toolbar.txtScheme16": "紙張", "DE.Views.Toolbar.txtScheme17": "冬至", "DE.Views.Toolbar.txtScheme18": "技術", "DE.Views.Toolbar.txtScheme19": "跋涉", "DE.Views.Toolbar.txtScheme2": "灰階", - "DE.Views.Toolbar.txtScheme20": "市區", - "DE.Views.Toolbar.txtScheme21": "感染力", + "DE.Views.Toolbar.txtScheme20": "城市", + "DE.Views.Toolbar.txtScheme21": "活力", "DE.Views.Toolbar.txtScheme22": "新的Office", "DE.Views.Toolbar.txtScheme3": "頂尖", - "DE.Views.Toolbar.txtScheme4": "方面", - "DE.Views.Toolbar.txtScheme5": "市區", - "DE.Views.Toolbar.txtScheme6": "大堂", - "DE.Views.Toolbar.txtScheme7": "產權", + "DE.Views.Toolbar.txtScheme4": "外觀", + "DE.Views.Toolbar.txtScheme5": "市政的", + "DE.Views.Toolbar.txtScheme6": "展示區", + "DE.Views.Toolbar.txtScheme7": "股權", "DE.Views.Toolbar.txtScheme8": "流程", "DE.Views.Toolbar.txtScheme9": "鑄造廠", "DE.Views.ViewTab.textAlwaysShowToolbar": "始終顯示工具列", - "DE.Views.ViewTab.textDarkDocument": "暗色文件", - "DE.Views.ViewTab.textFitToPage": "調整至頁面", - "DE.Views.ViewTab.textFitToWidth": "調整至寬度", + "DE.Views.ViewTab.textDarkDocument": "夜間模式文件", + "DE.Views.ViewTab.textFitToPage": "調整至頁面大小", + "DE.Views.ViewTab.textFitToWidth": "調整至寬度大小", "DE.Views.ViewTab.textInterfaceTheme": "介面主題", "DE.Views.ViewTab.textLeftMenu": "左側面板", - "DE.Views.ViewTab.textNavigation": "導航", + "DE.Views.ViewTab.textNavigation": "導覽", "DE.Views.ViewTab.textOutline": "標題", "DE.Views.ViewTab.textRightMenu": "右側面板", "DE.Views.ViewTab.textRulers": "尺規", - "DE.Views.ViewTab.textStatusBar": "狀態欄", - "DE.Views.ViewTab.textZoom": "放大", - "DE.Views.ViewTab.tipDarkDocument": "暗色文件", - "DE.Views.ViewTab.tipFitToPage": "調整至頁面", - "DE.Views.ViewTab.tipFitToWidth": "調整至寬度", + "DE.Views.ViewTab.textStatusBar": "狀態列", + "DE.Views.ViewTab.textZoom": "縮放", + "DE.Views.ViewTab.tipDarkDocument": "夜間模式文件", + "DE.Views.ViewTab.tipFitToPage": "調整至頁面大小", + "DE.Views.ViewTab.tipFitToWidth": "調整至寬度大小", "DE.Views.ViewTab.tipHeadings": "標題", "DE.Views.ViewTab.tipInterfaceTheme": "介面主題", "DE.Views.WatermarkSettingsDialog.textAuto": "自動", "DE.Views.WatermarkSettingsDialog.textBold": "粗體", "DE.Views.WatermarkSettingsDialog.textColor": "文字顏色", "DE.Views.WatermarkSettingsDialog.textDiagonal": "對角線", - "DE.Views.WatermarkSettingsDialog.textFont": "字體", - "DE.Views.WatermarkSettingsDialog.textFromFile": "從檔案插入", - "DE.Views.WatermarkSettingsDialog.textFromStorage": "從儲存位置插入", - "DE.Views.WatermarkSettingsDialog.textFromUrl": "從 URL", + "DE.Views.WatermarkSettingsDialog.textFont": "字型", + "DE.Views.WatermarkSettingsDialog.textFromFile": "從檔案", + "DE.Views.WatermarkSettingsDialog.textFromStorage": "從儲存空間", + "DE.Views.WatermarkSettingsDialog.textFromUrl": "從網址", "DE.Views.WatermarkSettingsDialog.textHor": "水平", - "DE.Views.WatermarkSettingsDialog.textImageW": "圖像水印", + "DE.Views.WatermarkSettingsDialog.textImageW": "圖片浮水印", "DE.Views.WatermarkSettingsDialog.textItalic": "斜體", "DE.Views.WatermarkSettingsDialog.textLanguage": "語言", - "DE.Views.WatermarkSettingsDialog.textLayout": "佈局", + "DE.Views.WatermarkSettingsDialog.textLayout": "版面配置", "DE.Views.WatermarkSettingsDialog.textNone": "無", - "DE.Views.WatermarkSettingsDialog.textScale": "尺度", + "DE.Views.WatermarkSettingsDialog.textScale": "縮放", "DE.Views.WatermarkSettingsDialog.textSelect": "選擇圖片", "DE.Views.WatermarkSettingsDialog.textStrikeout": "淘汰", "DE.Views.WatermarkSettingsDialog.textText": "文字", diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index da2f800e32..338fb20907 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -278,7 +278,7 @@ "Common.define.smartArt.textVerticalAccentList": "垂直強調清單", "Common.define.smartArt.textVerticalArrowList": "垂直箭頭清單", "Common.define.smartArt.textVerticalBendingProcess": "垂直彎曲流程", - "Common.define.smartArt.textVerticalBlockList": "垂直區塊清單", + "Common.define.smartArt.textVerticalBlockList": "垂直块列表", "Common.define.smartArt.textVerticalBoxList": "垂直方塊清單", "Common.define.smartArt.textVerticalBracketList": "垂直括號清單", "Common.define.smartArt.textVerticalBulletList": "垂直项目符号列表", @@ -315,21 +315,21 @@ "Common.UI.Calendar.textShortAugust": "八月", "Common.UI.Calendar.textShortDecember": "十二月", "Common.UI.Calendar.textShortFebruary": "二月", - "Common.UI.Calendar.textShortFriday": "星期五", + "Common.UI.Calendar.textShortFriday": "周五", "Common.UI.Calendar.textShortJanuary": "一月", "Common.UI.Calendar.textShortJuly": "七月", "Common.UI.Calendar.textShortJune": "六月", "Common.UI.Calendar.textShortMarch": "三月", "Common.UI.Calendar.textShortMay": "五月", - "Common.UI.Calendar.textShortMonday": "星期一", + "Common.UI.Calendar.textShortMonday": "周一", "Common.UI.Calendar.textShortNovember": "十一月", "Common.UI.Calendar.textShortOctober": "十月", - "Common.UI.Calendar.textShortSaturday": "Sa", + "Common.UI.Calendar.textShortSaturday": "周六", "Common.UI.Calendar.textShortSeptember": "九月", - "Common.UI.Calendar.textShortSunday": "上标", - "Common.UI.Calendar.textShortThursday": "星期四", - "Common.UI.Calendar.textShortTuesday": "星期二", - "Common.UI.Calendar.textShortWednesday": "我們", + "Common.UI.Calendar.textShortSunday": "周日", + "Common.UI.Calendar.textShortThursday": "周四", + "Common.UI.Calendar.textShortTuesday": "周二", + "Common.UI.Calendar.textShortWednesday": "周三", "Common.UI.Calendar.textYears": "年", "Common.UI.ComboBorderSize.txtNoBorders": "无边框", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "无边框", @@ -661,7 +661,7 @@ "Common.Views.ReviewChanges.txtOnGlobal": "为我和所有人开启", "Common.Views.ReviewChanges.txtOriginal": "所有更改都被拒绝{0}", "Common.Views.ReviewChanges.txtOriginalCap": "原始的", - "Common.Views.ReviewChanges.txtPrev": "上一页", + "Common.Views.ReviewChanges.txtPrev": "上一个", "Common.Views.ReviewChanges.txtPreview": "预览", "Common.Views.ReviewChanges.txtReject": "拒绝", "Common.Views.ReviewChanges.txtRejectAll": "拒绝所有更改", @@ -966,7 +966,7 @@ "DE.Controllers.Main.txtRectangles": "矩形", "DE.Controllers.Main.txtSameAsPrev": "与上一个相同", "DE.Controllers.Main.txtSection": "-部分", - "DE.Controllers.Main.txtSeries": "系列", + "DE.Controllers.Main.txtSeries": "序列", "DE.Controllers.Main.txtShape_accentBorderCallout1": "线形标注1(带边框和强调线)", "DE.Controllers.Main.txtShape_accentBorderCallout2": "线形标注2(带边框和强调线)", "DE.Controllers.Main.txtShape_accentBorderCallout3": "线形标注3(带边框和强调线)", @@ -1124,7 +1124,7 @@ "DE.Controllers.Main.txtShape_star7": "7角星", "DE.Controllers.Main.txtShape_star8": "8角星", "DE.Controllers.Main.txtShape_stripedRightArrow": "条纹右箭头", - "DE.Controllers.Main.txtShape_sun": "星期六", + "DE.Controllers.Main.txtShape_sun": "周日", "DE.Controllers.Main.txtShape_teardrop": "泪珠", "DE.Controllers.Main.txtShape_textRect": "文本框", "DE.Controllers.Main.txtShape_trapezoid": "梯形", @@ -1154,7 +1154,7 @@ "DE.Controllers.Main.txtStyle_Intense_Quote": "强调引用", "DE.Controllers.Main.txtStyle_List_Paragraph": "段落列表", "DE.Controllers.Main.txtStyle_No_Spacing": "无间距", - "DE.Controllers.Main.txtStyle_Normal": "正常", + "DE.Controllers.Main.txtStyle_Normal": "正文", "DE.Controllers.Main.txtStyle_Quote": "引用", "DE.Controllers.Main.txtStyle_Subtitle": "副标题", "DE.Controllers.Main.txtStyle_Title": "标题", @@ -2154,7 +2154,7 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "显示通知", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "禁用宏并发出通知", "DE.Views.FileMenuPanels.Settings.txtWin": "参照Windows", - "DE.Views.FileMenuPanels.Settings.txtWorkspace": "工作區", + "DE.Views.FileMenuPanels.Settings.txtWorkspace": "工作区", "DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs": "下载为", "DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs": "另存副本为", "DE.Views.FormSettings.textAlways": "总是", @@ -2242,7 +2242,7 @@ "DE.Views.FormsTab.capBtnView": "檢視表單", "DE.Views.FormsTab.capCreditCard": "信用卡", "DE.Views.FormsTab.capDateTime": "日期和时间", - "DE.Views.FormsTab.capZipCode": "郵遞區號", + "DE.Views.FormsTab.capZipCode": "邮编", "DE.Views.FormsTab.textAnyone": "任何人", "DE.Views.FormsTab.textClear": "清除字段", "DE.Views.FormsTab.textClearFields": "清除所有字段", diff --git a/apps/documenteditor/main/resources/help/en/Contents.json b/apps/documenteditor/main/resources/help/en/Contents.json index 96c0188097..0a6d620c5e 100644 --- a/apps/documenteditor/main/resources/help/en/Contents.json +++ b/apps/documenteditor/main/resources/help/en/Contents.json @@ -59,7 +59,6 @@ { "src": "UsageInstructions/CreateTableOfContents.htm", "name": "Create table of contents" }, {"src": "UsageInstructions/AddTableofFigures.htm", "name": "Add and Format a Table of Figures" }, { "src": "UsageInstructions/CreateFillableForms.htm", "name": "Create fillable forms", "headername": "Fillable forms" }, - { "src": "UsageInstructions/FillingOutForm.htm", "name": "Filling Out a Form" }, {"src": "UsageInstructions/UseMailMerge.htm", "name": "Use mail merge", "headername": "Mail Merge"}, { "src": "UsageInstructions/InsertEquation.htm", "name": "Insert equations", "headername": "Math equations" }, { "src": "HelpfulHints/CollaborativeEditing.htm", "name": "Co-editing documents in real time", "headername": "Collaboration" }, @@ -85,7 +84,8 @@ {"src": "UsageInstructions/Jitsi.htm", "name": "Make Audio and Video Calls"}, {"src": "UsageInstructions/Drawio.htm", "name": "Create and insert diagrams"}, {"src": "UsageInstructions/Zoom.htm", "name": "Host and schedule Zoom meetings"}, - {"src": "UsageInstructions/ChatGPT.htm", "name": "Use AI to write text"}, + { "src": "UsageInstructions/ChatGPT.htm", "name": "Use AI to write text" }, + {"src": "UsageInstructions/TerMef.htm", "name": "Insert definitions"}, {"src": "UsageInstructions/ViewDocInfo.htm", "name": "View document information", "headername": "Tools and settings"}, {"src": "UsageInstructions/SavePrintDownload.htm", "name": "Save, download, print your document" }, {"src": "HelpfulHints/AdvancedSettings.htm", "name": "Advanced settings of Document Editor"}, diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/About.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/About.htm index f8b863e000..b1e8ccda6d 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/About.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/About.htm @@ -18,8 +18,8 @@

About the Document Editor

The Document Editor is an online application that allows you to view through and edit documents directly in your browser.

Using the Document Editor, you can perform various editing operations like in any desktop editor, - print the edited documents keeping all the formatting details or download them onto your computer hard disk drive as DOCX, PDF, ODT, TXT, DOTX, PDF/A, OTT, RTF, HTML, FB2, EPUB, DOCXF and OFORM files.

-

To view the current software version, build number, and licensor details in the online version, click the icon on the left sidebar. To view the current software version and licensor details in the desktop version for Windows, select the About menu item on the left sidebar of the main program window. In the desktop version for Mac OS, open the ONLYOFFICE menu at the top of the screen and select the About ONLYOFFICE menu item.

+ print the edited documents keeping all the formatting details or download them onto your computer hard disk drive as DOCX, PDF, ODT, TXT, DOTX, PDF/A, OTT, RTF, HTML, FB2, EPUB, DOCXF files.

+

To view the current software version, build number, and licensor details in the online version, click the icon on the left sidebar. To view the current software version and licensor details in the desktop version for Windows, select the About menu item on the left sidebar of the main program window. In the desktop version for macOS, open the ONLYOFFICE menu at the top of the screen and select the About ONLYOFFICE menu item.

\ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm index 7aa7e3e208..27678355a6 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm @@ -49,7 +49,7 @@

Collaboration

  • View None. All the changes made during the current session will not be highlighted.
  • View All. All the changes made during the current session will be highlighted.
  • View Last. Only the changes made since you last time clicked the Save
    icon will be highlighted. This option is only available when the Strict co-editing mode is selected.
  • -
  • Show changes from other users. This feature allows to see changes made by other users in the document opened for viewing only in the Live Viewer mode.
  • +
  • Show changes from other users. This feature allows seeing changes made by other users in the document opened for viewing only in the Live Viewer mode.
  • Show comments in text. If you disable this feature, the commented passages will be highlighted only if you click the Comments
    icon on the left sidebar.
  • Show resolved comments. This feature is disabled by default so that the resolved comments are hidden in the document text. You can view such comments only if you click the Comments
    icon on the left sidebar. Enable this option if you want to display resolved comments in the document text.
  • @@ -66,9 +66,14 @@

    Proofing

    Workspace

      +
    1. The Turn on screen reader support option is used to enable support of screen reader software.
    2. The Alignment Guides option is used to turn on/off alignment guides that appear when you move objects. It allows for a more precise object positioning on the page.
    3. -
    4. The Hieroglyphs option is used to turn on/off the display of hieroglyphs.
    5. The Use Alt key to navigate the user interface using the keyboard option is used to enable using the Alt / Option key in keyboard shortcuts.
    6. +
    7. Show the Quick Print button in the editor header is used in the desktop version to enable quick printing via the corresponding button at the top toolbar. The file will be printed on the last selected or default printer.
    8. +
    9. + The RTL Interface (Beta) option is used to change the direction in which elements of the interface are displayed. + In the desktop editors, the RTL Interface (Beta) option can be accessed on the main settings page. To learn more, please refer to the desktop getting started guide. +
    10. The Interface theme option is used to change the color scheme of the editor’s interface.
        @@ -101,7 +106,7 @@

        Workspace

      • In the first cache mode, each letter is cached as a separate picture.
      • In the second cache mode, a picture of a certain size is selected where letters are placed dynamically and a mechanism of allocating/removing memory in this picture is also implemented. If there is not enough memory, a second picture is created, etc.
    -

    The Default cache mode setting applies two above mentioned cache modes separately for different browsers:

    +

    The Default cache mode setting applies two above-mentioned cache modes separately for different browsers:

  • edit the currently selected comment by clicking the
    icon,
  • delete the currently selected comment by clicking the
    icon,
  • -
  • close the currently selected discussion by clicking the
    icon if the task or problem you stated in your comment was solved, after that the discussion you opened with your comment gets the resolved status. To open it again, click the
    icon. If you want to hide resolved comments, click the File tab on the top toolbar, select the Advanced Settings... option, uncheck the Turn on display of the resolved comments box and click Apply. In this case the resolved comments will be highlighted only if you click the
    icon,
  • +
  • close the currently selected discussion by clicking the
    icon if the task or problem you stated in your comment was solved, after that the discussion you opened with your comment gets the resolved status. To open it again, click the
    icon. If you want to hide resolved comments, click the File tab on the top toolbar, select the Advanced Settings option, uncheck the Turn on display of the resolved comments box and click Apply. In this case, the resolved comments will be highlighted only if you click the
    icon,
  • if you want to manage comments in a bunch, open the Resolve drop-down menu on the Collaboration tab. Select one of the options for resolving comments: resolve current comments, resolve my comments or resolve all comments in the document.
  • Adding mentions

    @@ -75,7 +75,7 @@

    Removing comments

    select the necessary option from the menu: diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/Communicating.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/Communicating.htm index a77e26ff2a..f316869788 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/Communicating.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/Communicating.htm @@ -15,8 +15,8 @@

    Communicating in real time

    -

    The Document Editor allows you to maintain constant team-wide approach to work flow: share files and folders, collaborate on documents in real time, comment certain parts of your documents that require additional third-party input, save document versions for future use, review documents and add your changes without actually editing the file, compare and merge documents to facilitate processing and editing.

    -

    In Document Editor you can communicate with your co-editors in real time using the built-in Chat tool as well as a number of useful plugins, i.e. Telegram or Rainbow.

    +

    The Document Editor allows you to maintain a constant team-wide approach to work flow: share files and folders, collaborate on documents in real time, comment certain parts of your documents that require additional third-party input, save document versions for future use, review documents and add your changes without actually editing the file, compare and merge documents to facilitate processing and editing.

    +

    In Document Editor, you can communicate with your co-editors in real time using the built-in Chat tool as well as a number of useful plugins, i.e. Telegram or Rainbow.

    To access the Chat tool and leave a message for other users,

    1. diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/Comparison.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/Comparison.htm index 75b8641f25..e39b312d13 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/Comparison.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/Comparison.htm @@ -15,7 +15,7 @@

      Comparing and combining documents

      -

      The Document Editor allows you to maintain constant team-wide approach to work flow: share files and folders, collaborate on documents in real time, communicate right in the editor, comment certain parts of your documents that require additional third-party input, save document versions for future use, review documents and add your changes without actually editing the file.

      +

      The Document Editor allows you to maintain a constant team-wide approach to work flow: share files and folders, collaborate on documents in real time, communicate right in the editor, comment certain parts of your documents that require additional third-party input, save document versions for future use, review documents and add your changes without actually editing the file.

      If you need to compare and merge two documents, the Document Editor provides you with the document Compare feature. It allows displaying the differences between two documents and merge the documents by accepting the changes one by one or all at once.

      The Combine feature may seem the same but with one major difference, i.e., the Tracked Changes in both versions are merged into one version and the rest of the texts is compared.

      After merging two documents, the result will be stored on the portal as a new version of the original file.

      @@ -60,12 +60,12 @@

      Choose the changes display mode

      Click the Display Mode button on the top toolbar and select one of the available modes from the list:

      • - Markup and balloons - this option is selected by default. It is used to display the document in the process of comparison/combining. This mode allows both viewing the changes and editing the document. It also includes a baloon that displays the reviewer's name, the date and the time of the revision, and the revision itseltf. Use the balloon to accept (tick mark) or to rejet (cross mark) the change. + Markup and balloons - this option is selected by default. It is used to display the document in the process of comparison/combining. This mode allows both viewing the changes and editing the document. It also includes a balloon that displays the reviewer's name, the date and the time of the revision, and the revision itself. Use the balloon to accept (tick mark) or to reject (cross mark) the change.

        Compare documents - Markup

      • - Only markup - this option is used to display the document in the process of comparison/combining, and allows both viewing the changes and editing the document. No ballons are displayed. + Only markup - this option is used to display the document in the process of comparison/combining, and allows both viewing the changes and editing the document. No balloons are displayed.

        Compare documents - Markup

      • @@ -83,14 +83,14 @@

        Accept or reject changes

        To accept the currently selected change, you can:

        • click the
          Accept button on the top toolbar, or
        • -
        • click the downward arrow below the Accept button and select the Accept Current Change option (in this case, the change will be accepted and you will proceed to the next change), or
        • +
        • click the downward arrow below the Accept button and select the Accept Current Change option (in this case, the change will be accepted, and you will proceed to the next change), or
        • click the Accept
          button of the change pop-up window.

        To quickly accept all the changes, click the downward arrow below the Accept button and select the Accept All Changes option.

        -

        To reject the current change you can:

        +

        To reject the current change, you can:

        • click the
          Reject button on the top toolbar, or
        • -
        • click the downward arrow below the Reject button and select the Reject Current Change option (in this case, the change will be rejected and you will move on to the next available change), or
        • +
        • click the downward arrow below the Reject button and select the Reject Current Change option (in this case, the change will be rejected, and you will move on to the next available change), or
        • click the Reject
          button of the change pop-up window.

        To quickly reject all the changes, click the downward arrow below the Reject button and select the Reject All Changes option.

        diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/Password.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/Password.htm index 96f9925941..ab0fb5b192 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/Password.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/Password.htm @@ -27,7 +27,7 @@

        Setting a password

        or go to the Protection tab and choose the Encrypt option,

      • - set a password in the Password field and repeat it in the Repeat password field below. Click
        to show or hide password characters when entered. + set a password in the Password field and repeat it in the Repeat password field below. Click
        to show or hide password characters when entered,

        set password

      • @@ -60,7 +60,7 @@

        Protecting a document

      • click the Protect Document button,
      • set the password if necessary,
      • - choose the required access rights for the document provided the password has not been entered by the user: + choose the required access rights for the document, provided the password has not been entered by the user:
        • No changes (Read only) - the user can only view the document.
        • Filling forms - the user can only fill a form.
        • @@ -71,7 +71,7 @@

          Protecting a document

        • click Protect when ready.
        -

        To remove protection from the document provided that the password has been set,

        +

        To remove protection from the document, provided that the password has been set,

        • go to the Protection tab,
        • click the Protect Document button,
        • diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/Search.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/Search.htm index 4253581c53..f1da77edc9 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/Search.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/Search.htm @@ -15,7 +15,7 @@

          Search and Replace Function

          -

          To search for the required characters, words or phrases used in the currently edited document, click the icon situated on the left sidebar of the Document Editor, the icon situated in the upper right corner, or use the Ctrl+F (Command+F for MacOS) key combination to open the small Find panel or the Ctrl+H key combination to open the full Find panel.

          +

          To search for the required characters, words or phrases used in the currently edited document, click the icon situated on the left sidebar of the Document Editor, the icon situated in the upper right corner, or use the Ctrl+F (Command+F for macOS) key combination to open the small Find panel or the Ctrl+H key combination to open the full Find panel.

          A small Find panel will open in the upper right corner of the working area. The panel includes the text field for typing in a search query, the number of search results, and controls for moving to the previous or the next result, and closing the bar.

          Find small panel

          To access the advanced settings, click the icon or use the Ctrl+H key combination.

          @@ -24,7 +24,7 @@

          Search and Replace Function

          1. Type in your inquiry into the corresponding Find data entry field.
          2. If you need to replace one or more occurrences of the found characters, type in the replacement text into the corresponding Replace with data entry field. You can choose to replace a single currently highlighted occurrence or replace all occurrences by clicking the corresponding Replace and Replace All buttons.
          3. -
          4. To navigate between the found occurrences, click one of the arrow buttons. The
            button shows the next occurrence while the
            button shows the previous one.
          5. +
          6. To navigate between the found occurrences, click one of the arrow buttons. The
            button shows the next occurrence, while the
            button shows the previous one.
          7. Specify search parameters by checking the necessary options below the entry fields:
              diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm index f8498faecf..239a49b568 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm @@ -15,9 +15,9 @@

              Spell-checking

              -

              The Document Editor allows you to check the spelling of your text in a certain language and correct mistakes while editing. In the desktop version, it's also possible to add words into a custom dictionary which is common for all three editors.

              +

              The Document Editor allows you to check the spelling of your text in a certain language and correct mistakes while editing. In the desktop version, it's also possible to add words into a custom dictionary, which is used for all three editors.

              Starting from version 6.3, the ONLYOFFICE editors support the SharedWorker interface for smoother operation without significant memory consumption. If your browser does not support SharedWorker then just Worker will be active. For more information about SharedWorker please refer to this article.

              -

              First of all, choose a language for your document. Click the Set Document Language icon on the status bar. In the opened window, select the required language and click OK. The selected language will be applied to the whole document.

              +

              First, choose a language for your document. Click the Set Document Language icon on the status bar. In the opened window, select the required language and click OK. The selected language will be applied to the whole document.

              Set Document Language window

              To choose a different language for any piece within the document, select the necessary text passage with the mouse and use the Spell-checking - Text Language selector menu on the status bar.

              To enable the spell checking option, you can:

              @@ -26,11 +26,11 @@

              Spell-checking

            • open the File tab of the top toolbar, select the Advanced Settings option, check the Turn on spell checking option box and click the Apply button.

            All misspelled words will be underlined by a red line.

            -

            Right click on the necessary word to activate the menu and:

            +

            Right-click on the necessary word to activate the menu and:

              -
            • choose one of the suggested similar words spelled correctly to replace the misspelled word with the suggested one. If too many variants are found, the More variants... option appears in the menu;
            • -
            • use the Ignore option to skip just that word and remove underlining or Ignore All to skip all the identical words repeated in the text;
            • -
            • if the current word is missed in the dictionary, you can add it to the custom dictionary. This word will not be treated as a mistake next time. This option is available in the desktop version.
            • +
            • choose one of the suggested similar words spelled correctly to replace the misspelled word with the suggested one. If too many variants are found, the More variants... option appears in the menu,
            • +
            • use the Ignore option to skip just that word and remove underlining, or Ignore All to skip all the identical words repeated in the text,
            • +
            • if the current word is missed in the dictionary, you can add it to the custom dictionary. This word will not be treated as a mistake next time. This option is available in the desktop version,
            • select a different language for this word.

            Spell-checking

            diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/SupportedFormats.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/SupportedFormats.htm index eec13103e4..7fdf92f980 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/SupportedFormats.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/SupportedFormats.htm @@ -15,12 +15,12 @@

            Supported Formats of Electronic Documents

            -

            - An electronic document is one of the most commonly used computer. - Due to the highly developed modern computer network, it's more convenient to distribute electronic documents than printed ones. - Nowadays, a lot of devices are used for document presentation, so there are plenty of proprietary and open file formats. - The Document Editor handles the most popular of them. -

            +

            + Electronic documents are the most frequently used computer files. + Due to the highly developed modern computer network, it's more convenient to distribute electronic documents than printed ones. + Nowadays, a lot of devices are used for document presentation, so there are plenty of proprietary and open file formats. + The Document Editor handles the most popular of them. +

            While uploading or opening the file for editing, it will be converted to the Office Open XML (DOCX) format. It's done to speed up the file processing and increase the interoperability.

            The following table contains the formats which can be opened for viewing and/or editing.

            @@ -66,7 +66,7 @@

            Supported Formats of Electronic Documents

            - + @@ -130,10 +130,10 @@

            Supported Formats of Electronic Documents

            - + - + @@ -225,8 +225,7 @@

            Supported Formats of Electronic Documents

            DOCXFA format to create, edit and collaborate on a Form Template.A format to create, edit and collaborate on a fillable form. + +
            OFORMA format to fill out a Form. Form fields are fillable but users cannot change the formatting or parameters of the form elements*.An old format to fill out a Form. You will be prompted to save it to PDF to be able to fill it out. + +
            -

            *Note: the OFORM format is a format for filling out a form. Therefore, only form fields are editable.

            -

            The following table contains the formats in which you can download a document from the File -> Download as menu.

            +

            The following table contains the formats in which you can download a document from the File -> Download as menu.

            @@ -238,35 +237,35 @@

            Supported Formats of Electronic Documents

            - + - + - + - + - + - + - + - + @@ -274,27 +273,27 @@

            Supported Formats of Electronic Documents

            - + - + - + - + - + - + @@ -306,7 +305,7 @@

            Supported Formats of Electronic Documents

            - + @@ -318,11 +317,11 @@

            Supported Formats of Electronic Documents

            - + - +
            Input format
            DOCDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OFORM, OTT, PDF, PDF/A, PNG, RTF, TXTDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OTT, PDF, PDF/A, PNG, RTF, TXT
            DOCMDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OFORM, OTT, PDF, PDF/A, PNG, RTF, TXTDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OTT, PDF, PDF/A, PNG, RTF, TXT
            DOCXDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OFORM, OTT, PDF, PDF/A, PNG, RTF, TXTDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OTT, PDF, PDF/A, PNG, RTF, TXT
            DOCXFDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OFORM, OTT, PDF, PDF/A, PNG, RTF, TXTDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OTT, PDF, PDF/A, PNG, RTF, TXT
            DOTXDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OFORM, OTT, PDF, PDF/A, PNG, RTF, TXTDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OTT, PDF, PDF/A, PNG, RTF, TXT
            EPUBDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OFORM, OTT, PDF, PDF/A, PNG, RTF, TXTDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OTT, PDF, PDF/A, PNG, RTF, TXT
            FB2DOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OFORM, OTT, PDF, PDF/A, PNG, RTF, TXTDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OTT, PDF, PDF/A, PNG, RTF, TXT
            HTMLDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OFORM, OTT, PDF, PDF/A, PNG, RTF, TXTDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OTT, PDF, PDF/A, PNG, RTF, TXT
            MHTML
            ODTDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OFORM, OTT, PDF, PDF/A, PNG, RTF, TXTDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OTT, PDF, PDF/A, PNG, RTF, TXT
            OTTDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OFORM, OTT, PDF, PDF/A, PNG, RTF, TXTDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OTT, PDF, PDF/A, PNG, RTF, TXT
            PDFDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, OFORM, PDF/A, PNG, RTF, TXTDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, PDF/A, PNG, RTF, TXT
            PDF/ADOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, OFORM, PDF, PNG, RTF, TXTDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, PDF, PNG, RTF, TXT
            RTFDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OFORM, OTT, PDF, PDF/A, PNG, RTF, TXTDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OTT, PDF, PDF/A, PNG, RTF, TXT
            STW
            TXTDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OFORM, OTT, PDF, PDF/A, PNG, RTF, TXTDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OTT, PDF, PDF/A, PNG, RTF, TXT
            WPS
            XMLDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OFORM, OTT, PDF, PDF/A, PNG, RTF, TXTDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OTT, PDF, PDF/A, PNG, RTF, TXT
            XPSDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OFORM, OTT, PDF, PDF/A, PNG, RTF, TXT, XPSDOCX, DOCXF, DOTX, EPUB, FB2, HTML, JPG, ODT, OTT, PDF, PDF/A, PNG, RTF, TXT, XPS

            You can also refer to the conversion matrix on api.onlyoffice.com to see possibility of conversion your documents into the most known file formats.

            diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/VersionHistory.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/VersionHistory.htm index 4fbeed08da..5058816dd5 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/VersionHistory.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/VersionHistory.htm @@ -15,8 +15,8 @@

            Version history

            -

            The Document Editor allows you to maintain constant team-wide approach to work flow: share files and folders, collaborate on documents in real time, communicate right in the editor, comment certain parts of your documents that require additional third-party input, review documents and add your changes without actually editing the file, compare and merge documents to facilitate processing and editing.

            -

            In Document Editor you can view the version history of the document you collaborate on.

            +

            The Document Editor allows you to maintain a constant team-wide approach to work flow: share files and folders, collaborate on documents in real time, communicate right in the editor, comment certain parts of your documents that require additional third-party input, review documents and add your changes without actually editing the file, compare and merge documents to facilitate processing and editing.

            +

            In Document Editor, you can view the version history of the document you collaborate on.

            Viewing version history:

            To view all the changes made to the document,

              @@ -26,7 +26,7 @@

              Version history

            • go to the Collaboration tab,
            • open the history of versions using the
               Version History icon at the top toolbar.
            -

            You'll see the list of the document versions and revisions with the indication of each version/revision author and creation date and time. For document versions, the version number is also specified (e.g. ver. 2).

            +

            You'll see the list of the document versions and revisions, with the indication of each version/revision author and creation date and time. For document versions, the version number is also specified (e.g., ver. 2).

            Viewing versions:

            To know exactly which changes have been made in each separate version/revision, you can view the one you need by clicking it on the left sidebar. The changes made by the version/revision author are marked with the color which is displayed next to the author's name on the left sidebar.

            To return to the current version of the document, use the Close History option on the top of the version list.

            diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/Viewer.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/Viewer.htm index cdfaa008d2..2cd43e9907 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/Viewer.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/Viewer.htm @@ -58,24 +58,24 @@

            ONLYOFFICE Document Viewer

            Download allows to download a file to your computer;

            Share (available in the online version only) allows you to manage the users who have access to the file right from the document: invite new users giving them permissions to edit, read, comment, fill forms or review the document, or deny some users access rights to the file.

            Open file location in the desktop version allows opening the folder, where the file is stored, in the File explorer window. In the online version, it allows opening the folder of the Documents module, where the file is stored, in a new browser tab;

            -

            Mark as favorite / Remove from favorites (available in the online version only) click the empty star to add a file to favorites as to make it easy to find, or click the filled star to remove the file from favorites. The added file is just a shortcut so the file itself remains stored in its original location. Deleting a file from favorites does not remove the file from its original location;

            +

            Mark as favorite / Remove from favorites (available in the online version only) click the empty star to add a file to favorites as to make it easy to find, or click the filled star to remove the file from favorites. The added file is just a shortcut, so the file itself remains stored in its original location. Deleting a file from favorites does not remove the file from its original location;

            User displays the user’s name when you hover the mouse over it.

            -

            Search - allows to search the document for a particular word or symbol, etc.

            +

            Search - allows searching the document for a particular word or symbol, etc.

          8. The Status bar located at the bottom of the ONLYOFFICE Document Viewer window indicates the page number and displays the background status notifications. It also contains the following tools: -

            Selection tool allows to select text in a file.

            -

            Hand tool allows to drag and scroll the page.

            -

            Fit to page allows to resize the page so that the screen displays the whole page.

            -

            Fit to width allows to resize the page so that the page scales to fit the width of the screen.

            -

            Zoom Zoom adjusting tool allows to zoom in and zoom out the page.

            +

            Selection tool allows selecting text in a file.

            +

            Hand tool allows dragging and scrolling the page.

            +

            Fit to page allows resizing the page so that the screen displays the whole page.

            +

            Fit to width allows resizing the page so that the page scales to fit the width of the screen.

            +

            Zoom Zoom adjusting tool allows zooming in and out of the page.

          9. The Left sidebar contains the following icons:
              -
            • - allows to use the Search and Replace tool,
            • +
            • - allows using the Search and Replace tool,
            • - (available in the online version only) allows opening the Chat panel,
            • -
              - allows to open the Headings panel that displays the list of all headings with corresponding nesting levels. Click the heading to jump directly to a specific page. +
              - allows opening the Headings panel that displays the list of all headings with corresponding nesting levels. Click the heading to jump directly to a specific page.

              NavigationPanel

              Click the Settings icon to the right of the Headings panel and use one of the available options from the menu:

                @@ -89,16 +89,16 @@

                ONLYOFFICE Document Viewer

                To close the Headings panel, click the  Headings icon on the left sidebar once again.

              • -
                - allows to display page thumbnails for quick navigation. Click
                on the Page Thumbnails panel to access the Thumbnails Settings: +
                - allows displaying page thumbnails for quick navigation. Click
                on the Page Thumbnails panel to access the Thumbnails Settings:

                Page thumbnails settings

                • Drag the slider to set the thumbnail size,
                • -
                • The Highlight visible part of page is active by default to indicate the area that is currently on screen. Click it to disable.
                • +
                • The Highlight visible part of page is active by default to indicate the area that is currently on the screen. Click it to disable.

                To close the Page Thumbnails panel, click the Page Thumbnails icon on the left sidebar once again.

              • -
              • - allows to contact our support team,
              • -
              • - (available in the online version only) allows to view the information about the program.
              • +
              • - allows contacting our support team,
              • +
              • - (available in the online version only) allows viewing the information about the program.
          diff --git a/apps/documenteditor/main/resources/help/en/ProgramInterface/FileTab.htm b/apps/documenteditor/main/resources/help/en/ProgramInterface/FileTab.htm index 939b8717eb..8f846da8b0 100644 --- a/apps/documenteditor/main/resources/help/en/ProgramInterface/FileTab.htm +++ b/apps/documenteditor/main/resources/help/en/ProgramInterface/FileTab.htm @@ -26,11 +26,11 @@

          File tab

          With this tab, you can use the following options:

            -
          • in the online version: save the current file (in case the Autosave option is disabled), save it in the required format on the hard disk drive of your computer with the Download as option, save a copy of the file in the selected format to the portal documents with the Save copy as option, print or rename the current file. - in the desktop version: save the current file without changing its format and location using the Save option, save it changing its name, location or format using the Save as option or print the current file. +
          • in the online version: save the current file (in case the Autosave option is disabled), save it in the required format on the hard disk drive of your computer with the Download as option, save a copy of the file in the selected format to the portal documents with the Save copy as option, print or rename the current file, + in the desktop version: save the current file without changing its format and location using the Save option, save it changing its name, location or format using the Save as option or print the current file,
          • -
          • protect the file using a password, change or remove the password;
          • -
          • protect the file using a digital signature (available in the desktop version only);
          • +
          • protect the file using a password, change or remove the password,
          • +
          • protect the file using a digital signature (available in the desktop version only),
          • create a new document or open a recently edited one (available in the online version only),
          • view general information about the document or change some file properties,
          • manage access rights (available in the online version only),
          • diff --git a/apps/documenteditor/main/resources/help/en/ProgramInterface/HomeTab.htm b/apps/documenteditor/main/resources/help/en/ProgramInterface/HomeTab.htm index 5e7cd63523..edcb810cf7 100644 --- a/apps/documenteditor/main/resources/help/en/ProgramInterface/HomeTab.htm +++ b/apps/documenteditor/main/resources/help/en/ProgramInterface/HomeTab.htm @@ -15,7 +15,7 @@

            Home tab

            -

            The Home tab appears by default when you open the Document Editor. It also allows formating fonts and paragraphs. Some other options are also available here, such as Mail Merge and color schemes.

            +

            The Home tab appears by default when you open the Document Editor. It also allows formatting fonts and paragraphs. Some other options are also available here, such as Mail Merge and color schemes.

            The corresponding window of the Online Document Editor:

            Home tab

            diff --git a/apps/documenteditor/main/resources/help/en/ProgramInterface/PluginsTab.htm b/apps/documenteditor/main/resources/help/en/ProgramInterface/PluginsTab.htm index 71307ee1c1..5b2658d602 100644 --- a/apps/documenteditor/main/resources/help/en/ProgramInterface/PluginsTab.htm +++ b/apps/documenteditor/main/resources/help/en/ProgramInterface/PluginsTab.htm @@ -10,11 +10,11 @@ -
            -
            - -
            -

            Plugins tab

            +
            +
            + +
            +

            Plugins tab

            The Plugins tab of the Document Editor allows accessing the advanced editing features using the available third-party components. This tab also makes it possible to use macros to simplify routine operations.

            The corresponding window of the Online Document Editor:

            @@ -24,27 +24,30 @@

            Plugins tab

            The corresponding window of the Desktop Document Editor:

            Plugins tab

            -

            The Plugin Manager button allows viewing and managing all the installed plugins as well as adding new ones.

            +

            The Plugin Manager button allows viewing and managing all the installed plugins, as well as adding new ones.

            +

            The Background Plugins button allows viewing the list of plugins that work in the background. Here you can activate or disable them by activating/deactivating the corresponding switches, and adjust their settings by clicking the More button next to the required plugin.

            The Macros button allows you to create and run your own macros. To learn more about macros, please refer to our API Documentation.

            -

            Currently, the following plugins are available by default:

            +

            Currently, the following plugins are available by default:

              -
            • Send allows to send the document via email using the default desktop mail client (available in the desktop version only),
            • -
            • Highlight code allows to highlight syntax of the code selecting the necessary language, style, background color,
            • -
            • OCR allows to recognize text included into a picture and insert it into the document text,
            • -
            • Photo Editor allows to edit images: crop, flip, rotate them, draw lines and shapes, add icons and text, load a mask and apply filters such as Grayscale, Invert, Sepia, Blur, Sharpen, Emboss, etc.,
            • -
            • Speech allows to convert the selected text into speech (available in the online version only),
            • -
            • Thesaurus allows to search for synonyms and antonyms of a word and replace it with the selected one,
            • -
            • Translator allows to translate the selected text into other languages, +
            • Send allows sending the document via email using the default desktop mail client (available in the desktop version only),
            • +
            • Highlight code allows highlighting syntax of the code selecting the necessary language, style, background color,
            • +
            • OCR allows recognizing text included into a picture and insert it into the document text,
            • +
            • Photo Editor allows editing images: crop, flip, rotate them, draw lines and shapes, add icons and text, load a mask and apply filters such as Grayscale, Invert, Sepia, Blur, Sharpen, Emboss, etc.,
            • +
            • Speech allows converting the selected text into speech (available in the online version only),
            • +
            • Thesaurus allows searching for synonyms and antonyms of a word and replace it with the selected one,
            • +
            • + Translator allows translating the selected text into other languages,

              This plugin doesn't work in Internet Explorer.

            • -
            • YouTube allows to embed YouTube videos into your document,
            • -
            • Mendeley allows to manage research papers and generate bibliographies for scholarly articles (available in the online version only),
            • -
            • Zotero allows to manage bibliographic data and related research materials (available in the online version only),
            • +
            • YouTube allows embedding YouTube videos into your document,
            • +
            • Mendeley allows managing research papers and generate bibliographies for scholarly articles (available in the online version only),
            • +
            • Zotero allows managing bibliographic data and related research materials (available in the online version only),
            • EasyBib helps to find and insert related books, journal articles and websites (available in the online version only).
            -

            The Wordpress and EasyBib plugins can be used if you connect the corresponding services in your portal settings. You can use the following instructions for the server version or for the SaaS version.

            -

            The Wordpress and EasyBib plugins are not included in the free version of the editors.

            +

            The WordPress and EasyBib plugins can be used if you connect the corresponding services in your portal settings. You can use the following instructions for the server version or for the SaaS version.

            +

            The WordPress and EasyBib plugins are not included in the free version of the editors.

            +

            Several visual plugins can be added to your document. The added plugins will be displayed as corresponding icons on the left panel.

            To learn more about plugins, please refer to our API Documentation. All the currently existing open source plugin examples are available on GitHub.

            -
            +
            \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/en/ProgramInterface/ProgramInterface.htm b/apps/documenteditor/main/resources/help/en/ProgramInterface/ProgramInterface.htm index 36e9aa3491..1840e1ded2 100644 --- a/apps/documenteditor/main/resources/help/en/ProgramInterface/ProgramInterface.htm +++ b/apps/documenteditor/main/resources/help/en/ProgramInterface/ProgramInterface.htm @@ -15,7 +15,7 @@

            Introducing the user interface of the Document Editor

            -

            The Document Editor uses a tabbed interface where editing commands are grouped into tabs by functionality.

            +

            The Document Editor uses a tabbed interface, where editing commands are grouped into tabs by functionality.

            Main window of the Online Document Editor:

            Online Document Editor window

            @@ -30,35 +30,37 @@

            Introducing the user interface of the Document Editor

            The Editor header displays the ONLYOFFICE logo, tabs for all opened documents with their names and menu tabs.

            On the left side of the Editor header, the Save, Print file, Undo and Redo buttons are located.

            Icons in the editor header

            -

            On the right side of the Editor header, along with the user name the following icons are displayed:

            +

            On the right side of the Editor header, along with the username the following icons are displayed:

            • Open file location - in the desktop version, it allows opening the folder, where the file is stored, in the File explorer window. In the online version, it allows opening the folder of the Documents module, where the file is stored, in a new browser tab.
            • Share (available in the online version only). It allows adjusting access rights for the documents stored in the cloud.
            • -
            • Mark as favorite - click the star to add a file to favorites as to make it easy to find. The added file is just a shortcut so the file itself remains stored in its original location. Deleting a file from favorites does not remove the file from its original location.
            • -
            • Search - allows to search the document for a particular word or symbol, etc.
            • +
            • Mark as favorite - click the star to add a file to favorites as to make it easy to find. The added file is just a shortcut, so the file itself remains stored in its original location. Deleting a file from favorites does not remove the file from its original location.
            • +
            • Search - allows searching the document for a particular word or symbol, etc.
            -
          • The Top toolbar displays a set of editing commands depending on the selected menu tab. Currently, the following tabs are available: File, Home, Insert, Layout, References, Forms (available with DOCXF files only), Collaboration, Protection, Plugins. -

            The Copy, Paste, Cut and Select All options are always available on the left side of the Top toolbar regardless of the selected tab.

            -
          • -
          • The Status bar located at the bottom of the editor window indicates the page number and word count, as well as displays some notifications (for example, "All changes saved", ‘Connection is lost’ when there is no connection and the editor is trying to reconnect etc.). It also allows setting the text language, enabling spell checking, turning on the track changes mode and adjusting zoom.
          • -
          • The Left sidebar contains the following icons: +
          • + The Top toolbar displays a set of editing commands depending on the selected menu tab. Currently, the following tabs are available: File, Home, Insert, Layout, References, Forms (available with DOCXF files only), Collaboration, Protection, Plugins. +

            The Copy, Paste, Cut and Select All options are always available on the left side of the Top toolbar regardless of the selected tab.

            +
          • +
          • The Status bar located at the bottom of the editor window indicates the page number and word count, as well as displays some notifications (for example, "All changes saved", ‘Connection is lost’ when there is no connection and the editor is trying to reconnect, etc.). It also allows setting the text language, enabling spell checking, turning on the track changes mode and adjusting zoom.
          • +
          • + The Left sidebar contains the following icons:
            • - allows using the Search and Replace tool,
            • - allows opening the Comments panel,
            • - allows going to the Headings panel and managing headings,
            • - (available in the online version only) allows opening the Chat panel,
            • -
            • - (available in the online version only) allows to contact our support team,
            • -
            • - (available in the online version only) allows to view the information about the program.
            • +
            • - (available in the online version only) allows contacting our support team,
            • +
            • - (available in the online version only) allows viewing the information about the program.
          • -
          • Right sidebar sidebar allows adjusting additional parameters of different objects. When you select a particular object in the text, the corresponding icon is activated on the Right sidebar. Click this icon to expand the Right sidebar.
          • +
          • Right sidebar allows adjusting additional parameters of different objects. When you select a particular object in the text, the corresponding icon is activated on the Right sidebar. Click this icon to expand the Right sidebar.
          • The horizontal and vertical Rulers make it possible to align the text and other elements in the document, set up margins, tab stops and paragraph indents.
          • -
          • Working area allows to view document content, enter and edit data.
          • -
          • Scroll bar on the right allows to scroll up and down multi-page documents.
          • +
          • Working area allows viewing document content, enter and edit data.
          • +
          • Scroll bar on the right allows scrolling up and down multipage documents.

    For your convenience, you can hide some components and display them again when them when necessary. To learn more about adjusting view settings, please refer to this page.

    - +

    When there are many icons on the left and right panels, the ones below will be hidden, and they can be accessed via the More button.

    \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/en/ProgramInterface/ReferencesTab.htm b/apps/documenteditor/main/resources/help/en/ProgramInterface/ReferencesTab.htm index 177f02619e..1d0653840c 100644 --- a/apps/documenteditor/main/resources/help/en/ProgramInterface/ReferencesTab.htm +++ b/apps/documenteditor/main/resources/help/en/ProgramInterface/ReferencesTab.htm @@ -29,7 +29,7 @@

    References tab

  • create and automatically update a table of contents,
  • insert footnotes and endnotes,
  • insert hyperlinks,
  • -
  • add bookmarks.
  • +
  • add bookmarks,
  • add captions,
  • insert cross-references,
  • create a table of figures.
  • diff --git a/apps/documenteditor/main/resources/help/en/ProgramInterface/ViewTab.htm b/apps/documenteditor/main/resources/help/en/ProgramInterface/ViewTab.htm index 302a53a924..24ad11387a 100644 --- a/apps/documenteditor/main/resources/help/en/ProgramInterface/ViewTab.htm +++ b/apps/documenteditor/main/resources/help/en/ProgramInterface/ViewTab.htm @@ -28,12 +28,12 @@

    View tab

    View options available on this tab:

    The following options allow you to configure the elements to display or to hide. Check the elements to make them visible:

    Content Control settings window

    Deleting a label

    -

    To delete a label you have created, choose the label from the label list within the caption dialogue box then click the Delete label button. The label you created will be immediately deleted.

    -

    Note: You may delete labels you have created but you cannot delete the default labels.

    +

    To delete a label you have created, choose the label from the label list within the caption dialogue box, then click the Delete label button. The label you created will be immediately deleted.

    +

    Note: You may delete labels you have created, but you cannot delete the default labels.

    Formatting captions

    As soon as you add a caption, a new style for captions is automatically added to the styles section. To change the style for all captions throughout the document, you should follow these steps:

    The Select button allows you to select the entire pivot table.

    If you change the data in your source data set, select the pivot table and click the Refresh button to update the pivot table.

    + +

    Expand or collapse fields

    +

    To expand or collapse data details, click a field with the right mouse button to open the context menu, choose the Expand/Collapse menu item, then select the necessary option:

    + +

    The groups are hidden behind the plus/minus icons. You can also expand/collapse fields by double-clicking the pivot table headers.

    +

    The Expand option, when the last field of rows or columns is selected, opens a dialog window for adding a new field to the row or column. Choose the necessary field and click OK.

    +

    Pivot Table

    Change the style of pivot tables

    You can change the appearance of pivot tables in a spreadsheet using the style editing tools available on the top toolbar.

    diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm index fb3440bd9d..b5ad21b6c1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm @@ -75,7 +75,10 @@

    Printing

  • Settings of sheet - specify individual print settings for each separate sheet, if you have selected the All Sheets option in the Print range drop-down list.
  • Page size - select one of the available sizes from the drop-down list.
  • Page orientation - choose the Portrait option if you wish to print vertically on the page, or use the Landscape option to print horizontally.
  • -
  • Margins - choose one of the availabe presets: Normal, Narrow, or Wide, or choose the Custom option and specify the distance between the worksheet data and the edges of the printed page changing the default sizes in the Top, Bottom, Left and Right fields.
  • +
  • Margins - choose one of the availabe presets: Normal, Narrow, or Wide, or choose the Custom option and specify the distance between the worksheet data and the edges of the printed page changing the default sizes in the Top, Bottom, Left and Right fields. +

    To center data on the printed page, choose the Custom option from the Margins menu, check the Vertically/Horizontally box in the Center on page section, and click OK.

    +

    Margins window

    +
  • Scaling - if you do not want some columns or rows to be printed on the second page, you can shrink sheet contents to fit it on one page by selecting the corresponding option: Actual Size, Fit Sheet on One Page, Fit All Columns on One Page or Fit All Rows on One Page. Leave the Actual Size option to print the sheet without adjusting.

    If you choose the Custom Options item from the menu, the Scale Settings window will open:

    diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/expand_last.png b/apps/spreadsheeteditor/main/resources/help/en/images/expand_last.png new file mode 100644 index 0000000000..4a99010e83 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/expand_last.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/goal_seek.png b/apps/spreadsheeteditor/main/resources/help/en/images/goal_seek.png new file mode 100644 index 0000000000..693e00eeb7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/goal_seek.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/goal_seek_status.png b/apps/spreadsheeteditor/main/resources/help/en/images/goal_seek_status.png new file mode 100644 index 0000000000..6422874239 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/goal_seek_status.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/datatab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/datatab.png index 3559e3794c..2a8c57ffeb 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/datatab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/datatab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_datatab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_datatab.png index b9c14b9d9e..38d95f6dbf 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_datatab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_datatab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_editorwindow.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_editorwindow.png index 1b269d4179..f49a7bd6e2 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_editorwindow.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_editorwindow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_hometab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_hometab.png index 5473c96039..1027fef941 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_hometab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_hometab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_inserttab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_inserttab.png index 4ad5ff3f5e..8d094a5097 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_inserttab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_inserttab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_pivottabletab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_pivottabletab.png index 3ea8bb6b41..19f43ce93f 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_pivottabletab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_pivottabletab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_pluginstab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_pluginstab.png index 86d4d38859..5c0ceca5f3 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_pluginstab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_pluginstab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/editorwindow.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/editorwindow.png index 752f0b1949..99e3be2108 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/editorwindow.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/editorwindow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/hometab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/hometab.png index 784b8f7da1..5c49b0331b 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/hometab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/hometab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/inserttab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/inserttab.png index efb9eb8f9c..4c9618fdb2 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/inserttab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/inserttab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/pivottabletab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/pivottabletab.png index 2c9c340c1e..b5a8c616ea 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/pivottabletab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/pivottabletab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/pluginstab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/pluginstab.png index 10981b3e30..808bd35741 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/pluginstab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/pluginstab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/margins.png b/apps/spreadsheeteditor/main/resources/help/en/images/margins.png new file mode 100644 index 0000000000..09f1c19a41 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/margins.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/recommendedchart.png b/apps/spreadsheeteditor/main/resources/help/en/images/recommendedchart.png new file mode 100644 index 0000000000..04089e5715 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/recommendedchart.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/series_context_menu.png b/apps/spreadsheeteditor/main/resources/help/en/images/series_context_menu.png new file mode 100644 index 0000000000..1e09f8069a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/series_context_menu.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/series_menu.png b/apps/spreadsheeteditor/main/resources/help/en/images/series_menu.png new file mode 100644 index 0000000000..01d7ff2a8b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/series_menu.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/series_window.png b/apps/spreadsheeteditor/main/resources/help/en/images/series_window.png new file mode 100644 index 0000000000..4ce2aff892 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/series_window.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/sortcomments.png b/apps/spreadsheeteditor/main/resources/help/en/images/sortcomments.png index d552a786c1..6dcbd79f42 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/sortcomments.png and b/apps/spreadsheeteditor/main/resources/help/en/images/sortcomments.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/search/indexes.js b/apps/spreadsheeteditor/main/resources/help/en/search/indexes.js index 4eaa8853fc..888b080a12 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/search/indexes.js +++ b/apps/spreadsheeteditor/main/resources/help/en/search/indexes.js @@ -3,1957 +3,1952 @@ var indexes = { "id": "Functions/abs.htm", "title": "ABS Function", - "body": "The ABS function is one of the math and trigonometry functions. It is used to return the absolute value of a number. The ABS function syntax is: ABS(x) where x is a numeric value entered manually or included into the cell you make reference to. To apply the ABS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the ABS function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ABS function is one of the math and trigonometry functions. It is used to return the absolute value of a number (i.e. the number without its sign). Syntax ABS(number) The ABS function has the following argument: Argument Description number A numeric value for which you want to get the absolute value. Notes How to apply the ABS function. Examples There is a single argument: number = A1 = -123.14. So the function returns 123.14 (-123.14 without its sign)." }, { "id": "Functions/accrint.htm", "title": "ACCRINT Function", - "body": "The ACCRINT function is one of the financial functions. It is used to calculate the accrued interest for a security that pays periodic interest. The ACCRINT function syntax is: ACCRINT(issue, first-interest, settlement, rate, [par], frequency[, [basis]]) where issue is the issue date of the security. first-interest is the date when the first interest is paid. settlement is the date when the security is purchased. rate is the annual coupon rate of the security. par is the par value of the security. It is an optional argument. If it is omitted, the function will assume par to be $1000. frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the ACCRINT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the ACCRINT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The ACCRINT function is one of the financial functions. It is used to calculate the accrued interest for a security that pays periodic interest. Syntax ACCRINT(issue, first_interest, settlement, rate, par, frequency, [basis], [calc_method]) The ACCRINT function has the following arguments: Argument Description issue The issue date of the security. first_interest The date when the first interest is paid. settlement The date when the security is purchased. rate The annual coupon rate of the security. par The par value of the security. It is an optional argument. If it is omitted, the function will assume par to be $1000. frequency The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. calc_method A logical value that specifies the way to calculate the accrued interest when the settlement date is later than the first_interest date. It is an optional argument. TRUE (1) returns the accrued interest from issue to settlement. FALSE (0) returns the accrued interest from first_interest to settlement. If the argument is omitted, TRUE is used by default. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the ACCRINT function. Examples The figure below displays the result returned by the ACCRINT function." }, { "id": "Functions/accrintm.htm", "title": "ACCRINTM Function", - "body": "The ACCRINTM function is one of the financial functions. It is used to calculate the accrued interest for a security that pays interest at maturity. The ACCRINTM function syntax is: ACCRINTM(issue, settlement, rate, [[par] [, [basis]]]) where issue is the issue date of the security. settlement is the maturity date of the security. rate is the annual interest rate of the security. par is the par value of the security. It is an optional argument. If it is omitted, the function will assume par to be $1000. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the ACCRINTM function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the ACCRINTM function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The ACCRINTM function is one of the financial functions. It is used to calculate the accrued interest for a security that pays interest at maturity. Syntax ACCRINTM(issue, settlement, rate, par, [basis]) The ACCRINTM function has the following arguments: Argument Description issue The issue date of the security. settlement The maturity date of the security. rate The annual interest rate of the security. par The par value of the security. It is an optional argument. If it is omitted, the function will assume par to be $1000. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the ACCRINTM function. Examples The figure below displays the result returned by the ACCRINTM function." }, { "id": "Functions/acos.htm", "title": "ACOS Function", - "body": "The ACOS function is one of the math and trigonometry functions. It is used to return the arccosine of a number. The ACOS function syntax is: ACOS(x) where x is the cosine of the angle you wish to find, a numeric value greater than or equal to -1 but less than or equal to 1 entered manually or included into the cell you make reference to. To apply the ACOS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the ACOS function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ACOS function is one of the math and trigonometry functions. It is used to return the arccosine of a number. Syntax ACOS(number) The ACOS function has the following argument: Argument Description number The cosine of the angle you wish to find, a numeric value greater than or equal to -1 but less than or equal to 1. Notes How to apply the ACOS function. Examples The figure below displays the result returned by the ACOS function." }, { "id": "Functions/acosh.htm", "title": "ACOSH Function", - "body": "The ACOSH function is one of the math and trigonometry functions. It is used to return the inverse hyperbolic cosine of a number. The ACOSH function syntax is: ACOSH(x) where x is a numeric value greater than or equal to 1 entered manually or included into the cell you make reference to. To apply the ACOSH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the ACOSH function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ACOSH function is one of the math and trigonometry functions. It is used to return the inverse hyperbolic cosine of a number. Syntax ACOSH(number) The ACOSH function has the following argument: Argument Description number A numeric value greater than or equal to 1. Notes How to apply the ACOSH function. Examples The figure below displays the result returned by the ACOSH function." }, { "id": "Functions/acot.htm", "title": "ACOT Function", - "body": "The ACOT function is one of the math and trigonometry functions. It is used to return the principal value of the arccotangent, or inverse cotangent, of a number. The returned angle is measured in radians in the range 0 to Pi. The ACOT function syntax is: ACOT(x) where x is the cotangent of the angle you wish to find, a numeric value entered manually or included into the cell you make reference to. To apply the ACOT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the ACOT function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ACOT function is one of the math and trigonometry functions. It is used to return the principal value of the arccotangent, or inverse cotangent, of a number. The returned angle is measured in radians in the range 0 to Pi. Syntax ACOT(number) The ACOT function has the following argument: Argument Description number The cotangent of the angle you wish to find, a numeric value. Notes How to apply the ACOT function. Examples The figure below displays the result returned by the ACOT function." }, { "id": "Functions/acoth.htm", "title": "ACOTH Function", - "body": "The ACOTH function is one of the math and trigonometry functions. It is used to return the inverse hyperbolic cotangent of a number. The ACOTH function syntax is: ACOTH(x) where x is a numeric value less than -1 or greater than 1 entered manually or included into the cell you make reference to. To apply the ACOTH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the ACOTH function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ACOTH function is one of the math and trigonometry functions. It is used to return the inverse hyperbolic cotangent of a number. Syntax ACOTH(number) The ACOTH function has the following argument: Argument Description number A numeric value less than -1 or greater than 1. Notes How to apply the ACOTH function. Examples The figure below displays the result returned by the ACOTH function." }, { "id": "Functions/address.htm", "title": "ADDRESS Function", - "body": "The ADDRESS function is one of the lookup and reference functions. It is used to return a text representation of a cell address. The ADDRESS function syntax is: ADDRESS(row-number, col-number[ , [ref-type] [, [A1-ref-type-flag] [, sheet name]]]) where row-number is a row number to use in a cell address. col-number is a column number to use in a cell address. ref-type is a type of reference. It can be one of the following numeric values: Numeric value Meaning 1 or omitted Absolute referencing 2 Absolute row; relative column 3 Relative row; absolute column 4 Relative referencing A1-ref-type-flag is an optional logical value: TRUE or FALSE. If it is set to TRUE or omitted, the function will return an A1-style reference. If it is set to FALSE, the function will return an R1C1-style reference. sheet name is the name of the sheet to use in a cell address. It's an optional value. If it is omitted, the function will return the cell address without the sheet name indicated. These arguments can be entered manually or included into the cells you make reference to. To apply the ADDRESS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the ADDRESS function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The ADDRESS function is one of the lookup and reference functions. It is used to return a text representation of a cell address. Syntax ADDRESS(row_num, column_num, [abs_num], [a1], [sheet_text]) The ADDRESS function has the following arguments: Argument Description row_num A row number to use in a cell address. column_num A column number to use in a cell address. abs_num A type of reference. The possible values are listed in the table below. a1 An optional logical value: TRUE or FALSE. If it is set to TRUE or omitted, the function will return an A1-style reference. If it is set to FALSE, the function will return an R1C1-style reference. sheet_text The name of the sheet to use in a cell address. It's an optional value. If it is omitted, the function will return the cell address without the sheet name indicated. The abs_num argument can be one of the following: Numeric value Meaning 1 or omitted Absolute referencing 2 Absolute row; relative column 3 Relative row; absolute column 4 Relative referencing Notes How to apply the ADDRESS function. Examples The figure below displays the result returned by the ADDRESS function." }, { "id": "Functions/aggregate.htm", "title": "AGGREGATE Function", - "body": "The AGGREGATE function is one of the math and trigonometry functions. The function is used to return an aggregate in a list or database. The AGGREGATE function can apply different aggregate functions to a list or database with the option to ignore hidden rows and error values. The AGGREGATE function syntax is: AGGREGATE(function_num, options, ref1 [, ref2], ...) where function_num is a numeric value that specifies which function to use. The possible values are listed in the table below. function_num Function 1 AVERAGE 2 COUNT 3 COUNTA 4 MAX 5 MIN 6 PRODUCT 7 STDEV.S 8 STDEV.P 9 SUM 10 VAR.S 11 VAR.P 12 MEDIAN 13 MODE.SNGL 14 LARGE 15 SMALL 16 PERCENTILE.INC 17 QUARTILE.INC 18 PERCENTILE.EXC 19 QUARTILE.EXC options is a numeric value that specifies which values should be ignored. The possible values are listed in the table below. Numeric value Behavior 0 or omitted Ignore nested SUBTOTAL and AGGREGATE functions 1 Ignore hidden rows, nested SUBTOTAL and AGGREGATE functions 2 Ignore error values, nested SUBTOTAL and AGGREGATE functions 3 Ignore hidden rows, error values, nested SUBTOTAL and AGGREGATE functions 4 Ignore nothing 5 Ignore hidden rows 6 Ignore error values 7 Ignore hidden rows and error values ref1(2) is up to 253 numeric values or a reference to the cell range containing the values for which you want the aggregate value. Note: if you want to use one of the following functions: LARGE, SMALL, PERCENTILE.INC, QUARTILE.INC, PERCENTILE.EXC, or QUARTILE.EXC, ref1 must be a reference to the cell range and ref2 must be the second argument that is required for these functions (k or quart). Function Syntax LARGE LARGE(array, k) SMALL SMALL(array, k) PERCENTILE.INC PERCENTILE.INC(array, k) QUARTILE.INC QUARTILE.INC(array, quart) PERCENTILE.EXC PERCENTILE.EXC(array, k) QUARTILE.EXC QUARTILE.EXC(array, quart) To apply the AGGREGATE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the AGGREGATE function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell. The figure below displays the result returned by the AGGREGATE function when the SUM function is applied. The figure below displays the result returned by the AGGREGATE function when the LARGE function is applied, ref1 is a reference to the cell range, and k is equal to 2. The function returns the second largest value in cells A1-A4." + "body": "The AGGREGATE function is one of the math and trigonometry functions. The function is used to return an aggregate in a list or database. The AGGREGATE function can apply different aggregate functions to a list or database with the option to ignore hidden rows and error values. Syntax AGGREGATE(function_num, options, ref1, [ref2], ...) The AGGREGATE function has the following arguments: Argument Description function_num A numeric value that specifies which function to use. The possible values are listed in the table below. options A numeric value that specifies which values should be ignored. The possible values are listed in the table below. ref1 The first numeric value for which you want the aggregate value. ref2 Up to 253 numeric values or a reference to the cell range containing the values for which you want the aggregate value. It is an optional argument. The function_num argument can be one of the following: function_num Function 1 AVERAGE 2 COUNT 3 COUNTA 4 MAX 5 MIN 6 PRODUCT 7 STDEV.S 8 STDEV.P 9 SUM 10 VAR.S 11 VAR.P 12 MEDIAN 13 MODE.SNGL 14 LARGE 15 SMALL 16 PERCENTILE.INC 17 QUARTILE.INC 18 PERCENTILE.EXC 19 QUARTILE.EXC The options argument can be one of the following: Numeric value Behavior 0 or omitted Ignore nested SUBTOTAL and AGGREGATE functions 1 Ignore hidden rows, nested SUBTOTAL and AGGREGATE functions 2 Ignore error values, nested SUBTOTAL and AGGREGATE functions 3 Ignore hidden rows, error values, nested SUBTOTAL and AGGREGATE functions 4 Ignore nothing 5 Ignore hidden rows 6 Ignore error values 7 Ignore hidden rows and error values Notes If you want to use one of the following functions: LARGE, SMALL, PERCENTILE.INC, QUARTILE.INC, PERCENTILE.EXC, or QUARTILE.EXC, ref1 must be a reference to the cell range and ref2 must be the second argument that is required for these functions (k or quart). Function Syntax LARGE LARGE(array, k) SMALL SMALL(array, k) PERCENTILE.INC PERCENTILE.INC(array, k) QUARTILE.INC QUARTILE.INC(array, quart) PERCENTILE.EXC PERCENTILE.EXC(array, k) QUARTILE.EXC QUARTILE.EXC(array, quart) How to apply the AGGREGATE function. Examples The figure below displays the result returned by the AGGREGATE function when the SUM function is applied. The figure below displays the result returned by the AGGREGATE function when the LARGE function is applied, ref1 is a reference to the cell range, and k is equal to 2. The function returns the second largest value in cells A1-A4." }, { "id": "Functions/amordegrc.htm", "title": "AMORDEGRC Function", - "body": "The AMORDEGRC function is one of the financial functions. It is used to calculate the depreciation of an asset for each accounting period using a degressive depreciation method. The AMORDEGRC function syntax is: AMORDEGRC(cost, date-purchased, first-period, salvage, period, rate[, [basis]]) where cost is the cost of the asset. date-purchased is the date when asset is purchased. first-period is the date when the first period ends. salvage is the salvage value of the asset at the end of its lifetime. period is the period you wish to calculate depreciation for. rate is the rate of depreciation. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the AMORDEGRC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the AMORDEGRC function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." - }, - { - "id": "Functions/amorintm.htm", - "title": "FV Function", - "body": "The FV function is one of the financial functions. It is used to calculate the future value of an investment based on a specified interest rate and a constant payment schedule. The FV function syntax is: FV(rate, nper, pmt [, [pv] [,[type]]]) where rate is the interest rate for the investment. nper is a number of payments. pmt is a payment amount. pv is a present value of the payments. It is an optional argument. If it is omitted, the function will assume pv to be 0. type is a period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period. Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. The numeric values can be entered manually or included into the cell you make reference to. To apply the FV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the FV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The AMORDEGRC function is one of the financial functions. It is used to calculate the depreciation of an asset for each accounting period using a degressive depreciation method. Syntax AMORDEGRC(cost, date_purchased, first_period, salvage, period, rate, [basis]) The AMORDEGRC function has the following arguments: Argument Description cost The cost of the asset. date_purchased The date when asset is purchased. first_period The date when the first period ends. salvage The salvage value of the asset at the end of its lifetime. period The period you wish to calculate depreciation for. rate The rate of depreciation. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the AMORDEGRC function. Examples" }, { "id": "Functions/amorlinc.htm", "title": "AMORLINC Function", - "body": "The AMORLINC function is one of the financial functions. It is used to calculate the depreciation of an asset for each accounting period using a linear depreciation method. The AMORLINC function syntax is: AMORLINC(cost, date-purchased, first-period, salvage, period, rate[, [basis]]) where cost is the cost of the asset. date-purchased is the date when asset is purchased. first-period is the date when the first period ends. salvage is the salvage value of the asset at the end of its lifetime. period is the period you wish to calculate depreciation for. rate is the rate of depreciation. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the AMORLINC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the AMORLINC function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The AMORLINC function is one of the financial functions. It is used to calculate the depreciation of an asset for each accounting period using a linear depreciation method. Syntax AMORLINC(cost, date_purchased, first_period, salvage, period, rate, [basis]) The AMORLINC function has the following arguments: Argument Description cost The cost of the asset. date_purchased The date when asset is purchased. first_period The date when the first period ends. salvage The salvage value of the asset at the end of its lifetime. period The period you wish to calculate depreciation for. rate The rate of depreciation. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the AMORLINC function. Examples The figure below displays the result returned by the AMORLINC function." }, { "id": "Functions/and.htm", "title": "AND Function", - "body": "The AND function is one of the logical functions. It is used to check if the logical value you enter is TRUE or FALSE. The function returns TRUE if all the arguments are TRUE. The AND function syntax is: AND(logical1, logical2, ...) where logical1/2/n is a value entered manually or included into the cell you make reference to. To apply the AND function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Logical function group from the list, click the AND function, enter the required arguments separating them by commas, Note: you can enter up to 255 logical values. press the Enter button. The result will be displayed in the selected cell. The function returns FALSE if at least one of the arguments is FALSE. For example: There are three arguments: logical1 = A1<100, logical2 = 34<100, logical3 = 50<100, where A1 is 12. All these logical expressions are TRUE. So the function returns TRUE. If we change the A1 value from 12 to 112, the function returns FALSE:" + "body": "The AND function is one of the logical functions. It is used to check if the logical value you enter is TRUE or FALSE. The function returns TRUE if all the arguments are TRUE. Syntax AND(logical1, [logical2], ...) The AND function has the following arguments: Argument Description logical1/2/n A condition that you want to check if it is TRUE or FALSE Notes How to apply the AND function. The function returns FALSE if at least one of the arguments is FALSE. Examples There are three arguments: logical1 = A1<100, logical2 = 34<100, logical3 = 50<100, where A1 is 12. All these logical expressions are TRUE. So the function returns TRUE. If we change the A1 value from 12 to 112, the function returns FALSE:" }, { "id": "Functions/arabic.htm", "title": "ARABIC Function", - "body": "The ARABIC function is one of the math and trigonometry functions. The function is used to convert a Roman numeral to an Arabic numeral. The ARABIC function syntax is: ARABIC(x) where x is a text representation of a Roman numeral: a string enclosed in quotation marks or a reference to a cell containing text. Note: if an empty string (\"\") is used as an argument, the function returns the value 0. To apply the ARABIC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the ARABIC function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ARABIC function is one of the math and trigonometry functions. The function is used to convert a Roman numeral to an Arabic numeral. Syntax ARABIC(text) The ARABIC function has the following argument: Argument Description text A text representation of a Roman numeral: a string enclosed in quotation marks or a reference to a cell containing text. Notes If an empty string (\"\") is used as an argument, the function returns the value 0. How to apply the ARABIC function. Examples The figure below displays the result returned by the ARABIC function." }, { "id": "Functions/arraytotext.htm", "title": "ARRAYTOTEXT Function", - "body": "The ARRAYTOTEXT function is a text and data function. It is used to return a range of data as a text string. The ARRAYTOTEXT function syntax is: =ARRAYTOTEXT(array, [format]) where array is the range of data to return as text, [format] is an optional argument. The following values are available: 0 the values in the text string will be separated by comma (set by default), 1 to enclose each text value in double quotes (except for numbers, true/false values and errors), to use a semicolon as a delimiter and to enclose the whole text string in curly braces. To apply the ARRAYTOTEXT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the ARRAYTOTEXT function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The ARRAYTOTEXT function is one of the text and data functions. It is used to return a range of data as a text string. Syntax ARRAYTOTEXT(array, [format]) The ARRAYTOTEXT function has the following arguments: Argument Description array The range of data to return as text. format An optional argument. The possible values are listed in the table below. The format argument can be one of the following: Format Explanation 0 The values in the text string will be separated by comma (set by default). 1 To enclose each text value in double quotes (except for numbers, true/false values and errors), to use a semicolon as a delimiter and to enclose the whole text string in curly braces. Notes How to apply the ARRAYTOTEXT function. Examples The figure below displays the result returned by the ARRAYTOTEXT function." }, { "id": "Functions/asc.htm", "title": "ASC Function", - "body": "The ASC function is one of the text and data functions. Is used to change full-width (double-byte) characters to half-width (single-byte) characters for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. The ASC function syntax is: ASC(text) where text is a data entered manually or included into the cell you make reference to. If the text does not contain full-width characters it remains unchanged. To apply the ASC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the ASC function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ASC function is one of the text and data functions. Is used to change full-width (double-byte) characters to half-width (single-byte) characters for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. Syntax ASC(text) The ASC function has the following argument: Argument Description text The text or a reference to a cell containing the text you want to change. If the text does not contain full-width characters it remains unchanged. Notes How to apply the ASC function. Examples The figure below displays the result returned by the ASC function." }, { "id": "Functions/asin.htm", "title": "ASIN Function", - "body": "The ASIN function is one of the math and trigonometry functions. It is used to return the arcsine of a number. The ASIN function syntax is: ASIN(x) where x is the sine of the angle you wish to find, a numeric value greater than or equal to -1 but less than or equal to 1 entered manually or included into the cell you make reference to. To apply the ASIN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the ASIN function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ASIN function is one of the math and trigonometry functions. It is used to return the arcsine of a number. Syntax ASIN(number) The ASIN function has the following argument: Argument Description number The sine of the angle you wish to find, a numeric value greater than or equal to -1 but less than or equal to 1 entered manually or included into the cell you make reference to. Notes How to apply the ASIN function. Examples The figure below displays the result returned by the ASIN function." }, { "id": "Functions/asinh.htm", "title": "ASINH Function", - "body": "The ASINH function is one of the math and trigonometry functions. It is used to return the inverse hyperbolic sine of a number. The ASINH function syntax is: ASINH(x) where x is any numeric value entered manually or included into the cell you make reference to. To apply the ASINH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the ASINH function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ASINH function is one of the math and trigonometry functions. It is used to return the inverse hyperbolic sine of a number. Syntax ASINH(number) The ASINH function has the following argument: Argument Description number Any numeric value entered manually or included into the cell you make reference to. Notes How to apply the ASINH function. Examples The figure below displays the result returned by the ASINH function." }, { "id": "Functions/atan.htm", "title": "ATAN Function", - "body": "The ATAN function is one of the math and trigonometry functions. It is used to return the arctangent of a number. The ATAN function syntax is: ATAN(x) where x is the tangent of the angle you wish to find, a numeric value entered manually or included into the cell you make reference to. To apply the ATAN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the ATAN function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ATAN function is one of the math and trigonometry functions. It is used to return the arctangent of a number. Syntax ATAN(number) The ATAN function has the following argument: Argument Description number The tangent of the angle you wish to find, a numeric value entered manually or included into the cell you make reference to. Notes How to apply the ATAN function. Examples The figure below displays the result returned by the ATAN function." }, { "id": "Functions/atan2.htm", "title": "ATAN2 Function", - "body": "The ATAN2 function is one of the math and trigonometry functions. It is used to return the arctangent of x and y coordinates. The ATAN2 function syntax is: ATAN2(x, y) where x, y are the x and y coordinates of a point, numeric values entered manually or included into the cell you make reference to. To apply the ATAN2 function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the ATAN2 function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The ATAN2 function is one of the math and trigonometry functions. It is used to return the arctangent of x and y coordinates. Syntax ATAN2(x_num, y_num) The ATAN2 function has the following arguments: Argument Description x_num The x coordinate of a point, a numeric value entered manually or included into the cell you make reference to. y_num The y coordinate of a point, a numeric value entered manually or included into the cell you make reference to. Notes How to apply the ATAN2 function. Examples The figure below displays the result returned by the ATAN2 function." }, { "id": "Functions/atanh.htm", "title": "ATANH Function", - "body": "The ATANH function is one of the math and trigonometry functions. It is used to return the inverse hyperbolic tangent of a number. The ATANH function syntax is: ATANH(x) where x is a numeric value greater than - 1 but less than 1 entered manually or included into the cell you make reference to. To apply the ATANH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the ATANH function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ATANH function is one of the math and trigonometry functions. It is used to return the inverse hyperbolic tangent of a number. Syntax ATANH(number) The ATANH function has the following argument: Argument Description number A numeric value greater than - 1 but less than 1 entered manually or included into the cell you make reference to. Notes How to apply the ATANH function. Examples The figure below displays the result returned by the ATANH function." }, { "id": "Functions/avedev.htm", "title": "AVEDEV Function", - "body": "The AVEDEV function is one of the statistical functions. It is used to analyze the range of data and return the average of the absolute deviations of numbers from their mean. The AVEDEV function syntax is: AVEDEV(argument-list) where argument-list is up to 30 numeric values entered manually or included into the cells you make reference to. To apply the AVEDEV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the AVEDEV function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The AVEDEV function is one of the statistical functions. It is used to analyze the range of data and return the average of the absolute deviations of numbers from their mean. Syntax AVEDEV(number1, [number2], ...) The AVEDEV function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to find the average of the absolute deviations. Notes How to apply the AVEDEV function. Examples The figure below displays the result returned by the AVEDEV function." }, { "id": "Functions/average.htm", "title": "AVERAGE Function", - "body": "The AVERAGE function is one of the statistical functions. It is used to analyze the range of data and find the average value. The AVERAGE function syntax is: AVERAGE(argument-list) where argument-list is up to 255 numerical values entered manually or included into the cells you make reference to. How to use AVERAGE To apply the AVERAGE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the AVERAGE function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The AVERAGE function is one of the statistical functions. It is used to analyze the range of data and find the average value. Syntax AVERAGE(number1, [number2], ...) The AVERAGE function has the following arguments: Argument Description number1/2/n Up to 255 numerical values for which you want to find the average value. Notes How to apply the AVERAGE function. Examples The figure below displays the result returned by the AVERAGE function." }, { "id": "Functions/averagea.htm", "title": "AVERAGEA Function", - "body": "The AVERAGEA function is one of the statistical functions. It is 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. The AVERAGEA function syntax is: AVERAGEA(argument-list) where argumenti-list is up to 255 values entered manually or included into the cells you make reference to. To apply the AVERAGEA function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the AVERAGEA function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The AVERAGEA function is one of the statistical functions. It is 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. Syntax AVERAGEA(value1, [value2], ...) The AVERAGEA function has the following arguments: Argument Description value1/2/n Up to 255 values for which you want to find the average value. Notes How to apply the AVERAGEA function. Examples The figure below displays the result returned by the AVERAGEA function." }, { "id": "Functions/averageif.htm", "title": "AVERAGEIF Function", - "body": "The AVERAGEIF function is one of the statistical functions. It is 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. The AVERAGEIF function syntax is: AVERAGEIF(cell-range, selection-criteria [,average-range]) where cell-range is the selected range of cells to apply the criterion to. selection-criteria is the criterion you wish to apply, a value entered manually or included into the cell you make reference to. average-range is the selected range of cells you need to find the average in. average-range is an optional argument. If it is omitted, the function will find the average in cell-range. How to use AVERAGEIF To apply the AVERAGEIF function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the AVERAGEIF function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The AVERAGEIF function is one of the statistical functions. It is 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. Syntax AVERAGEIF(range, criteria, [average_range]) The AVERAGEIF function has the following arguments: Argument Description range The selected range of cells to apply the criterion to. criteria The criterion you wish to apply, a value entered manually or included into the cell you make reference to. average_range The selected range of cells you need to find the average in. Notes average_range is an optional argument. If it is omitted, the function will find the average in range. How to apply the AVERAGEIF function. Examples The figure below displays the result returned by the AVERAGEIF function." }, { "id": "Functions/averageifs.htm", "title": "AVERAGEIFS Function", - "body": "The AVERAGEIFS function is one of the statistical functions. It is used to analyze the range of data and find the average value of all numbers in a range of cells, based on multiple criteria. The AVERAGEIFS function syntax is: AVERAGEIFS(average-range, criteria-range-1, criteria-1, [criteria-range-2, criteria-2], ...) where average-range is the selected range of cells you need to find the average in. It is a required argument. criteria-range-1 is the first selected range of cells to apply the criteria-1 to. It is a required argument. criteria-1 is the first condition that must be met. It is applied to the criteria-range-1 and used to determine the cells in the average-range to average. It can be a value entered manually or included into the cell you make reference to. It is a required argument. criteria-range-2, criteria-2, ... are additional ranges of cells and their corresponding criteria. These arguments are optional. You can add up to 127 ranges and corresponding criteria. Note: you can use wildcard characters when specifying criteria. The question mark \"?\" can replace any single character and the asterisk \"*\" can be used instead of any number of characters. How to use AVERAGEIFS To apply the AVERAGEIFS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the AVERAGEIFS function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The AVERAGEIFS function is one of the statistical functions. It is used to analyze the range of data and find the average value of all numbers in a range of cells, based on multiple criteria. Syntax AVERAGEIFS(average_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...) The AVERAGEIFS function has the following arguments: Argument Description average_range The selected range of cells you need to find the average in. It is a required argument. criteria_range1 The first selected range of cells to apply the criteria1 to. It is a required argument. criteria1 The first condition that must be met. It is applied to the criteria_range1 and used to determine the cells in the average_range to average. It can be a value entered manually or included into the cell you make reference to. It is a required argument. criteria_range2, criteria2, ... Additional ranges of cells and their corresponding criteria. These arguments are optional. You can add up to 127 ranges and corresponding criteria. Notes You can use wildcard characters when specifying criteria. The question mark \"?\" can replace any single character and the asterisk \"*\" can be used instead of any number of characters. How to apply the AVERAGEIFS function. Examples The figure below displays the result returned by the AVERAGEIFS function." }, { "id": "Functions/base.htm", "title": "BASE Function", - "body": "The BASE function is one of the math and trigonometry functions. It is used to convert a number into a text representation with the given base. The BASE function syntax is: BASE(number, base[, min-lenght]) where number is a number you want to convert. An integer greater than or equal to 0 and less than 2^53. base is a base you want to convert the number to. An integer greater than or equal to 2 and less than or equal to 36. min-lenght is a minimum length of the returned string. An integer greater than or equal to 0 and less than 256. It is an optional parameter. If the result is shorter than the minimum lenght specified, leading zeros are added to the string. The numeric values can be entered manually or included into the cells you make reference to. To apply the BASE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the BASE function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The BASE function is one of the math and trigonometry functions. It is used to convert a number into a text representation with the given base. Syntax BASE(number, radix, [min_length]) The BASE function has the following arguments: Argument Description number A number you want to convert. An integer greater than or equal to 0 and less than 2^53. radix A base you want to convert the number to. An integer greater than or equal to 2 and less than or equal to 36. min_length A minimum length of the returned string. An integer greater than or equal to 0 and less than 256. It is an optional parameter. If the result is shorter than the minimum lenght specified, leading zeros are added to the string. Notes How to apply the BASE function. Examples The figure below displays the result returned by the BASE function." }, { "id": "Functions/besseli.htm", "title": "BESSELI Function", - "body": "The BESSELI function is one of the engineering functions. It is used to return the modified Bessel function, which is equivalent to the Bessel function evaluated for purely imaginary arguments. The BESSELI function syntax is: BESSELI(X, N) where X is the value at which to evaluate the function, N is the order of the Bessel function, a numeric value greater than or equal to 0. The numeric values can be entered manually or included into the cell you make reference to. To apply the BESSELI function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the BESSELI function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The BESSELI function is one of the engineering functions. It is used to return the modified Bessel function, which is equivalent to the Bessel function evaluated for purely imaginary arguments. Syntax BESSELI(x, n) The BESSELI function has the following arguments: Argument Description x The value at which to evaluate the function. n The order of the Bessel function, a numeric value greater than or equal to 0. Notes How to apply the BESSELI function. Examples The figure below displays the result returned by the BESSELI function." }, { "id": "Functions/besselj.htm", "title": "BESSELJ Function", - "body": "The BESSELJ function is one of the engineering functions. It is used to return the Bessel function. The BESSELJ function syntax is: BESSELJ(X, N) where X is the value at which to evaluate the function, N is the order of the Bessel function, a numeric value greater than or equal to 0. The numeric values can be entered manually or included into the cell you make reference to. To apply the BESSELJ function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the BESSELJ function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The BESSELJ function is one of the engineering functions. It is used to return the Bessel function. Syntax BESSELJ(x, n) The BESSELJ function has the following arguments: Argument Description x The value at which to evaluate the function. n The order of the Bessel function, a numeric value greater than or equal to 0. Notes How to apply the BESSELJ function. Examples The figure below displays the result returned by the BESSELJ function." }, { "id": "Functions/besselk.htm", "title": "BESSELK Function", - "body": "The BESSELK function is one of the engineering functions. It is used to return the modified Bessel function, which is equivalent to the Bessel functions evaluated for purely imaginary arguments. The BESSELK function syntax is: BESSELK(X, N) where X is the value at which to evaluate the function, a numeric value greater than 0, N is the order of the Bessel function, a numeric value greater than or equal to 0. The numeric values can be entered manually or included into the cell you make reference to. To apply the BESSELK function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the BESSELK function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The BESSELK function is one of the engineering functions. It is used to return the modified Bessel function, which is equivalent to the Bessel functions evaluated for purely imaginary arguments. Syntax BESSELK(x, n) The BESSELK function has the following arguments: Argument Description x The value at which to evaluate the function, a numeric value greater than 0. n The order of the Bessel function, a numeric value greater than or equal to 0. Notes How to apply the BESSELK function. Examples The figure below displays the result returned by the BESSELK function." }, { "id": "Functions/bessely.htm", "title": "BESSELY Function", - "body": "The BESSELY function is one of the engineering functions. It is used to return the Bessel function, which is also called the Weber function or the Neumann function. The BESSELY function syntax is: BESSELY(X, N) where X is the value at which to evaluate the function, a numeric value greater than 0, N is the order of the Bessel function, a numeric value greater than or equal to 0. The numeric values can be entered manually or included into the cell you make reference to. To apply the BESSELY function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the BESSELY function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The BESSELY function is one of the engineering functions. It is used to return the Bessel function, which is also called the Weber function or the Neumann function. Syntax BESSELY(x, n) The BESSELY function has the following arguments: Argument Description x The value at which to evaluate the function, a numeric value greater than 0. n The order of the Bessel function, a numeric value greater than or equal to 0. Notes How to apply the BESSELY function. Examples The figure below displays the result returned by the BESSELY function." }, { "id": "Functions/beta-dist.htm", "title": "BETA.DIST Function", - "body": "The BETA.DIST function is one of the statistical functions. It is used to return the beta distribution. The BETA.DIST function syntax is: BETA.DIST(x, alpha, beta, cumulative, [,[A] [,[B]]) where x is the value between A and B at which the function should be calculated. alpha is the first parameter of the distribution, a numeric value greater than 0. beta is the second parameter of the distribution, a numeric value greater than 0. cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function. A is the lower bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 0 is used. B is the upper bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 1 is used. The values can be entered manually or included into the cells you make reference to. To apply the BETA.DIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the BETA.DIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The BETA.DIST function is one of the statistical functions. It is used to return the beta distribution. Syntax BETA.DIST(x, alpha, beta, cumulative, [A], [B]) The BETA.DIST function has the following arguments: Argument Description x The value between A and B at which the function should be calculated. alpha The first parameter of the distribution, a numeric value greater than 0. beta The second parameter of the distribution, a numeric value greater than 0. cumulative A logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function. A The lower bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 0 is used. B The upper bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 1 is used. Notes How to apply the BETA.DIST function. Examples The figure below displays the result returned by the BETA.DIST function." }, { "id": "Functions/beta-inv.htm", "title": "BETA.INV Function", - "body": "The BETA.INV function is one of the statistical functions. It is used to return the inverse of the beta cumulative probability density function (BETA.DIST). The BETA.INV function syntax is: BETA.INV(probability, alpha, beta, [,[A] [,[B]]) where probability is a probability associated with the beta distribution. A numeric value greater than 0 and less than or equal to 1. alpha is the first parameter of the distribution, a numeric value greater than 0. beta is the second parameter of the distribution, a numeric value greater than 0. A is the lower bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 0 is used. B is the upper bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 1 is used. The values can be entered manually or included into the cells you make reference to. To apply the BETA.INV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the BETA.INV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The BETA.INV function is one of the statistical functions. It is used to return the inverse of the beta cumulative probability density function (BETA.DIST). Syntax BETA.INV(probability, alpha, beta, [A], [B]) The BETA.INV function has the following arguments: Argument Description probability A probability associated with the beta distribution. A numeric value greater than 0 and less than or equal to 1. alpha The first parameter of the distribution, a numeric value greater than 0. beta The second parameter of the distribution, a numeric value greater than 0. A The lower bound to the interval of probability. It is an optional parameter. If it is omitted, the default value of 0 is used. B The upper bound to the interval of probability. It is an optional parameter. If it is omitted, the default value of 1 is used. Notes How to apply the BETA.INV function. Examples The figure below displays the result returned by the BETA.INV function." }, { "id": "Functions/betadist.htm", "title": "BETADIST Function", - "body": "The BETADIST function is one of the statistical functions. It is used to return the cumulative beta probability density function. The BETADIST function syntax is: BETADIST(x, alpha, beta, [,[A] [,[B]]) where x is the value between A and B at which the function should be calculated. alpha is the first parameter of the distribution, a numeric value greater than 0. beta is the second parameter of the distribution, a numeric value greater than 0. A is the lower bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 0 is used. B is the upper bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 1 is used. The values can be entered manually or included into the cells you make reference to. To apply the BETADIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the BETADIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The BETADIST function is one of the statistical functions. It is used to return the cumulative beta probability density function. Syntax BETADIST(x, alpha, beta, [A], [B]) The BETADIST function has the following arguments: Argument Description x The value between A and B at which the function should be calculated. alpha The first parameter of the distribution, a numeric value greater than 0. beta The second parameter of the distribution, a numeric value greater than 0. A The lower bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 0 is used. B The upper bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 1 is used. Notes How to apply the BETADIST function. Examples The figure below displays the result returned by the BETADIST function." }, { "id": "Functions/betainv.htm", "title": "BETAINV Function", - "body": "The BETAINV function is one of the statistical functions. It is used to return the inverse of the cumulative beta probability density function for a specified beta distribution. The BETAINV function syntax is: BETAINV(x, alpha, beta, [,[A] [,[B]]) where x is a probability associated with the beta distribution. A numeric value greater than 0 and less than or equal to 1. alpha is the first parameter of the distribution, a numeric value greater than 0. beta is the second parameter of the distribution, a numeric value greater than 0. A is the lower bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 0 is used. B is the upper bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 1 is used. The values can be entered manually or included into the cells you make reference to. To apply the BETAINV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the BETAINV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The BETAINV function is one of the statistical functions. It is used to return the inverse of the cumulative beta probability density function for a specified beta distribution. Syntax BETAINV(probability, alpha, beta, [A], [B]) The BETAINV function has the following arguments: Argument Description probability A probability associated with the beta distribution. A numeric value greater than 0 and less than or equal to 1. alpha The first parameter of the distribution, a numeric value greater than 0. beta The second parameter of the distribution, a numeric value greater than 0. A The lower bound to the interval of probability. It is an optional parameter. If it is omitted, the default value of 0 is used. B The upper bound to the interval of probability. It is an optional parameter. If it is omitted, the default value of 1 is used. Notes How to apply the BETAINV function. Examples The figure below displays the result returned by the BETAINV function." }, { "id": "Functions/bin2dec.htm", "title": "BIN2DEC Function", - "body": "The BIN2DEC function is one of the engineering functions. It is used to convert a binary number into a decimal number. The BIN2DEC function syntax is: BIN2DEC(number) where number is a binary number entered manually or included into the cell you make reference to. Note: if the argument is not recognised as a binary number, or contains more than 10 characters, the function will return the #NUM! error. To apply the BIN2DEC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the BIN2DEC function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The BIN2DEC function is one of the engineering functions. It is used to convert a binary number into a decimal number. Syntax BIN2DEC(number) The BIN2DEC function has the following argument: Argument Description number A binary number entered manually or included into the cell you make reference to. Notes If the argument is not recognised as a binary number, or contains more than 10 characters, the function will return the #NUM! error. How to apply the BIN2DEC function. Examples The figure below displays the result returned by the BIN2DEC function." }, { "id": "Functions/bin2hex.htm", "title": "BIN2HEX Function", - "body": "The BIN2HEX function is one of the engineering functions. It is used to convert a binary number into a hexadecimal number. The BIN2HEX function syntax is: BIN2HEX(number [, num-hex-digits]) where number is a binary number entered manually or included into the cell you make reference to. num-hex-digits is the number of digits to display. If omitted, the function will use the minimum number. Note: if the argument is not recognised as a binary number, or contains more than 10 characters, or the resulting hexadecimal number requires more digits than you specified, or the specified num-hex-digits number is less than or equal to 0, the function will return the #NUM! error. To apply the BIN2HEX function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the BIN2HEX function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The BIN2HEX function is one of the engineering functions. It is used to convert a binary number into a hexadecimal number. Syntax BIN2HEX(number, [places]) The BIN2HEX function has the following arguments: Argument Description number A binary number entered manually or included into the cell you make reference to. places The number of digits to display. If omitted, the function will use the minimum number. Notes If the argument is not recognised as a binary number, or contains more than 10 characters, or the resulting hexadecimal number requires more digits than you specified, or the specified places number is less than or equal to 0, the function will return the #NUM! error. How to apply the BIN2HEX function. Examples The figure below displays the result returned by the BIN2HEX function." }, { "id": "Functions/bin2oct.htm", "title": "BIN2OCT Function", - "body": "The BIN2OCT function is one of the engineering functions. It is used to convert a binary number into an octal number. The BIN2OCT function syntax is: BIN2OCT(number [, num-hex-digits]) where number is a binary number entered manually or included into the cell you make reference to. num-hex-digits is the number of digits to display. If omitted, the function will use the minimum number. Note: if the argument is not recognised as a binary number, or contains more than 10 characters, or the resulting octal number requires more digits than you specified, or the specified num-hex-digits number is less than or equal to 0, the function will return the #NUM! error. To apply the BIN2OCT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the BIN2OCT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The BIN2OCT function is one of the engineering functions. It is used to convert a binary number into an octal number. Syntax BIN2OCT(number, [places]) The BIN2OCT function has the following arguments: Argument Description number A binary number entered manually or included into the cell you make reference to. places The number of digits to display. If omitted, the function will use the minimum number. Notes If the argument is not recognised as a binary number, or contains more than 10 characters, or the resulting octal number requires more digits than you specified, or the specified places number is less than or equal to 0, the function will return the #NUM! error. How to apply the BIN2OCT function. Examples The figure below displays the result returned by the BIN2OCT function." }, { "id": "Functions/binom-dist-range.htm", "title": "BINOM.DIST.RANGE Function", - "body": "The BINOM.DIST.RANGE function is one of the statistical functions. It is used to return the probability of a trial result using a binomial distribution. The BINOM.DIST.RANGE function syntax is: BINOM.DIST.RANGE(trials, probability-s, number-s [, number-s2]) where trials is the number of trials, a numeric value greater than or equal to number-s. probability-s is the success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1. number-s is the minimum number of successes in the trials you want to calculate probability for, a numeric value greater than or equal to 0. number-s2 is an optional argument. The maximum number of successes in the trials you want to calculate probability for, a numeric value greater than number-s and less than or equal to trials. The values can be entered manually or included into the cells you make reference to. To apply the BINOM.DIST.RANGE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the BINOM.DIST.RANGE function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The BINOM.DIST.RANGE function is one of the statistical functions. It is used to return the probability of a trial result using a binomial distribution. Syntax BINOM.DIST.RANGE(trials, probability_s, number_s, [number_s2]) The BINOM.DIST.RANGE function has the following arguments: Argument Description trials The number of trials, a numeric value greater than or equal to number_s. probability The success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1. number_s The minimum number of successes in the trials you want to calculate probability for, a numeric value greater than or equal to 0. number_s2 An optional argument. The maximum number of successes in the trials you want to calculate probability for, a numeric value greater than number_s and less than or equal to trials. Notes How to apply the BINOM.DIST.RANGE function. Examples The figure below displays the result returned by the BINOM.DIST.RANGE function." }, { "id": "Functions/binom-dist.htm", "title": "BINOM.DIST Function", - "body": "The BINOM.DIST function is one of the statistical functions. It is used to return the individual term binomial distribution probability. The BINOM.DIST function syntax is: BINOM.DIST(number-s, trials, probability-s, cumulative) where number-s is the number of successes in the trials, a numeric value greater than or equal to 0. trials is the number of trials, a numeric value greater than or equal to number-s. probability-s is the success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1. cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function. The values can be entered manually or included into the cells you make reference to. To apply the BINOM.DIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the BINOM.DIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The BINOM.DIST function is one of the statistical functions. It is used to return the individual term binomial distribution probability. Syntax BINOM.DIST(number_s, trials, probability_s, cumulative) The BINOM.DIST function has the following arguments: Argument Description number_s The number of successes in the trials, a numeric value greater than or equal to 0. trials The number of trials, a numeric value greater than or equal to number_s. probability_s The success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1. cumulative A logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function. Notes How to apply the BINOM.DIST function. Examples The figure below displays the result returned by the BINOM.DIST function." }, { "id": "Functions/binom-inv.htm", "title": "BINOM.INV Function", - "body": "The BINOM.INV function is one of the statistical functions. It is used to return the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value. The BINOM.INV function syntax is: BINOM.INV(trials, probability-s, alpha) where trials is the number of trials, a numeric value greater than 0. probability-s is the success probability of each trial, a numeric value greater than 0 but less than 1. alpha is the criterion, a numeric value greater than 0 but less than 1. The numeric values can be entered manually or included into the cells you make reference to. To apply the BINOM.INV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the BINOM.INV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The BINOM.INV function is one of the statistical functions. It is used to return the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value. Syntax BINOM.INV(trials, probability_s, alpha) The BINOM.INV function has the following arguments: Argument Description trials The number of trials, a numeric value greater than 0. probability_s The success probability of each trial, a numeric value greater than 0 but less than 1. alpha The criterion, a numeric value greater than 0 but less than 1. Notes How to apply the BINOM.INV function. Examples The figure below displays the result returned by the BINOM.INV function." }, { "id": "Functions/binomdist.htm", "title": "BINOMDIST Function", - "body": "The BINOMDIST function is one of the statistical functions. It is used to return the individual term binomial distribution probability. The BINOMDIST function syntax is: BINOMDIST(number-successes, number-trials, success-probability, cumulative-flag) where number-successes is the number of successes in the trials, a numeric value greater than or equal to 0. number-trials is the number of trials, a numeric value greater than or equal to number-successes. success-probability is the success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1. cumulative-flag is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function. The values can be entered manually or included into the cells you make reference to. To apply the BINOMDIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the BINOMDIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The BINOMDIST function is one of the statistical functions. It is used to return the individual term binomial distribution probability. Syntax BINOMDIST(number_s, trials, probability_s, cumulative) The BINOMDIST function has the following arguments: Argument Description number_s The number of successes in the trials, a numeric value greater than or equal to 0. trials The number of trials, a numeric value greater than or equal to number_s. probability_s The success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1. cumulative A logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function. Notes How to apply the BINOMDIST function. Examples The figure below displays the result returned by the BINOMDIST function." }, { "id": "Functions/bitand.htm", "title": "BITAND Function", - "body": "The BITAND function is one of the engineering functions. It is used to return a bitwise 'AND' of two numbers. The BITAND function syntax is: BITAND(number1, number2) where number1 is a numeric value in decimal form greater than or equal to 0, number2 is a numeric value in decimal form greater than or equal to 0. The numeric values can be entered manually or included into the cell you make reference to. The value of each bit position is counted only if both parameter's bits at that position are 1. To apply the BITAND function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the BITAND function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The BITAND function is one of the engineering functions. It is used to return a bitwise 'AND' of two numbers. Syntax BITAND(number1, number2) The BITAND function has the following arguments: Argument Description number1 A numeric value in decimal form greater than or equal to 0. number2 A numeric value in decimal form greater than or equal to 0. Notes The value of each bit position is counted only if both parameter's bits at that position are 1. How to apply the BITAND function. Examples The figure below displays the result returned by the BITAND function." }, { "id": "Functions/bitlshift.htm", "title": "BITLSHIFT Function", - "body": "The BITLSHIFT function is one of the engineering functions. It is used to return a number shifted left by the specified number of bits. The BITLSHIFT function syntax is: BITLSHIFT(number, shift_amount) where number is an integer greater than or equal to 0, shift_amount is a number of bits by which you want to shift number, an integer. The numeric values can be entered manually or included into the cell you make reference to. Shifting a number left is equivalent to adding zeros (0) to the right of the binary representation of the number. To apply the BITLSHIFT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the BITLSHIFT function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The BITLSHIFT function is one of the engineering functions. It is used to return a number shifted left by the specified number of bits. Syntax BITLSHIFT(number, shift_amount) The BITLSHIFT function has the following arguments: Argument Description number An integer greater than or equal to 0. shift_amount A number of bits by which you want to shift number, an integer. Notes Shifting a number left is equivalent to adding zeros (0) to the right of the binary representation of the number. How to apply the BITLSHIFT function. Examples The figure below displays the result returned by the BITLSHIFT function." }, { "id": "Functions/bitor.htm", "title": "BITOR Function", - "body": "The BITOR function is one of the engineering functions. It is used to return a bitwise 'OR' of two numbers. The BITOR function syntax is: BITOR(number1, number2) where number1 is a numeric value in decimal form greater than or equal to 0, number2 is a numeric value in decimal form greater than or equal to 0. The numeric values can be entered manually or included into the cell you make reference to. The value of each bit position is counted if either of the parameters has 1 at that position. To apply the BITOR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the BITOR function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The BITOR function is one of the engineering functions. It is used to return a bitwise 'OR' of two numbers. Syntax BITOR(number1, number2) The BITOR function has the following arguments: Argument Description number1 A numeric value in decimal form greater than or equal to 0. number2 A numeric value in decimal form greater than or equal to 0. Notes The value of each bit position is counted if either of the parameters has 1 at that position. How to apply the BITOR function. Examples The figure below displays the result returned by the BITOR function." }, { "id": "Functions/bitrshift.htm", "title": "BITRSHIFT Function", - "body": "The BITRSHIFT function is one of the engineering functions. It is used to return a number shifted right by the specified number of bits. The BITRSHIFT function syntax is: BITRSHIFT(number, shift_amount) where number is an integer greater than or equal to 0, shift_amount is a number of bits by which you want to shift number, an integer. The numeric values can be entered manually or included into the cell you make reference to. Shifting a number right is equivalent to removing digits from the rightmost side of the binary representation of the number. To apply the BITRSHIFT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the BITRSHIFT function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The BITRSHIFT function is one of the engineering functions. It is used to return a number shifted right by the specified number of bits. Syntax BITRSHIFT(number, shift_amount) The BITRSHIFT function has the following arguments: Argument Description number An integer greater than or equal to 0. shift_amount A number of bits by which you want to shift number, an integer. Notes Shifting a number right is equivalent to removing digits from the rightmost side of the binary representation of the number. How to apply the BITRSHIFT function. Examples The figure below displays the result returned by the BITRSHIFT function." }, { "id": "Functions/bitxor.htm", "title": "BITXOR Function", - "body": "The BITXOR function is one of the engineering functions. It is used to return a bitwise 'XOR' of two numbers. The BITXOR function syntax is: BITXOR(number1, number2) where number1 is a numeric value in decimal form greater than or equal to 0, number2 is a numeric value in decimal form greater than or equal to 0. The numeric values can be entered manually or included into the cell you make reference to. The value of each bit position is 1 when the bit positions of the parameters are different. To apply the BITXOR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the BITXOR function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The BITXOR function is one of the engineering functions. It is used to return a bitwise 'XOR' of two numbers. Syntax BITXOR(number1, number2) The BITXOR function has the following arguments: Argument Description number1 A numeric value in decimal form greater than or equal to 0. number2 A numeric value in decimal form greater than or equal to 0. Notes The value of each bit position is 1 when the bit positions of the parameters are different. How to apply the BITXOR function. Examples The figure below displays the result returned by the BITXOR function." }, { "id": "Functions/ceiling-math.htm", "title": "CEILING.MATH Function", - "body": "The CEILING.MATH function is one of the math and trigonometry functions. It is used to round a number up to the nearest integer or to the nearest multiple of significance. The CEILING.MATH function syntax is: CEILING.MATH(x [, [significance] [, [mode]]) where x is the number you wish to round up. significance is the multiple of significance you wish to round up to. It is an optional parameter. If it is omitted, the default value of 1 is used. mode specifies if negative numbers are rounded towards or away from zero. It is an optional parameter that does not affect positive numbers. If it is omitted or set to 0, negative numbers are rounded towards zero. If any other numeric value is specified, negative numbers are rounded away from zero. The numeric values can be entered manually or included into the cell you make reference to. To apply the CEILING.MATH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the CEILING.MATH function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The CEILING.MATH function is one of the math and trigonometry functions. It is used to round a number up to the nearest integer or to the nearest multiple of significance. Syntax CEILING.MATH(number, [significance], [mode]) The CEILING.MATH function has the following arguments: Argument Description number The number you wish to round up. significance The multiple of significance you wish to round up to. It is an optional parameter. If it is omitted, the default value of 1 is used. mode Specifies if negative numbers are rounded towards or away from zero. It is an optional parameter that does not affect positive numbers. If it is omitted or set to 0, negative numbers are rounded towards zero. If any other numeric value is specified, negative numbers are rounded away from zero. Notes How to apply the CEILING.MATH function. Examples The figure below displays the result returned by the CEILING.MATH function." }, { "id": "Functions/ceiling-precise.htm", "title": "CEILING.PRECISE Function", - "body": "The CEILING.PRECISE function is one of the math and trigonometry functions. It is used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance. The number is always rounded up regardless of its sing. The CEILING.PRECISE function syntax is: CEILING.PRECISE(x [, significance]) where x is the number you wish to round up. significance is the multiple of significance you wish to round up to. It is an optional parameter. If it is omitted, the default value of 1 is used. If it is set to zero, the function returns 0. The numeric values can be entered manually or included into the cell you make reference to. To apply the CEILING.PRECISE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the CEILING.PRECISE function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The CEILING.PRECISE function is one of the math and trigonometry functions. It is used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance. The number is always rounded up regardless of its sing. Syntax CEILING.PRECISE(number, [significance]) The CEILING.PRECISE function has the following arguments: Argument Description number The number you wish to round up. significance The multiple of significance you wish to round up to. It is an optional parameter. If it is omitted, the default value of 1 is used. If it is set to zero, the function returns 0. Notes How to apply the CEILING.PRECISE function. Examples The figure below displays the result returned by the CEILING.PRECISE function." }, { "id": "Functions/ceiling.htm", "title": "CEILING Function", - "body": "The CEILING function is one of the math and trigonometry functions. It is used to round the number up to the nearest multiple of significance. The CEILING function syntax is: CEILING(x, significance) where x is the number you wish to round up, significance is the multiple of significance you wish to round up to, The numeric values can be entered manually or included into the cell you make reference to. Note: if the values of x and significance have different signs, the function returns the #NUM! error. To apply the CEILING function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the CEILING function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The CEILING function is one of the math and trigonometry functions. It is used to round the number up to the nearest multiple of significance. Syntax CEILING(number, significance) The CEILING function has the following arguments: Argument Description number The number you wish to round up. significance The multiple of significance you wish to round up to. Notes If the values of number and significance have different signs, the function returns the #NUM! error. How to apply the CEILING function. Examples The figure below displays the result returned by the CEILING function." }, { "id": "Functions/cell.htm", "title": "CELL Function", - "body": "The CELL function is one of the information functions. It is used to return information about the formatting, location, or contents of a cell. The CELL function syntax is: CELL(info_type, [reference]) where: info_type is a text value that specifies which information about the cell you want to get. This is the required argument. The available values are listed in the table below. [reference] is a cell that you want to get information about. If it is omitted, the information is returned for the last changed cell. If the reference argument is specified as a range of cells, the function returns the information for the upper-left cell of the range. Text value Type of information \"address\" Returns the reference to the cell. \"col\" Returns the column number where the cell is located. \"color\" Returns 1 if the cell is formatted in color for negative values; otherwise returns 0. \"contents\" Returns the value that the cell contains. \"filename\" Returns the filename of the file that contains the cell. \"format\" Returns a text value corresponding to the number format of the cell. The text values are listed in the table below. \"parentheses\" Returns 1 if the cell is formatted with parentheses for positive or all values; otherwise returns 0. \"prefix\" Returns the single quotation mark (') if the text in the cell is left-aligned, the double quotation mark (\") if the text is right-aligned, the caret (^) if the text is centered, and an empty text (\"\") if the cell contains anything else. \"protect\" Returns 0 if the cell is not locked; returns 1 if the cell is locked. \"row\" Returns the row number where the cell is located. \"type\" Returns \"b\" for an empty cell, \"l\" for a text value, and \"v\" for any other value in the cell. \"width\" Returns the width of the cell, rounded off to an integer. Below you can see the text values which the function returns for the \"format\" argument Number format Returned text value General G 0 F0 #,##0 ,0 0.00 F2 #,##0.00 ,2 $#,##0_);($#,##0) C0 $#,##0_);[Red]($#,##0) C0- $#,##0.00_);($#,##0.00) C2 $#,##0.00_);[Red]($#,##0.00) C2- 0% P0 0.00% P2 0.00E+00 S2 # ?/? or # ??/?? G m/d/yy or m/d/yy h:mm or mm/dd/yy D4 d-mmm-yy or dd-mmm-yy D1 d-mmm or dd-mmm D2 mmm-yy D3 mm/dd D5 h:mm AM/PM D7 h:mm:ss AM/PM D6 h:mm D9 h:mm:ss D8 To apply the CELL function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Information function group from the list, click the CELL function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The CELL function is one of the information functions. It is used to return information about the formatting, location, or contents of a cell. Syntax CELL(info_type, [reference]) The CELL function has the following arguments: Argument Description info_type A text value that specifies which information about the cell you want to get. This is the required argument. The available values are listed in the table below. reference A cell that you want to get information about. If it is omitted, the information is returned for the last changed cell. If the reference argument is specified as a range of cells, the function returns the information for the upper-left cell of the range. The info_type argument can be one of the following: Text value Type of information \"address\" Returns the reference to the cell. \"col\" Returns the column number where the cell is located. \"color\" Returns 1 if the cell is formatted in color for negative values; otherwise returns 0. \"contents\" Returns the value that the cell contains. \"filename\" Returns the filename of the file that contains the cell. \"format\" Returns a text value corresponding to the number format of the cell. The text values are listed in the table below. \"parentheses\" Returns 1 if the cell is formatted with parentheses for positive or all values; otherwise returns 0. \"prefix\" Returns the single quotation mark (') if the text in the cell is left-aligned, the double quotation mark (\") if the text is right-aligned, the caret (^) if the text is centered, and an empty text (\"\") if the cell contains anything else. \"protect\" Returns 0 if the cell is not locked; returns 1 if the cell is locked. \"row\" Returns the row number where the cell is located. \"type\" Returns \"b\" for an empty cell, \"l\" for a text value, and \"v\" for any other value in the cell. \"width\" Returns the width of the cell, rounded off to an integer. Below you can see the text values which the function returns for the \"format\" argument Number format Returned text value General G 0 F0 #,##0 ,0 0.00 F2 #,##0.00 ,2 $#,##0_);($#,##0) C0 $#,##0_);[Red]($#,##0) C0- $#,##0.00_);($#,##0.00) C2 $#,##0.00_);[Red]($#,##0.00) C2- 0% P0 0.00% P2 0.00E+00 S2 # ?/? or # ??/?? G m/d/yy or m/d/yy h:mm or mm/dd/yy D4 d-mmm-yy or dd-mmm-yy D1 d-mmm or dd-mmm D2 mmm-yy D3 mm/dd D5 h:mm AM/PM D7 h:mm:ss AM/PM D6 h:mm D9 h:mm:ss D8 Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the CELL function. Examples The figure below displays the result returned by the CELL function." }, { "id": "Functions/char.htm", "title": "CHAR Function", - "body": "The CHAR function is one of the text and data functions. Is used to return the ASCII character specified by a number. The CHAR function syntax is: CHAR(number) where number (from 1 to 255) is a data entered manually or included into the cell you make reference to. To apply the CHAR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the CHAR function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The CHAR function is one of the text and data functions. Is used to return the ASCII character specified by a number. Syntax CHAR(number) The CHAR function has the following argument: Argument Description number A number between 1 and 255 specifying a character from the computer character set. Notes How to apply the CHAR function. Examples The figure below displays the result returned by the CHAR function." }, { "id": "Functions/chidist.htm", "title": "CHIDIST Function", - "body": "The CHIDIST function is one of the statistical functions. It is used to return the right-tailed probability of the chi-squared distribution. The CHIDIST function syntax is: CHIDIST(x, deg-freedom) where x is the value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0. deg-freedom is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10. The values can be entered manually or included into the cells you make reference to. To apply the CHIDIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the CHIDIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The CHIDIST function is one of the statistical functions. It is used to return the right-tailed probability of the chi-squared distribution. Syntax CHIDIST(x, deg_freedom) The CHIDIST function has the following arguments: Argument Description x The value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0. deg_freedom The number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10. Notes How to apply the CHIDIST function. Examples The figure below displays the result returned by the CHIDIST function." }, { "id": "Functions/chiinv.htm", "title": "CHIINV Function", - "body": "The CHIINV function is one of the statistical functions. It is used to return the inverse of the right-tailed probability of the chi-squared distribution. The CHIINV function syntax is: CHIINV(probability, deg-freedom) where probability is the probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1. deg-freedom is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10. The values can be entered manually or included into the cells you make reference to. To apply the CHIINV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the CHIINV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The CHIINV function is one of the statistical functions. It is used to return the inverse of the right-tailed probability of the chi-squared distribution. Syntax CHIINV(probability, deg_freedom) The CHIINV function has the following arguments: Argument Description probability The probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1. deg_freedom The number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10. Notes How to apply the CHIINV function. Examples The figure below displays the result returned by the CHIINV function." }, { "id": "Functions/chisq-dist-rt.htm", "title": "CHISQ.DIST.RT Function", - "body": "The CHISQ.DIST.RT function is one of the statistical functions. It is used to return the right-tailed probability of the chi-squared distribution. The CHISQ.DIST.RT function syntax is: CHISQ.DIST.RT(x, deg-freedom) where x is the value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0. deg-freedom is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10. The values can be entered manually or included into the cells you make reference to. To apply the CHISQ.DIST.RT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the CHISQ.DIST.RT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The CHISQ.DIST.RT function is one of the statistical functions. It is used to return the right-tailed probability of the chi-squared distribution. Syntax CHISQ.DIST.RT(x, deg_freedom) The CHISQ.DIST.RT function has the following arguments: Argument Description x The value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0. deg_freedom The number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10. Notes How to apply the CHISQ.DIST.RT function. Examples The figure below displays the result returned by the CHISQ.DIST.RT function." }, { "id": "Functions/chisq-dist.htm", "title": "CHISQ.DIST Function", - "body": "The CHISQ.DIST function is one of the statistical functions. It is used to return the chi-squared distribution. The CHISQ.DIST function syntax is: CHISQ.DIST(x, deg-freedom, cumulative) where x is the value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0. deg-freedom is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10. cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function. The values can be entered manually or included into the cells you make reference to. To apply the CHISQ.DIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the CHISQ.DIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The CHISQ.DIST function is one of the statistical functions. It is used to return the chi-squared distribution. Syntax CHISQ.DIST(x, deg_freedom, cumulative) The CHISQ.DIST function has the following arguments: Argument Description x The value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0. deg_freedom The number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10. cumulative A logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function. Notes How to apply the CHISQ.DIST function. Examples The figure below displays the result returned by the CHISQ.DIST function." }, { "id": "Functions/chisq-inv-rt.htm", "title": "CHISQ.INV.RT Function", - "body": "The CHISQ.INV.RT function is one of the statistical functions. It is used to return the inverse of the right-tailed probability of the chi-squared distribution. The CHISQ.INV.RT function syntax is: CHISQ.INV.RT(probability, deg-freedom) where probability is the probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1. deg-freedom is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10. The values can be entered manually or included into the cells you make reference to. To apply the CHISQ.INV.RT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the CHISQ.INV.RT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The CHISQ.INV.RT function is one of the statistical functions. It is used to return the inverse of the right-tailed probability of the chi-squared distribution. Syntax CHISQ.INV.RT(probability, deg_freedom) The CHISQ.INV.RT function has the following arguments: Argument Description probability The probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1. deg_freedom The number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10. Notes How to apply the CHISQ.INV.RT function. Examples The figure below displays the result returned by the CHISQ.INV.RT function." }, { "id": "Functions/chisq-inv.htm", "title": "CHISQ.INV Function", - "body": "The CHISQ.INV function is one of the statistical functions. It is used to return the inverse of the left-tailed probability of the chi-squared distribution. The CHISQ.INV function syntax is: CHISQ.INV(probability, deg-freedom) where probability is the probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1. deg-freedom is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10. The values can be entered manually or included into the cells you make reference to. To apply the CHISQ.INV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the CHISQ.INV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The CHISQ.INV function is one of the statistical functions. It is used to return the inverse of the left-tailed probability of the chi-squared distribution. Syntax CHISQ.INV(probability, deg_freedom) The CHISQ.INV function has the following arguments: Argument Description probability The probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1. deg_freedom The number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10. Notes How to apply the CHISQ.INV function. Examples The figure below displays the result returned by the CHISQ.INV function." }, { "id": "Functions/chisq-test.htm", "title": "CHISQ.TEST Function", - "body": "The CHISQ.TEST function is one of the statistical functions. It is used to return the test for independence, the value from the chi-squared (χ2) distribution for the statistic and the appropriate degrees of freedom. The CHISQ.TEST function syntax is: CHISQ.TEST(actual-range, expected-range) where actual-range is the range of observed (actual) values. expected-range is the range of expected values. The ranges must contain the same number of values. Each of the expected values should be greater than or equal to 5. The values can be entered manually or included into the cells you make reference to. To apply the CHISQ.TEST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the CHISQ.TEST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The CHISQ.TEST function is one of the statistical functions. It is used to return the test for independence, the value from the chi-squared (χ2) distribution for the statistic and the appropriate degrees of freedom. Syntax CHISQ.TEST(actual_range, expected_range) The CHISQ.TEST function has the following arguments: Argument Description actual_range The range of observed (actual) values. expected_range The range of expected values. Notes The ranges must contain the same number of values. Each of the expected values should be greater than or equal to 5. How to apply the CHISQ.TEST function. Examples The figure below displays the result returned by the CHISQ.TEST function." }, { "id": "Functions/chitest.htm", "title": "CHITEST Function", - "body": "The CHITEST function is one of the statistical functions. It is used to return the test for independence, the value from the chi-squared (χ2) distribution for the statistic and the appropriate degrees of freedom. The CHITEST function syntax is: CHITEST(actual-range, expected-range) where actual-range is the range of observed (actual) values. expected-range is the range of expected values. The ranges must contain the same number of values. Each of the expected values should be greater than or equal to 5. The values can be entered manually or included into the cells you make reference to. To apply the CHITEST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the CHITEST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The CHITEST function is one of the statistical functions. It is used to return the test for independence, the value from the chi-squared (χ2) distribution for the statistic and the appropriate degrees of freedom. Syntax CHITEST(actual_range, expected_range) The CHITEST function has the following arguments: Argument Description actual_range The range of observed (actual) values. expected_range The range of expected values. Notes The ranges must contain the same number of values. Each of the expected values should be greater than or equal to 5. How to apply the CHITEST function. Examples The figure below displays the result returned by the CHITEST function." }, { "id": "Functions/choose.htm", "title": "CHOOSE Function", - "body": "The CHOOSE function is one of the lookup and reference functions. It is used to return a value from a list of values based on a specified index (position). The CHOOSE function syntax is: CHOOSE(index, argument-list) where index is the position of the value in the argument-list, a numeric value greater than or equal to 1 but less than the number of the number of values in the argument-list, argument-list is the list of values or the selected range of cells you need to analyze. To apply the CHOOSE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the CHOOSE function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The CHOOSE function is one of the lookup and reference functions. It is used to return a value from a list of values based on a specified index (position). Syntax CHOOSE(index_num, value1, [value2], ...) The CHOOSE function has the following arguments: Argument Description index_num The position of the value in the list of values, a numeric value greater than or equal to 1 but less than the number of the number of values in the list of values. value1/2/n The list of values or the selected range of cells you need to analyze. Notes How to apply the CHOOSE function. Examples The figure below displays the result returned by the CHOOSE function." }, { "id": "Functions/choosecols.htm", "title": "CHOOSECOLS Function", - "body": "The CHOOSECOLS function is one of the lookup and reference functions. It is used to return columns from an array or reference. Please note that this is an array formula. To learn more, please read the Insert array formulas article. The CHOOSECOLS function syntax is: CHOOSECOLS(array,col_num1,[col_num2],…) where array is used to set the array containing the columns to be returned in a new array. col_num1 is used to set the first column number to be returned. col_num2 is an optional argument. It is used to set additional column numbers to be returned. To apply the CHOOSECOLS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the CHOOSECOLS function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The CHOOSECOLS function is one of the lookup and reference functions. It is used to return columns from an array or reference. Syntax CHOOSECOLS(array, col_num1, [col_num2], …) The CHOOSECOLS function has the following arguments: Argument Description array Is used to set the array containing the columns to be returned in a new array. col_num1 Is used to set the first column number to be returned. col_num2 Is an optional argument. It is used to set additional column numbers to be returned. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the CHOOSECOLS function. Examples The figure below displays the result returned by the CHOOSECOLS function." }, { "id": "Functions/chooserows.htm", "title": "CHOOSEROWS Function", - "body": "The CHOOSEROWS function is one of the lookup and reference functions. It is used to return rows from an array or reference. Please note that this is an array formula. To learn more, please read the Insert array formulas article. The CHOOSEROWS function syntax is: CHOOSEROWS(array,row_num1,[row_num2],…) where array is used to set the array containing the rows to be returned in a new array. row_num1 is used to set the first row number to be returned. row_num2 is an optional argument. It is used to set additional row numbers to be returned. To apply the CHOOSEROWS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the CHOOSEROWS function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The CHOOSEROWS function is one of the lookup and reference functions. It is used to return rows from an array or reference. Syntax CHOOSEROWS(array, row_num1, [row_num2], …) The CHOOSEROWS function has the following arguments: Argument Description array Is used to set the array containing the rows to be returned in a new array. row_num1 Is used to set the first row number to be returned. row_num2 Is an optional argument. It is used to set additional row numbers to be returned. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the CHOOSEROWS function. Examples The figure below displays the result returned by the CHOOSEROWS function." }, { "id": "Functions/clean.htm", "title": "CLEAN Function", - "body": "The CLEAN function is one of the text and data functions. Is used to remove all the nonprintable characters from the selected string. The CLEAN function syntax is: CLEAN(string) where string is a string with nonprintable characters you need to remove, data included into the cell you make reference to. To apply the CLEAN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the CLEAN function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The CLEAN function is one of the text and data functions. Is used to remove all the nonprintable characters from the selected string. Syntax CLEAN(text) The CLEAN function has the following argument: Argument Description text A string with nonprintable characters you need to remove, data included into the cell you make reference to. Notes How to apply the CLEAN function. Examples The figure below displays the result returned by the CLEAN function." }, { "id": "Functions/code.htm", "title": "CODE Function", - "body": "The CODE function is one of the text and data functions. Is used to return the ASCII value of the specified character or the first character in a cell. The CODE function syntax is: CODE(string) where string is a data entered manually or included into the cell you make reference to. To apply the CODE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the CODE function, enter the required argument, Note: the CODE function is case-sensitive. press the Enter button. The result will be displayed in the selected cell." + "body": "The CODE function is one of the text and data functions. Is used to return the ASCII value of the specified character or the first character in a cell. Syntax CODE(text) The CODE function has the following argument: Argument Description text The text for which you want to get the code of the first character. Notes The CODE function is case-sensitive. How to apply the CODE function. Examples The figure below displays the result returned by the CODE function." }, { "id": "Functions/column.htm", "title": "COLUMN Function", - "body": "The COLUMN function is one of the lookup and reference functions. It is used to return the column number of a cell. The COLUMN function syntax is: COLUMN([reference]) where reference is a reference to a cell. Note: reference is an optional argument. If it is omitted, the function will return the column number of a cell selected to display the COLUMN function result. To apply the COLUMN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the COLUMN function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The COLUMN function is one of the lookup and reference functions. It is used to return the column number of a cell. Syntax COLUMN([reference]) The COLUMN function has the following argument: Argument Description reference A reference to a cell. Notes reference is an optional argument. If it is omitted, the function will return the column number of a cell selected to display the COLUMN function result. Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the COLUMN function. Examples The figure below displays the result returned by the COLUMN function." }, { "id": "Functions/columns.htm", "title": "COLUMNS Function", - "body": "The COLUMNS function is one of the lookup and reference functions. It is used to return the number of columns in a cell reference. The COLUMNS function syntax is: COLUMNS(array) where array is a reference to a range of cells. To apply the COLUMNS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the COLUMNS function, select a range of cells with the mouse or enter it manually, like this A1:B2, press the Enter button. The result will be displayed in the selected cell." + "body": "The COLUMNS function is one of the lookup and reference functions. It is used to return the number of columns in a cell reference. Syntax COLUMNS(array) The COLUMNS function has the following argument: Argument Description array A reference to a range of cells. Notes How to apply the COLUMNS function. Examples The figure below displays the result returned by the COLUMNS function." }, { "id": "Functions/combin.htm", "title": "COMBIN Function", - "body": "The COMBIN function is one of the math and trigonometry functions. It is used to return the number of combinations for a specified number of items. The COMBIN function syntax is: COMBIN(number, number-chosen) where number is a number of items, a numeric value greater than or equal to 0. number-chosen is a number of items in a combination, a numeric value greater than or equal to 0 but less than number. The numeric values can be entered manually or included into the cells you make reference to. To apply the COMBIN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the COMBIN function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The COMBIN function is one of the math and trigonometry functions. It is used to return the number of combinations for a specified number of items. Syntax COMBIN(number, number_chosen) The COMBIN function has the following arguments: Argument Description number A number of items, a numeric value greater than or equal to 0. number_chosen A number of items in a combination, a numeric value greater than or equal to 0 but less than number. Notes How to apply the COMBIN function. Examples The figure below displays the result returned by the COMBIN function." }, { "id": "Functions/combina.htm", "title": "COMBINA Function", - "body": "The COMBINA function is one of the math and trigonometry functions. It is used to return the number of combinations (with repetitions) for a given number of items. The COMBINA function syntax is: COMBINA(number, number-chosen) where number is the total number of items, a numeric value greater than or equal to 0. number-chosen is a number of items in a combination, a numeric value greater than or equal to 0 but less than number. The numeric values can be entered manually or included into the cells you make reference to. To apply the COMBINA function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the COMBINA function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The COMBINA function is one of the math and trigonometry functions. It is used to return the number of combinations (with repetitions) for a given number of items. Syntax COMBINA(number, number_chosen) The COMBINA function has the following arguments: Argument Description number The total number of items, a numeric value greater than or equal to 0. number_chosen A number of items in a combination, a numeric value greater than or equal to 0 but less than number. Notes How to apply the COMBINA function. Examples The figure below displays the result returned by the COMBINA function." }, { "id": "Functions/complex.htm", "title": "COMPLEX Function", - "body": "The COMPLEX function is one of the engineering functions. It is used to convert a real part and an imaginary part into the complex number expressed in a + bi or a + bj form. The COMPLEX function syntax is: COMPLEX(real-number, imaginary-number [, suffix]) where real-number is the real part of the complex number. imaginary-number is the imaginary part of the complex number. suffix is an indicator of the imaginary part of the complex number. It can be either \"i\" or \"j\" in lowercase. It is an optional argument. If it is omitted, the function will assume suffix to be \"i\". The values can be entered manually or included into the cell you make reference to. To apply the COMPLEX function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the COMPLEX function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The COMPLEX function is one of the engineering functions. It is used to convert a real part and an imaginary part into the complex number expressed in a + bi or a + bj form. Syntax COMPLEX(real_num, i_num, [suffix]) The COMPLEX function has the following arguments: Argument Description real_num The real part of the complex number. i_num The imaginary part of the complex number. suffix An indicator of the imaginary part of the complex number. It can be either \"i\" or \"j\" in lowercase. It is an optional argument. If it is omitted, the function will assume suffix to be \"i\". Notes How to apply the COMPLEX function. Examples The figure below displays the result returned by the COMPLEX function." }, { "id": "Functions/concat.htm", "title": "CONCAT Function", - "body": "The CONCAT function is one of the text and data functions. Is used to combine the data from two or more cells into a single one. This function replaces the CONCATENATE function. The CONCAT function syntax is: CONCAT(text1, text2, ...) where text1(2) is up to 265 data values entered manually or included into the cells you make reference to. To apply the CONCAT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the CONCAT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell. For example: There are three arguments: text1 = A1 (John), text2 = \" \" (space), text3 = B1 (Adams). So the function will combine the first name, the space and the last name into one cell and return the result John Adams." + "body": "The CONCAT function is one of the text and data functions. Is used to combine the data from two or more cells into a single one. This function replaces the CONCATENATE function. Syntax CONCAT(text1, [text2], ...) The CONCAT function has the following arguments: Argument Description text1/2/n Up to 255 data values that you want to combine. Notes How to apply the CONCAT function. Examples There are three arguments: text1 = A1 (John), text2 = \" \" (space), text3 = B1 (Adams). So the function will combine the first name, the space and the last name into one cell and return the result John Adams." }, { "id": "Functions/concatenate.htm", "title": "CONCATENATE Function", - "body": "The CONCATENATE function is one of the text and data functions. Is used to combine the data from two or more cells into a single one. The CONCATENATE function syntax is: CONCATENATE(text1, text2, ...) where text1(2) is up to 265 data values entered manually or included into the cells you make reference to. To apply the CONCATENATE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the CONCATENATE function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell. For example: There are three arguments: text1 = A1 (John), text2 = \" \" (space), text3 = B1 (Adams). So the function will combine the first name, the space and the last name into one cell and return the result John Adams." + "body": "The CONCATENATE function is one of the text and data functions. Is used to combine the data from two or more cells into a single one. Syntax CONCATENATE(text1, [text2], ...) The CONCATENATE function has the following arguments: Argument Description text1/2/n Up to 255 data values that you want to combine. Notes How to apply the CONCATENATE function. Examples There are three arguments: text1 = A1 (John), text2 = \" \" (space), text3 = B1 (Adams). So the function will combine the first name, the space and the last name into one cell and return the result John Adams." }, { "id": "Functions/confidence-norm.htm", "title": "CONFIDENCE.NORM Function", - "body": "The CONFIDENCE.NORM function is one of the statistical functions. It is used to return the confidence interval for a population mean, using a normal distribution. The CONFIDENCE.NORM function syntax is: CONFIDENCE.NORM(alpha, standard-dev, size) where alpha is the significance level used to compute the confidence level, a numeric value greater than 0 but less than 1. standard-dev is the population standard deviation, a numeric value greater than 0. size is the sample size, a numeric value greater than or equal to 1. The numeric values can be entered manually or included into the cells you make reference to. To apply the CONFIDENCE.NORM function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the CONFIDENCE.NORM function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The CONFIDENCE.NORM function is one of the statistical functions. It is used to return the confidence interval for a population mean, using a normal distribution. Syntax CONFIDENCE.NORM(alpha, standard_dev, size) The CONFIDENCE.NORM function has the following arguments: Argument Description alpha The significance level used to compute the confidence level, a numeric value greater than 0 but less than 1. standard_dev The population standard deviation, a numeric value greater than 0. size The sample size, a numeric value greater than or equal to 1. Notes How to apply the CONFIDENCE.NORM function. Examples The figure below displays the result returned by the CONFIDENCE.NORM function." }, { "id": "Functions/confidence-t.htm", "title": "CONFIDENCE.T Function", - "body": "The CONFIDENCE.T function is one of the statistical functions. It is used to return the confidence interval for a population mean, using a Student's t distribution. The CONFIDENCE.T function syntax is: CONFIDENCE.T(alpha, standard-dev, size) where alpha is the significance level used to compute the confidence level, a numeric value greater than 0 but less than 1. standard-dev is the population standard deviation, a numeric value greater than 0. size is the sample size, a numeric value greater than 1. The numeric values can be entered manually or included into the cells you make reference to. To apply the CONFIDENCE.T function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the CONFIDENCE.T function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The CONFIDENCE.T function is one of the statistical functions. It is used to return the confidence interval for a population mean, using a Student's t distribution. Syntax CONFIDENCE.T(alpha, standard_dev, size) The CONFIDENCE.T function has the following arguments: Argument Description alpha The significance level used to compute the confidence level, a numeric value greater than 0 but less than 1. standard_dev The population standard deviation, a numeric value greater than 0. size The sample size, a numeric value greater than or equal to 1. Notes How to apply the CONFIDENCE.T function. Examples The figure below displays the result returned by the CONFIDENCE.T function." }, { "id": "Functions/confidence.htm", "title": "CONFIDENCE Function", - "body": "The CONFIDENCE function is one of the statistical functions. It is used to return the confidence interval. The CONFIDENCE function syntax is: CONFIDENCE(alpha, standard-dev, size) where alpha is the significance level used to compute the confidence level, a numeric value greater than 0 but less than 1. standard-dev is the population standard deviation, a numeric value greater than 0. size is the sample size, a numeric value greater than or equal to 1. The numeric values can be entered manually or included into the cells you make reference to. To apply the CONFIDENCE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the CONFIDENCE function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The CONFIDENCE function is one of the statistical functions. It is used to return the confidence interval. Syntax CONFIDENCE(alpha, standard_dev, size) The CONFIDENCE function has the following arguments: Argument Description alpha The significance level used to compute the confidence level, a numeric value greater than 0 but less than 1. standard_dev The population standard deviation, a numeric value greater than 0. size The sample size, a numeric value greater than or equal to 1. Notes How to apply the CONFIDENCE function. Examples The figure below displays the result returned by the CONFIDENCE function." }, { "id": "Functions/convert.htm", "title": "CONVERT Function", - "body": "The CONVERT function is one of the engineering functions. It is used to convert a number from one measurement system to another. For example, CONVERT can translate a table of distances in miles to a table of distances in kilometers. The CONVERT function syntax is: CONVERT(number, from_unit, to_unit) where number is the value to be converted, from_unit is the original measurement unit. A text string enclosed in quotes. The possible values are listed in the table below. to_unit is the measurement unit that the number should be converted to. A text string enclosed in quotes. The possible values are listed in the table below. Note: the from_unit and to_unit must be compatible, i.e. they should belong to the same measurement type. Weight and mass Unit Text value Gram \"g\" Slug \"sg\" Pound mass (avoirdupois) \"lbm\" U (atomic mass unit) \"u\" Ounce mass (avoirdupois) \"ozm\" Grain \"grain\" U.S. (short) hundredweight \"cwt\" or \"shweight\" Imperial hundredweight \"uk_cwt\" or \"lcwt\" (\"hweight\") Stone \"stone\" Ton \"ton\" Imperial ton \"uk_ton\" or \"LTON\" (\"brton\") Distance Unit Text value Meter \"m\" Statute mile \"mi\" Nautical mile \"Nmi\" Inch \"in\" Foot \"ft\" Yard \"yd\" Angstrom \"ang\" Ell \"ell\" Light-year \"ly\" Parsec \"parsec\" or \"pc\" Pica (1/72 inch) \"Picapt\" or \"Pica\" Pica (1/6 inch) \"pica\" U.S survey mile (statute mile) \"survey_mi\" Time Unit Text value Year \"yr\" Day \"day\" or \"d\" Hour \"hr\" Minute \"mn\" or \"min\" Second \"sec\" or \"s\" Pressure Unit Text value Pascal \"Pa\" (or \"p\") Atmosphere \"atm\" (or \"at\") mm of Mercury \"mmHg\" PSI \"psi\" Torr \"Torr\" Force Unit Text value Newton \"N\" Dyne \"dyn\" (or \"dy\") Pound force \"lbf\" Pond \"pond\" Energy Unit Text value Joule \"J\" Erg \"e\" Thermodynamic calorie \"c\" IT calorie \"cal\" Electron volt \"eV\" (or \"ev\") Horsepower-hour \"HPh\" (or \"hh\") Watt-hour \"Wh\" (or \"wh\") Foot-pound \"flb\" BTU \"BTU\" (or \"btu\") Power Unit Text value Horsepower \"HP\" (or \"h\") Pferdestärke \"PS\" Watt \"W\" (or \"w\") Magnetism Unit Text value Tesla \"T\" Gauss \"ga\" Temperature Unit Text value Degree Celsius \"C\" (or \"cel\") Degree Fahrenheit \"F\" (or \"fah\") Kelvin \"K\" (or \"kel\") Degrees Rankine \"Rank\" Degrees Réaumur \"Reau\" Volume (or l iquid measure ) Unit Text value Teaspoon \"tsp\" Modern teaspoon \"tspm\" Tablespoon \"tbs\" Fluid ounce \"oz\" Cup \"cup\" U.S. pint \"pt\" (or \"us_pt\") U.K. pint \"uk_pt\" Quart \"qt\" Imperial quart (U.K.) \"uk_qt\" Gallon \"gal\" Imperial gallon (U.K.) \"uk_gal\" Liter \"l\" or \"L\" (\"lt\") Cubic angstrom \"ang3\" or \"ang^3\" U.S. oil barrel \"barrel\" U.S. bushel \"bushel\" Cubic feet \"ft3\" or \"ft^3\" Cubic inch \"in3\" or \"in^3\" Cubic light-year \"ly3\" or \"ly^3\" Cubic meter \"m3\" or \"m^3\" Cubic Mile \"mi3\" or \"mi^3\" Cubic yard \"yd3\" or \"yd^3\" Cubic nautical mile \"Nmi3\" or \"Nmi^3\" Cubic Pica \"Picapt3\", \"Picapt^3\", \"Pica3\" or \"Pica^3\" Gross Registered Ton \"GRT\" (\"regton\") Measurement ton (freight ton) \"MTON\" Area Unit Text value International acre \"uk_acre\" U.S. survey/statute acre \"us_acre\" Square angstrom \"ang2\" or \"ang^2\" Are \"ar\" Square feet \"ft2\" or \"ft^2\" Hectare \"ha\" Square inches \"in2\" or \"in^2\" Square light-year \"ly2\" or \"ly^2\" Square meters \"m2\" or \"m^2\" Morgen \"Morgen\" Square miles \"mi2\" or \"mi^2\" Square nautical miles \"Nmi2\" or \"Nmi^2\" Square Pica \"Picapt2\", \"Pica2\", \"Pica^2\" or \"Picapt^2\" Square yards \"yd2\" or \"yd^2\" Information Unit Text value Bit \"bit\" Byte \"byte\" Speed Unit Text value Admiralty knot \"admkn\" Knot \"kn\" Meters per hour \"m/h\" or \"m/hr\" Meters per second \"m/s\" or \"m/sec\" Miles per hour \"mph\" It's also possible to use prefixes with the from_unit and to_unit values, e.g. if you add the \"k\" prefix before the \"g\" unit, you'll get the \"kg\" value that denotes kilograms. Prefixes Prefix Multiplier Text value yotta 1E+24 \"Y\" zetta 1E+21 \"Z\" exa 1E+18 \"E\" peta 1E+15 \"P\" tera 1E+12 \"T\" giga 1E+09 \"G\" mega 1E+06 \"M\" kilo 1E+03 \"k\" hecto 1E+02 \"h\" dekao 1E+01 \"da\" or \"e\" deci 1E-01 \"d\" centi 1E-02 \"c\" milli 1E-03 \"m\" micro 1E-06 \"u\" nano 1E-09 \"n\" pico 1E-12 \"p\" femto 1E-15 \"f\" atto 1E-18 \"a\" zepto 1E-21 \"z\" yocto 1E-24 \"y\" Binary Prefixes Prefix Prefix value Text value yobi 2^80 = 1 208 925 819 614 629 174 706 176 \"Yi\" zebi 2^70 = 1 180 591 620 717 411 303 424 \"Zi\" exbi 2^60 = 1 152 921 504 606 846 976 \"Ei\" pebi 2^50 = 1 125 899 906 842 624 \"Pi\" tebi 2^40 = 1 099 511 627 776 \"Ti\" gibi 2^30 = 1 073 741 824 \"Gi\" mebi 2^20 = 1 048 576 \"Mi\" kibi 2^10 = 1024 \"ki\" To apply the CONVERT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the CONVERT function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The CONVERT function is one of the engineering functions. It is used to convert a number from one measurement system to another. For example, CONVERT can translate a table of distances in miles to a table of distances in kilometers. Syntax CONVERT(number, from_unit, to_unit) The CONVERT function has the following arguments: Argument Description number The value to be converted. from_unit The original measurement unit. A text string enclosed in quotes. The possible values are listed in the table below. to_unit The measurement unit that the number should be converted to. A text string enclosed in quotes. The possible values are listed in the table below. Weight and mass Unit Text value Gram \"g\" Slug \"sg\" Pound mass (avoirdupois) \"lbm\" U (atomic mass unit) \"u\" Ounce mass (avoirdupois) \"ozm\" Grain \"grain\" U.S. (short) hundredweight \"cwt\" or \"shweight\" Imperial hundredweight \"uk_cwt\" or \"lcwt\" (\"hweight\") Stone \"stone\" Ton \"ton\" Imperial ton \"uk_ton\" or \"LTON\" (\"brton\") Distance Unit Text value Meter \"m\" Statute mile \"mi\" Nautical mile \"Nmi\" Inch \"in\" Foot \"ft\" Yard \"yd\" Angstrom \"ang\" Ell \"ell\" Light-year \"ly\" Parsec \"parsec\" or \"pc\" Pica (1/72 inch) \"Picapt\" or \"Pica\" Pica (1/6 inch) \"pica\" U.S survey mile (statute mile) \"survey_mi\" Time Unit Text value Year \"yr\" Day \"day\" or \"d\" Hour \"hr\" Minute \"mn\" or \"min\" Second \"sec\" or \"s\" Pressure Unit Text value Pascal \"Pa\" (or \"p\") Atmosphere \"atm\" (or \"at\") mm of Mercury \"mmHg\" PSI \"psi\" Torr \"Torr\" Force Unit Text value Newton \"N\" Dyne \"dyn\" (or \"dy\") Pound force \"lbf\" Pond \"pond\" Energy Unit Text value Joule \"J\" Erg \"e\" Thermodynamic calorie \"c\" IT calorie \"cal\" Electron volt \"eV\" (or \"ev\") Horsepower-hour \"HPh\" (or \"hh\") Watt-hour \"Wh\" (or \"wh\") Foot-pound \"flb\" BTU \"BTU\" (or \"btu\") Power Unit Text value Horsepower \"HP\" (or \"h\") Pferdestärke \"PS\" Watt \"W\" (or \"w\") Magnetism Unit Text value Tesla \"T\" Gauss \"ga\" Temperature Unit Text value Degree Celsius \"C\" (or \"cel\") Degree Fahrenheit \"F\" (or \"fah\") Kelvin \"K\" (or \"kel\") Degrees Rankine \"Rank\" Degrees Réaumur \"Reau\" Volume (or l iquid measure ) Unit Text value Teaspoon \"tsp\" Modern teaspoon \"tspm\" Tablespoon \"tbs\" Fluid ounce \"oz\" Cup \"cup\" U.S. pint \"pt\" (or \"us_pt\") U.K. pint \"uk_pt\" Quart \"qt\" Imperial quart (U.K.) \"uk_qt\" Gallon \"gal\" Imperial gallon (U.K.) \"uk_gal\" Liter \"l\" or \"L\" (\"lt\") Cubic angstrom \"ang3\" or \"ang^3\" U.S. oil barrel \"barrel\" U.S. bushel \"bushel\" Cubic feet \"ft3\" or \"ft^3\" Cubic inch \"in3\" or \"in^3\" Cubic light-year \"ly3\" or \"ly^3\" Cubic meter \"m3\" or \"m^3\" Cubic Mile \"mi3\" or \"mi^3\" Cubic yard \"yd3\" or \"yd^3\" Cubic nautical mile \"Nmi3\" or \"Nmi^3\" Cubic Pica \"Picapt3\", \"Picapt^3\", \"Pica3\" or \"Pica^3\" Gross Registered Ton \"GRT\" (\"regton\") Measurement ton (freight ton) \"MTON\" Area Unit Text value International acre \"uk_acre\" U.S. survey/statute acre \"us_acre\" Square angstrom \"ang2\" or \"ang^2\" Are \"ar\" Square feet \"ft2\" or \"ft^2\" Hectare \"ha\" Square inches \"in2\" or \"in^2\" Square light-year \"ly2\" or \"ly^2\" Square meters \"m2\" or \"m^2\" Morgen \"Morgen\" Square miles \"mi2\" or \"mi^2\" Square nautical miles \"Nmi2\" or \"Nmi^2\" Square Pica \"Picapt2\", \"Pica2\", \"Pica^2\" or \"Picapt^2\" Square yards \"yd2\" or \"yd^2\" Information Unit Text value Bit \"bit\" Byte \"byte\" Speed Unit Text value Admiralty knot \"admkn\" Knot \"kn\" Meters per hour \"m/h\" or \"m/hr\" Meters per second \"m/s\" or \"m/sec\" Miles per hour \"mph\" It's also possible to use prefixes with the from_unit and to_unit values, e.g. if you add the \"k\" prefix before the \"g\" unit, you'll get the \"kg\" value that denotes kilograms. Prefixes Prefix Multiplier Text value yotta 1E+24 \"Y\" zetta 1E+21 \"Z\" exa 1E+18 \"E\" peta 1E+15 \"P\" tera 1E+12 \"T\" giga 1E+09 \"G\" mega 1E+06 \"M\" kilo 1E+03 \"k\" hecto 1E+02 \"h\" dekao 1E+01 \"da\" or \"e\" deci 1E-01 \"d\" centi 1E-02 \"c\" milli 1E-03 \"m\" micro 1E-06 \"u\" nano 1E-09 \"n\" pico 1E-12 \"p\" femto 1E-15 \"f\" atto 1E-18 \"a\" zepto 1E-21 \"z\" yocto 1E-24 \"y\" Binary Prefixes Prefix Prefix value Text value yobi 2^80 = 1 208 925 819 614 629 174 706 176 \"Yi\" zebi 2^70 = 1 180 591 620 717 411 303 424 \"Zi\" exbi 2^60 = 1 152 921 504 606 846 976 \"Ei\" pebi 2^50 = 1 125 899 906 842 624 \"Pi\" tebi 2^40 = 1 099 511 627 776 \"Ti\" gibi 2^30 = 1 073 741 824 \"Gi\" mebi 2^20 = 1 048 576 \"Mi\" kibi 2^10 = 1024 \"ki\" Notes The from_unit and to_unit arguments must be compatible, i.e. they should belong to the same measurement type. How to apply the CONVERT function. Examples The figure below displays the result returned by the CONVERT function." }, { "id": "Functions/correl.htm", "title": "CORREL Function", - "body": "The CORREL function is one of the statistical functions. It is used to analyze the range of data and return the correlation coefficient of two range of cells. The CORREL function syntax is: CORREL(array-1, array-2) where array-1(2) is the selected range of cells with the same number of elements. Note: if array-1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. To apply the CORREL function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the CORREL function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The CORREL function is one of the statistical functions. It is used to analyze the range of data and return the correlation coefficient of two range of cells. Syntax CORREL(array1, array2) The CORREL function has the following arguments: Argument Description array1/2 The selected ranges of cells with the same number of elements. Notes If array1/2 contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. How to apply the CORREL function. Examples The figure below displays the result returned by the CORREL function." }, { "id": "Functions/cos.htm", "title": "COS Function", - "body": "The COS function is one of the math and trigonometry functions. It is used to return the cosine of an angle. The COS function syntax is: COS(x) where x is a numeric value entered manually or included into the cell you make reference to. To apply the COS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the COS function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The COS function is one of the math and trigonometry functions. It is used to return the cosine of an angle. Syntax COS(number) The COS function has the following argument: Argument Description number A numeric value for which you want to get the cosine. Notes How to apply the COS function. Examples The figure below displays the result returned by the COS function." }, { "id": "Functions/cosh.htm", "title": "COSH Function", - "body": "The COSH function is one of the math and trigonometry functions. It is used to return the hyperbolic cosine of a number. The COSH function syntax is: COSH(x) where x is any numeric value entered manually or included into the cell you make reference to. To apply the COSH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the COSH function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The COSH function is one of the math and trigonometry functions. It is used to return the hyperbolic cosine of a number. Syntax COSH(number) The COSH function has the following argument: Argument Description number A numeric value for which you want to get the hyperbolic cosine. Notes How to apply the COSH function. Examples The figure below displays the result returned by the COSH function." }, { "id": "Functions/cot.htm", "title": "COT Function", - "body": "The COT function is one of the math and trigonometry functions. It is used to return the cotangent of an angle specified in radians. The COT function syntax is: COT(x) where x is the angle in radians that you wish to calculate the cotangent of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27. To apply the COT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the COT function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The COT function is one of the math and trigonometry functions. It is used to return the cotangent of an angle specified in radians. Syntax COT(number) The COT function has the following argument: Argument Description number The angle in radians that you wish to calculate the cotangent of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27. Notes How to apply the COT function. Examples The figure below displays the result returned by the COT function." }, { "id": "Functions/coth.htm", "title": "COTH Function", - "body": "The COTH function is one of the math and trigonometry functions. It is used to return the hyperbolic cotangent of a hyperbolic angle. The COTH function syntax is: COTH(x) where x is the angle in radians that you wish to calculate the hyperbolic cotangent of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27. To apply the COTH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the COTH function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The COTH function is one of the math and trigonometry functions. It is used to return the hyperbolic cotangent of a hyperbolic angle. Syntax COTH(number) The COTH function has the following argument: Argument Description number The angle in radians that you wish to calculate the hyperbolic cotangent of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27. Notes How to apply the COTH function. Examples The figure below displays the result returned by the COTH function." }, { "id": "Functions/count.htm", "title": "COUNT Function", - "body": "The COUNT function is one of the statistical functions. It is used to count the number of the selected cells which contain numbers ignoring empty cells or those contaning text. The COUNT function syntax is: COUNT(argument-list) where argument-list is a range of cells you wish to count. To apply the COUNT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the COUNT function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The COUNT function is one of the statistical functions. It is used to count the number of the selected cells which contain numbers ignoring empty cells or those contaning text. Syntax COUNT(value1, [value2], ...) The COUNT function has the following arguments: Argument Description value1 The first value you wish to count. value2/n Additional values you wish to count. Notes How to apply the COUNT function. Examples The figure below displays the result returned by the COUNT function." }, { "id": "Functions/counta.htm", "title": "COUNTA Function", - "body": "The COUNTA function is one of the statistical functions. It is used to analyze the range of cells and count the number of cells that are not empty. The COUNTA function syntax is: COUNTA(argument-list) where argument-list is a range of cells you wish to count. To apply the COUNTA function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the COUNTA function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The COUNTA function is one of the statistical functions. It is used to analyze the range of cells and count the number of cells that are not empty. Syntax COUNTA(value1, [value2], ...) The COUNTA function has the following arguments: Argument Description value1 The first value you wish to count. value2/n Additional values you wish to count. Notes How to apply the COUNTA function. Examples The figure below displays the result returned by the COUNTA function." }, { "id": "Functions/countblank.htm", "title": "COUNTBLANK Function", - "body": "The COUNTBLANK function is one of the statistical functions. It is used to analyze the range of cells and return the number of the empty cells. The COUNTBLANK function syntax is: COUNTBLANK(argument-list) where argument-list is a range of cells you wish to count. To apply the COUNTBLANK function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the COUNTBLANK function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The COUNTBLANK function is one of the statistical functions. It is used to analyze the range of cells and return the number of the empty cells. Syntax COUNTBLANK(range) The COUNTBLANK function has the following argument: Argument Description range A range of cells you wish to count. Notes How to apply the COUNTBLANK function. Examples The figure below displays the result returned by the COUNTBLANK function." }, { "id": "Functions/countif.htm", "title": "COUNTIF Function", - "body": "The COUNTIF function is one of the statistical functions. It is used to count the number of the selected cells based on the specified criterion. The COUNTIF function syntax is: COUNTIF(cell-range, selection-criteria) where cell-range is the selected range of cells you wish to count applying the specified criterion, selection-criteria is a criterion you wish to apply entered manually or included into the cell you make reference to. Note: selection-criteria can include the wildcard characters — the question mark (?) that matches a single character and the asterisk (*) that matches multiple characters. If you want to find a question mark or asterisk, type a tilde (~) before the character. To apply the COUNTIF function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the COUNTIF function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The COUNTIF function is one of the statistical functions. It is used to count the number of the selected cells based on the specified criterion. Syntax COUNTIF(range, criteria) The COUNTIF function has the following arguments: Argument Description range The selected range of cells you wish to count applying the specified criterion. criteria A criterion you wish to apply. Notes The criteria argument can include the wildcard characters — the question mark (?) that matches a single character and the asterisk (*) that matches multiple characters. If you want to find a question mark or asterisk, type a tilde (~) before the character. How to apply the COUNTIF function. Examples The figure below displays the result returned by the COUNTIF function." }, { "id": "Functions/countifs.htm", "title": "COUNTIFS Function", - "body": "The COUNTIFS function is one of the statistical functions. It is used to count the number of the selected cells based on multiple criteria. The COUNTIFS function syntax is: COUNTIFS(criteria-range-1, criteria-1, [criteria-range-2, criteria-2], ...) where criteria-range-1 is the first selected range of cells to apply the criteria-1 to. It is a required argument. criteria-1 is the first condition that must be met. It is applied to the criteria-range-1 and used to determine the cells in the criteria-range-1 to count. It can be a value entered manually or included into the cell you make reference to. It is a required argument. criteria-range-2, criteria-2, ... are additional ranges of cells and their corresponding criteria. These arguments are optional. You can add up to 127 ranges and corresponding criteria. You can use wildcard characters when specifying criteria. The question mark \"?\" can replace any single character and the asterisk \"*\" can be used instead of any number of characters. If you want to find a question mark or asterisk, type a tilde (~) before the character. How to use COUNTIFS To apply the COUNTIFS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the COUNTIFS function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The COUNTIFS function is one of the statistical functions. It is used to count the number of the selected cells based on multiple criteria. Syntax COUNTIFS(criteria_range1, criteria1, [criteria_range2, criteria2]...) The COUNTIFS function has the following arguments: Argument Description criteria_range1 The first selected range of cells to apply the criteria1 to. It is a required argument. criteria1 The first condition that must be met. It is applied to the criteria_range1 and used to determine the cells in the criteria_range1 to count. It can be a value entered manually or included into the cell you make reference to. It is a required argument. criteria_range2, criteria2 Additional ranges of cells and their corresponding criteria. These arguments are optional. You can add up to 127 ranges and corresponding criteria. Notes You can use wildcard characters when specifying criteria. The question mark \"?\" can replace any single character and the asterisk \"*\" can be used instead of any number of characters. If you want to find a question mark or asterisk, type a tilde (~) before the character. How to apply the COUNTIFS function. Examples The figure below displays the result returned by the COUNTIFS function." }, { "id": "Functions/coupdaybs.htm", "title": "COUPDAYBS Function", - "body": "The COUPDAYBS function is one of the financial functions. It is used to calculate the number of days from the beginning of the coupon period to the settlement date. The COUPDAYBS function syntax is: COUPDAYBS(settlement, maturity, frequency[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the COUPDAYBS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the COUPDAYBS function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The COUPDAYBS function is one of the financial functions. It is used to calculate the number of days from the beginning of the coupon period to the settlement date. Syntax COUPDAYBS(settlement, maturity, frequency, [basis]) The COUPDAYBS function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. frequency The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the COUPDAYBS function. Examples The figure below displays the result returned by the COUPDAYBS function." }, { "id": "Functions/coupdays.htm", "title": "COUPDAYS Function", - "body": "The COUPDAYS function is one of the financial functions. It is used to calculate the number of days in the coupon period that contains the settlement date. The COUPDAYS function syntax is: COUPDAYS(settlement, maturity, frequency[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the COUPDAYS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the COUPDAYS function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The COUPDAYS function is one of the financial functions. It is used to calculate the number of days in the coupon period that contains the settlement date. Syntax COUPDAYS(settlement, maturity, frequency, [basis]) The COUPDAYS function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. frequency The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the COUPDAYS function. Examples The figure below displays the result returned by the COUPDAYS function." }, { "id": "Functions/coupdaysnc.htm", "title": "COUPDAYSNC Function", - "body": "The COUPDAYSNC function is one of the financial functions. It is used to calculate the number of days from the settlement date to the next coupon payment. The COUPDAYSNC function syntax is: COUPDAYSNC(settlement, maturity, frequency[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the COUPDAYSNC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the COUPDAYSNC function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The COUPDAYSNC function is one of the financial functions. It is used to calculate the number of days from the settlement date to the next coupon payment. Syntax COUPDAYSNC(settlement, maturity, frequency, [basis]) The COUPDAYSNC function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. frequency The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the COUPDAYSNC function. Examples The figure below displays the result returned by the COUPDAYSNC function." }, { "id": "Functions/coupncd.htm", "title": "COUPNCD Function", - "body": "The COUPNCD function is one of the financial functions. It is used to calculate the next coupon date after the settlement date. The COUPNCD function syntax is: COUPNCD(settlement, maturity, frequency[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the COUPNCD function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the COUPNCD function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The COUPNCD function is one of the financial functions. It is used to calculate the next coupon date after the settlement date. Syntax COUPNCD(settlement, maturity, frequency, [basis]) The COUPNCD function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. frequency The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the COUPNCD function. Examples The figure below displays the result returned by the COUPNCD function." }, { "id": "Functions/coupnum.htm", "title": "COUPNUM Function", - "body": "The COUPNUM function is one of the financial functions. It is used to calculate the number of coupons between the settlement date and the maturity date. The COUPNUM function syntax is: COUPNUM(settlement, maturity, frequency[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the COUPNUM function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the COUPNUM function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The COUPNUM function is one of the financial functions. It is used to calculate the number of coupons between the settlement date and the maturity date. Syntax COUPNUM(settlement, maturity, frequency, [basis]) The COUPNUM function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. frequency The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the COUPNUM function. Examples The figure below displays the result returned by the COUPNUM function." }, { "id": "Functions/couppcd.htm", "title": "COUPPCD Function", - "body": "The COUPPCD function is one of the financial functions. It is used to calculate the previous coupon date before the settlement date. The COUPPCD function syntax is: COUPPCD(settlement, maturity, frequency[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the COUPPCD function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the COUPPCD function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The COUPPCD function is one of the financial functions. It is used to calculate the previous coupon date before the settlement date. Syntax COUPPCD(settlement, maturity, frequency, [basis]) The COUPPCD function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. frequency The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the COUPPCD function. Examples The figure below displays the result returned by the COUPPCD function." }, { "id": "Functions/covar.htm", "title": "COVAR Function", - "body": "The COVAR function is one of the statistical functions. It is used to return the covariance of two ranges of data. The COVAR function syntax is: COVAR(array-1, array-2) where array-1(2) is the selected range of cells with the same number of elements. Note: if array-1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. To apply the COVAR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the COVAR function, enter the required arguments manually or select them with the mouse separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The COVAR function is one of the statistical functions. It is used to return the covariance of two ranges of data. Syntax COVAR(array1, array2) The COVAR function has the following argument: Argument Description array1(2) The selected ranges of cells with the same number of elements. Notes If array1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. How to apply the COVAR function. Examples The figure below displays the result returned by the COVAR function." }, { "id": "Functions/covariance-p.htm", "title": "COVARIANCE.P Function", - "body": "The COVARIANCE.P function is one of the statistical functions. It is used to return population covariance, the average of the products of deviations for each data point pair in two data sets; use covariance to determine the relationship between two data sets. The COVARIANCE.P function syntax is: COVARIANCE.P(array-1, array-2) where array-1(2) is the selected range of cells with the same number of elements. Note: if array-1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. To apply the COVARIANCE.P function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the COVARIANCE.P function, enter the required arguments manually or select them with the mouse separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The COVARIANCE.P function is one of the statistical functions. It is used to return population covariance, the average of the products of deviations for each data point pair in two data sets; use covariance to determine the relationship between two data sets. Syntax COVARIANCE.P(array1, array2) The COVARIANCE.P function has the following argument: Argument Description array1(2) The selected ranges of cells with the same number of elements. Notes If array1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. How to apply the COVARIANCE.P function. Examples The figure below displays the result returned by the COVARIANCE.P function." }, { "id": "Functions/covariance-s.htm", "title": "COVARIANCE.S Function", - "body": "The COVARIANCE.S function is one of the statistical functions. It is used to return the sample covariance, the average of the products of deviations for each data point pair in two data sets. The COVARIANCE.S function syntax is: COVARIANCE.S(array-1, array-2) where array-1(2) is the selected range of cells with the same number of elements. Note: if array-1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. To apply the COVARIANCE.S function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the COVARIANCE.S function, enter the required arguments manually or select them with the mouse separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The COVARIANCE.S function is one of the statistical functions. It is used to return the sample covariance, the average of the products of deviations for each data point pair in two data sets. Syntax COVARIANCE.S(array1, array2) The COVARIANCE.S function has the following arguments: Argument Description array1(2) The selected ranges of cells with the same number of elements. Notes If array1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. How to apply the COVARIANCE.S function. Examples The figure below displays the result returned by the COVARIANCE.S function." }, { "id": "Functions/critbinom.htm", "title": "CRITBINOM Function", - "body": "The CRITBINOM function is one of the statistical functions. It is used to return the smallest value for which the cumulative binomial distribution is greater than or equal to the specified alpha value. The CRITBINOM function syntax is: CRITBINOM(number-trials, success-probability, alpha) where number-trials is the number of trials, a numeric value greater than or equal to 0. success-probability is the success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1. alpha is the criterion, a numeric value greater than or equal to 0 but less than or equal to 1. The numeric values can be entered manually or included into the cells you make reference to. To apply the CRITBINOM function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the CRITBINOM function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The CRITBINOM function is one of the statistical functions. It is used to return the smallest value for which the cumulative binomial distribution is greater than or equal to the specified alpha value. Syntax CRITBINOM(trials, probability_s, alpha) The CRITBINOM function has the following arguments: Argument Description trials The number of trials, a numeric value greater than or equal to 0. probability_s The success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1. alpha The criterion, a numeric value greater than or equal to 0 but less than or equal to 1. Notes How to apply the CRITBINOM function. Examples The figure below displays the result returned by the CRITBINOM function." }, { "id": "Functions/csc.htm", "title": "CSC Function", - "body": "The CSC function is one of the math and trigonometry functions. It is used to return the cosecant of an angle specified in radians. The CSC function syntax is: CSC(x) where x is the angle in radians that you wish to calculate the cosecant of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27. To apply the CSC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the CSC function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The CSC function is one of the math and trigonometry functions. It is used to return the cosecant of an angle specified in radians. Syntax CSC(number) The CSC function has the following argument: Argument Description number The angle in radians that you wish to calculate the cosecant of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27. Notes How to apply the CSC function. Examples The figure below displays the result returned by the CSC function." }, { "id": "Functions/csch.htm", "title": "CSCH Function", - "body": "The CSCH function is one of the math and trigonometry functions. It is used to return the hyperbolic cosecant of an angle specified in radians. The CSCH function syntax is: CSCH(x) where x is the angle in radians that you wish to calculate the hyperbolic cosecant of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27. To apply the CSCH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the CSCH function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The CSCH function is one of the math and trigonometry functions. It is used to return the hyperbolic cosecant of an angle specified in radians. Syntax CSCH(number) The CSCH function has the following argument: Argument Description number The angle in radians that you wish to calculate the hyperbolic cosecant of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27. Notes How to apply the CSCH function. Examples The figure below displays the result returned by the CSCH function." }, { "id": "Functions/cumipmt.htm", "title": "CUMIPMT Function", - "body": "The CUMIPMT function is one of the financial functions. It is used to calculate the cumulative interest paid on an investment between two periods based on a specified interest rate and a constant payment schedule. The CUMIPMT function syntax is: CUMIPMT(rate, nper, pv, start_period, end_period, type) where rate is the interest rate for the investment. nper is a number of payments. pv is a present value of the payments. start_period is the first period included into the calculation. The value must be from 1 to nper. end_period is the last period included into the calculation. The value must be from 1 to nper. type is a period when the payments are due. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period. Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments. The numeric values can be entered manually or included into the cell you make reference to. To apply the CUMIPMT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the CUMIPMT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The CUMIPMT function is one of the financial functions. It is used to calculate the cumulative interest paid on an investment between two periods based on a specified interest rate and a constant payment schedule. Syntax CUMIPMT(rate, nper, pv, start_period, end_period, type) The CUMIPMT function has the following arguments: Argument Description rate The interest rate for the investment. nper A number of payments. pv A present value of the payments. start_period The first period included into the calculation. The value must be from 1 to nper. end_period The last period included into the calculation. The value must be from 1 to nper. type A period when the payments are due. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period. Notes Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments. How to apply the CUMIPMT function. Examples The figure below displays the result returned by the CUMIPMT function." }, { "id": "Functions/cumprinc.htm", "title": "CUMPRINC Function", - "body": "The CUMPRINC function is one of the financial functions. It is used to calculate the cumulative principal paid on an investment between two periods based on a specified interest rate and a constant payment schedule. The CUMPRINC function syntax is: CUMPRINC(rate, nper, pv, start_period, end_period, type) where rate is the interest rate for the investment. nper is a number of payments. pv is a present value of the payments. start_period is the first period included into the calculation. The value must be from 1 to nper. end_period is the last period included into the calculation. The value must be from 1 to nper. type is a period when the payments are due. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period. Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments. The numeric values can be entered manually or included into the cell you make reference to. To apply the CUMPRINC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the CUMPRINC function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The CUMPRINC function is one of the financial functions. It is used to calculate the cumulative principal paid on an investment between two periods based on a specified interest rate and a constant payment schedule. Syntax CUMPRINC(rate, nper, pv, start_period, end_period, type) The CUMPRINC function has the following arguments: Argument Description rate The interest rate for the investment. nper A number of payments. pv A present value of the payments. start_period The first period included into the calculation. The value must be from 1 to nper. end_period The last period included into the calculation. The value must be from 1 to nper. type A period when the payments are due. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period. Notes Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments. How to apply the CUMPRINC function. Examples The figure below displays the result returned by the CUMPRINC function." }, { "id": "Functions/date.htm", "title": "DATE Function", - "body": "The DATE function is one of the date and time functions. It is used to add dates in the default format MM/dd/yyyy. The DATE function syntax is: DATE(year, month, day) where year, month, day are values entered manually or included into the cell you make reference to. To apply the DATE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the DATE function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The DATE function is one of the date and time functions. It is used to add dates in the default format MM/dd/yyyy. Syntax DATE(year, month, day) The DATE function has the following arguments: Argument Description year A numeric value representing the year (four digits). month A numeric value representing the month (from 1 to 12). day A numeric value representing the day (from 1 to 31). Notes How to apply the DATE function. Examples The figure below displays the result returned by the DATE function." }, { "id": "Functions/datedif.htm", "title": "DATEDIF Function", - "body": "The DATEDIF function is one of the date and time functions. It is used to return the difference between two date values (start date and end date), based on the interval (unit) specified. The DATEDIF function syntax is: DATEDIF(start-date, end-date, unit) where start-date and end-date are two dates you wish to calculate the difference between. unit is the specified interval that can be one of the following: Unit Interval Explanation Y The number of complete years. M The number of complete months. D The number of days. MD The difference between the days (months and years are ignored). YM The difference between the months (days and years are ignored). YD The difference between the days (years are ignored). To apply the DATEDIF function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the DATEDIF function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The DATEDIF function is one of the date and time functions. It is used to return the difference between two date values (start date and end date), based on the interval (unit) specified. Syntax DATEDIF(start_date, end_date, unit) The DATEDIF function has the following arguments: Argument Description start_date The starting date of a period. end_date The ending date of a period. unit The specified interval. The possible values are listed in the table below. The unit argument can be one of the following: Unit Interval Explanation Y The number of complete years. M The number of complete months. D The number of days. MD The difference between the days (months and years are ignored). YM The difference between the months (days and years are ignored). YD The difference between the days (years are ignored). Notes If the start_date is greater than the end_date, the result will be #NUM!. How to apply the DATEDIF function. Examples There are three arguments: start-date = A1 = 3/16/2018; end-date = A2 = 9/16/2018; unit = \"D\". So the function returns the difference between two dates in days." }, { "id": "Functions/datevalue.htm", "title": "DATEVALUE Function", - "body": "The DATEVALUE function is one of the date and time functions. It is used to return a serial number of the specified date. The DATEVALUE function syntax is: DATEVALUE(date-time-string) where date-time-string is a date from January 1, 1900, to December 31, 9999, entered manually or included into the cell you make reference to. To apply the DATEVALUE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the DATEVALUE function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The DATEVALUE function is one of the date and time functions. It is used to return a serial number of the specified date. Syntax DATEVALUE(date_text) The DATEVALUE function has the following argument: Argument Description date_text A date from January 1, 1900, to December 31, 9999. Notes How to apply the DATEVALUE function. Examples The figure below displays the result returned by the DATEVALUE function." }, { "id": "Functions/daverage.htm", "title": "DAVERAGE Function", - "body": "The DAVERAGE function is one of the database functions. It is used to average the values in a field (column) of records in a list or database that match conditions you specify. The DAVERAGE function syntax is: DAVERAGE(database, field, criteria) where database is the range of cells that make up a database. It must contain column headings in the first row. field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. To apply the DAVERAGE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Database function group from the list, click the DAVERAGE function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The DAVERAGE function is one of the database functions. It is used to average the values in a field (column) of records in a list or database that match conditions you specify. Syntax DAVERAGE(database, field, criteria) The DAVERAGE function has the following arguments: Argument Description database The range of cells that make up a database. It must contain column headings in the first row. field An argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria The range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. Notes How to apply the DAVERAGE function. Examples The figure below displays the result returned by the DAVERAGE function." }, { "id": "Functions/day.htm", "title": "DAY Function", - "body": "The DAY function is one of the date and time functions. It returns the day (a number from 1 to 31) of the date given in the numerical format (MM/dd/yyyy by default). The DAY function syntax is: DAY(date-value) where date-value is a value entered manually or included into the cell you make reference to. To apply the DAY function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the DAY function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The DAY function is one of the date and time functions. It returns the day (a number from 1 to 31) of the date given in the numerical format (MM/dd/yyyy by default). Syntax DAY(serial_number) The DAY function has the following argument: Argument Description serial_number The date of the day you want to find. Notes How to apply the DAY function. Examples The figure below displays the result returned by the DAY function." }, { "id": "Functions/days.htm", "title": "DAYS Function", - "body": "The DAYS function is one of the date and time functions. Is used to return the number of days between two dates. The DAYS function syntax is: DAYS(end-date, start-date) where end-date and start-date are two dates you wish to calculate the number of days between. To apply the DAYS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the DAYS function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The DAYS function is one of the date and time functions. Is used to return the number of days between two dates. Syntax DAYS(end_date, start_date) The DAYS function has the following arguments: Argument Description end_date end_date and start_date are two dates you wish to calculate the number of days between. start_date end_date and start_date are two dates you wish to calculate the number of days between. Notes How to apply the DAYS function. Examples The figure below displays the result returned by the DAYS function." }, { "id": "Functions/days360.htm", "title": "DAYS360 Function", - "body": "The DAYS360 function is one of the date and time functions. Is 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). The DAYS360 function syntax is: DAYS360(start-date, end-date [,method-flag]) where start-date and end-date are two dates you wish to calculate the number of days between. method-flag is an optional logical value: TRUE or FALSE. If it is set to TRUE, the calculation will be performed using the European method, according to which the start and end dates that occur on the 31st of a month become equal to the 30th of the same month. If it is FALSE or omitted, the calculation will be performed using the US method, according to which if the start date is the last day of a month, it becomes equal to the 30th of the same month. If the end date is the last day of a month and the start date is earlier than the 30th of a month, the end date becomes equal to the 1st of the next month. Otherwise the end date becomes equal to the 30th of the same month. To apply the DAYS360 function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the DAYS360 function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The DAYS360 function is one of the date and time functions. Is 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). Syntax DAYS360(start_date, end_date, [method]) The DAYS360 function has the following arguments: Argument Description start_date start_date and end_date are two dates you wish to calculate the number of days between. end_date start_date and end_date are two dates you wish to calculate the number of days between. method An optional logical value: TRUE or FALSE. If it is set to TRUE, the calculation will be performed using the European method, according to which the start and end dates that occur on the 31st of a month become equal to the 30th of the same month. If it is FALSE or omitted, the calculation will be performed using the US method, according to which if the start date is the last day of a month, it becomes equal to the 30th of the same month. If the end date is the last day of a month and the start date is earlier than the 30th of a month, the end date becomes equal to the 1st of the next month. Otherwise the end date becomes equal to the 30th of the same month. Notes How to apply the DAYS360 function. Examples The figure below displays the result returned by the DAYS360 function." }, { "id": "Functions/db.htm", "title": "DB Function", - "body": "The DB function is one of the financial functions. It is used to calculate the depreciation of an asset for a specified accounting period using the fixed-declining balance method. The DB function syntax is: DB(cost, salvage, life, period[, [month]]) where cost is the cost of the asset. salvage is the salvage value of the asset at the end of its lifetime. life is the total number of the periods within the asset lifetime. period is the period you wish to calculate depreciation for. The value must be expressed in the same units as life. month is the number of months in the first year. It is an optional argument. If it is omitted, the function will assume month to be 12. The values can be entered manually or included into the cell you make reference to. To apply the DB function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the DB function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The DB function is one of the financial functions. It is used to calculate the depreciation of an asset for a specified accounting period using the fixed-declining balance method. Syntax DB(cost, salvage, life, period, [month]) The DB function has the following arguments: Argument Description cost The cost of the asset. salvage The salvage value of the asset at the end of its lifetime. life The total number of the periods within the asset lifetime. period The period you wish to calculate depreciation for. The value must be expressed in the same units as life. month The number of months in the first year. It is an optional argument. If it is omitted, the function will assume month to be 12. Notes How to apply the DB function. Examples The figure below displays the result returned by the DB function." }, { "id": "Functions/dcount.htm", "title": "DCOUNT Function", - "body": "The DCOUNT function is one of the database functions. It is used to count the cells that contain numbers in a field (column) of records in a list or database that match conditions that you specify. The DCOUNT function syntax is: DCOUNT(database, field, criteria) where database is the range of cells that make up a database. It must contain column headings in the first row. field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. To apply the DCOUNT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Database function group from the list, click the DCOUNT function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The DCOUNT function is one of the database functions. It is used to count the cells that contain numbers in a field (column) of records in a list or database that match conditions that you specify. Syntax DCOUNT(database, field, criteria) The DCOUNT function has the following arguments: Argument Description database The range of cells that make up a database. It must contain column headings in the first row. field An argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria The range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. Notes How to apply the DCOUNT function. Examples The figure below displays the result returned by the DCOUNT function." }, { "id": "Functions/dcounta.htm", "title": "DCOUNTA Function", - "body": "The DCOUNTA function is one of the database functions. It is used to count the nonblank cells (logical values and text are also counted) in a field (column) of records in a list or database that match conditions that you specify. The DCOUNTA function syntax is: DCOUNTA(database, field, criteria) where database is the range of cells that make up a database. It must contain column headings in the first row. field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. To apply the DCOUNTA function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Database function group from the list, click the DCOUNTA function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The DCOUNTA function is one of the database functions. It is used to count the nonblank cells (logical values and text are also counted) in a field (column) of records in a list or database that match conditions that you specify. Syntax DCOUNTA(database, field, criteria) The DCOUNTA function has the following arguments: Argument Description database The range of cells that make up a database. It must contain column headings in the first row. field An argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria The range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. Notes How to apply the DCOUNTA function. Examples The figure below displays the result returned by the DCOUNTA function." }, { "id": "Functions/ddb.htm", "title": "DDB Function", - "body": "The DDB function is one of the financial functions. It is used to calculate the depreciation of an asset for a specified accounting period using the double-declining balance method. The DDB function syntax is: DDB(cost, salvage, life, period[, [factor]]) where cost is the cost of the asset. salvage is the salvage value of the asset at the end of its lifetime. life is the total number of the periods within the asset lifetime. period is the period you wish to calculate depreciation for. The value must be expressed in the same units as life. factor is the rate at which the balance declines. It is an optional argument. If it is omitted, the function will assume factor to be 2. Note: all the values must be positive numbers. The values can be entered manually or included into the cell you make reference to. To apply the DDB function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the DDB function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The DDB function is one of the financial functions. It is used to calculate the depreciation of an asset for a specified accounting period using the double-declining balance method. Syntax DDB(cost, salvage, life, period, [factor]) The DDB function has the following arguments: Argument Description cost The cost of the asset. salvage The salvage value of the asset at the end of its lifetime. life The total number of the periods within the asset lifetime. period The period you wish to calculate depreciation for. The value must be expressed in the same units as life. factor The rate at which the balance declines. It is an optional argument. If it is omitted, the function will assume factor to be 2. Notes All the values must be positive numbers. How to apply the DDB function. Examples The figure below displays the result returned by the DDB function." }, { "id": "Functions/dec2bin.htm", "title": "DEC2BIN Function", - "body": "The DEC2BIN function is one of the engineering functions. It is used to convert a decimal number into a binary number. The DEC2BIN function syntax is: DEC2BIN(number [, num-hex-digits]) where number is a decimal number entered manually or included into the cell you make reference to. num-hex-digits is the number of digits to display. If omitted, the function will use the minimum number. Note: if the specified num-hex-digits number is less than or equal to 0, the function will return the #NUM! error. To apply the DEC2BIN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the DEC2BIN function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The DEC2BIN function is one of the engineering functions. It is used to convert a decimal number into a binary number. Syntax DEC2BIN(number, [places]) The DEC2BIN function has the following arguments: Argument Description number A decimal number entered manually or included into the cell you make reference to. places The number of digits to display. If omitted, the function will use the minimum number. Notes If the specified places number is less than or equal to 0, the function will return the #NUM! error. How to apply the DEC2BIN function. Examples The figure below displays the result returned by the DEC2BIN function." }, { "id": "Functions/dec2hex.htm", "title": "DEC2HEX Function", - "body": "The DEC2HEX function is one of the engineering functions. It is used to convert a decimal number into a hexadecimal number. The DEC2HEX function syntax is: DEC2HEX(number [, num-hex-digits]) where number is a decimal number entered manually or included into the cell you make reference to. num-hex-digits is the number of digits to display. If omitted, the function will use the minimum number. Note: if the specified num-hex-digits number is less than or equal to 0, the function will return the #NUM! error. To apply the DEC2HEX function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the DEC2HEX function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The DEC2HEX function is one of the engineering functions. It is used to convert a decimal number into a hexadecimal number. Syntax DEC2HEX(number, [places]) The DEC2HEX function has the following arguments: Argument Description number A decimal number entered manually or included into the cell you make reference to. places The number of digits to display. If omitted, the function will use the minimum number. Notes If the specified places number is less than or equal to 0, the function will return the #NUM! error. How to apply the DEC2HEX function. Examples The figure below displays the result returned by the DEC2HEX function." }, { "id": "Functions/dec2oct.htm", "title": "DEC2OCT Function", - "body": "The DEC2OCT function is one of the engineering functions. It is used to convert a decimal number into an octal number. The DEC2OCT function syntax is: DEC2OCT(number [, num-hex-digits]) where number is a decimal number entered manually or included into the cell you make reference to. num-hex-digits is the number of digits to display. If omitted, the function will use the minimum number. Note: if the specified num-hex-digits number is less than or equal to 0, the function will return the #NUM! error. To apply the DEC2OCT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the DEC2OCT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The DEC2OCT function is one of the engineering functions. It is used to convert a decimal number into an octal number. Syntax DEC2OCT(number, [places]) The DEC2OCT function has the following arguments: Argument Description number A decimal number entered manually or included into the cell you make reference to. places The number of digits to display. If omitted, the function will use the minimum number. Notes If the specified places number is less than or equal to 0, the function will return the #NUM! error. How to apply the DEC2OCT function. Examples The figure below displays the result returned by the DEC2OCT function." }, { "id": "Functions/decimal.htm", "title": "DECIMAL Function", - "body": "The DECIMAL function is one of the math and trigonometry functions. It is used to convert a text representation of a number in a given base into a decimal number. The DECIMAL function syntax is: DECIMAL(text, base) where text is the text representation of the number you want to convert. The string lenght must be less than or equal to 255 characters. base is the base of the number. An integer greater than or equal to 2 and less than or equal to 36. The numeric values can be entered manually or included into the cells you make reference to. To apply the DECIMAL function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the DECIMAL function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The DECIMAL function is one of the math and trigonometry functions. It is used to convert a text representation of a number in a given base into a decimal number. Syntax DECIMAL(text, radix) The DECIMAL function has the following arguments: Argument Description text The text representation of the number you want to convert. The string lenght must be less than or equal to 255 characters. radix The base of the number. An integer greater than or equal to 2 and less than or equal to 36. Notes How to apply the DECIMAL function. Examples The figure below displays the result returned by the DECIMAL function." }, { "id": "Functions/degrees.htm", "title": "DEGREES Function", - "body": "The DEGREES function is one of the math and trigonometry functions. It is used to convert radians into degrees. The DEGREES function syntax is: DEGREES(angle) where angle is a numeric value (radians) entered manually or included into the cell you make reference to. To apply the DEGREES function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the DEGREES function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The DEGREES function is one of the math and trigonometry functions. It is used to convert radians into degrees. Syntax DEGREES(angle) The DEGREES function has the following argument: Argument Description angle A numeric value (radians) entered manually or included into the cell you make reference to. Notes How to apply the DEGREES function. Examples The figure below displays the result returned by the DEGREES function." }, { "id": "Functions/delta.htm", "title": "DELTA Function", - "body": "The DELTA function is one of the engineering functions. It is used to test if two numbers are equal. The function returns 1 if the numbers are equal and 0 otherwise. The DELTA function syntax is: DELTA(number-1 [, number-2]) where number-1 is the first number. number-2 is the second number. It is an optional argument. If it is omitted, the function will assume number-2 to be 0. The numeric values can be entered manually or included into the cell you make reference to. To apply the DELTA function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the DELTA function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The DELTA function is one of the engineering functions. It is used to test if two numbers are equal. The function returns 1 if the numbers are equal and 0 otherwise. Syntax DELTA(number1, [number2]) The DELTA function has the following arguments: Argument Description number1 The first number. number2 The second number. It is an optional argument. If it is omitted, the function will assume number2 to be 0. Notes How to apply the DELTA function. Examples The figure below displays the result returned by the DELTA function." }, { "id": "Functions/devsq.htm", "title": "DEVSQ Function", - "body": "The DEVSQ function is one of the statistical functions. It is used to analyze the range of data and sum the squares of the deviations of numbers from their mean. The DEVSQ function syntax is: DEVSQ(argument-list) where argument-list is up to 30 numerical values entered manually or included into the cells you make reference to. To apply the DEVSQ function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the DEVSQ function, enter the required arguments separating them by commas or select the range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The DEVSQ function is one of the statistical functions. It is used to analyze the range of data and sum the squares of the deviations of numbers from their mean. Syntax DEVSQ(number1, [number2], ...) The DEVSQ function has the following arguments: Argument Description number1/2/n Up to 255 numerical values for which you want to find the sum of squares of deviations. Notes How to apply the DEVSQ function. Examples The figure below displays the result returned by the DEVSQ function." }, { "id": "Functions/dget.htm", "title": "DGET Function", - "body": "The DGET function is one of the database functions. It is used to extract a single value from a column of a list or database that matches conditions that you specify. The DGET function syntax is: DGET(database, field, criteria) where database is the range of cells that make up a database. It must contain column headings in the first row. field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. To apply the DGET function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Database function group from the list, click the DGET function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The DGET function is one of the database functions. It is used to extract a single value from a column of a list or database that matches conditions that you specify. Syntax DGET(database, field, criteria) The DGET function has the following arguments: Argument Description database The range of cells that make up a database. It must contain column headings in the first row. field An argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria The range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. Notes How to apply the DGET function. Examples The figure below displays the result returned by the DGET function." }, { "id": "Functions/disc.htm", "title": "DISC Function", - "body": "The DISC function is one of the financial functions. It is used to calculate the discount rate for a security. The DISC function syntax is: DISC(settlement, maturity, pr, redemption[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. pr is the purchase price of the security, per $100 par value. redemption is the redemption value of the security, per $100 par value. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the DISC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the DISC function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The DISC function is one of the financial functions. It is used to calculate the discount rate for a security. Syntax DISC(settlement, maturity, pr, redemption, [basis]) The DISC function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. pr The purchase price of the security, per $100 par value. redemption The redemption value of the security, per $100 par value. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the DISC function. Examples The figure below displays the result returned by the DISC function." }, { "id": "Functions/dmax.htm", "title": "DMAX Function", - "body": "The DMAX function is one of the database functions. It is used to return the largest number in a field (column) of records in a list or database that matches conditions that you specify. The DMAX function syntax is: DMAX(database, field, criteria) where database is the range of cells that make up a database. It must contain column headings in the first row. field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. To apply the DMAX function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Database function group from the list, click the DMAX function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The DMAX function is one of the database functions. It is used to return the largest number in a field (column) of records in a list or database that matches conditions that you specify. Syntax DMAX(database, field, criteria) The DMAX function has the following arguments: Argument Description database The range of cells that make up a database. It must contain column headings in the first row. field An argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria The range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. Notes How to apply the DMAX function. Examples The figure below displays the result returned by the DMAX function." }, { "id": "Functions/dmin.htm", "title": "DMIN Function", - "body": "The DMIN function is one of the database functions. It is used to return the smallest number in a field (column) of records in a list or database that matches conditions that you specify. The DMIN function syntax is: DMIN(database, field, criteria) where database is the range of cells that make up a database. It must contain column headings in the first row. field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. To apply the DMIN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Database function group from the list, click the DMIN function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The DMIN function is one of the database functions. It is used to return the smallest number in a field (column) of records in a list or database that matches conditions that you specify. Syntax DMIN(database, field, criteria) The DMIN function has the following arguments: Argument Description database The range of cells that make up a database. It must contain column headings in the first row. field An argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria The range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. Notes How to apply the DMIN function. Examples The figure below displays the result returned by the DMIN function." }, { "id": "Functions/dollar.htm", "title": "DOLLAR Function", - "body": "The DOLLAR function is one of the text and data functions. Is used to convert a number to text, using a currency format $#.##. The DOLLAR function syntax is: DOLLAR(number [, num-decimal]) where number is any number to convert. num-decimal is a number of decimal places to display. If it is omitted, the function will assume it to be 2. The numeric values can be entered manually or included into the cells you make reference to. To apply the DOLLAR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the DOLLAR function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The DOLLAR function is one of the text and data functions. Is used to convert a number to text, using a currency format $#.##. Syntax DOLLAR(number, [decimals]) The DOLLAR function has the following arguments: Argument Description number Any number to convert. decimals A number of decimal places to display. If it is omitted, the function will assume it to be 2. Notes How to apply the DOLLAR function. Examples The figure below displays the result returned by the DOLLAR function." }, { "id": "Functions/dollarde.htm", "title": "DOLLARDE Function", - "body": "The DOLLARDE function is one of the financial functions. It is used to convert a dollar price represented as a fraction into a dollar price represented as a decimal number. The DOLLARDE function syntax is: DOLLARDE(fractional-dollar, fraction) where fractional-dollar is an integer part and a fraction part separated by a decimal symbol. fraction is an integer you wish to use as a denominator for the fraction part of the fractional-dollar value. Note: for example, the fractional-dollar value, expressed as 1.03, is interpreted as 1 + 3/n, where n is the fraction value. The numeric values can be entered manually or included into the cell you make reference to. To apply the DOLLARDE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the DOLLARDE function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The DOLLARDE function is one of the financial functions. It is used to convert a dollar price represented as a fraction into a dollar price represented as a decimal number. Syntax DOLLARDE(fractional_dollar, fraction) The DOLLARDE function has the following arguments: Argument Description fractional_dollar An integer part and a fraction part separated by a decimal symbol. fraction An integer you wish to use as a denominator for the fraction part of the fractional_dollar value. Notes For example, the fractional_dollar value, expressed as 1.03, is interpreted as 1 + 3/n, where n is the fraction value. How to apply the DOLLARDE function. Examples The figure below displays the result returned by the DOLLARDE function." }, { "id": "Functions/dollarfr.htm", "title": "DOLLARFR Function", - "body": "The DOLLARFR function is one of the financial functions. It is used to convert a dollar price represented as a decimal number into a dollar price represented as a fraction. The DOLLARFR function syntax is: DOLLARFR(decimal-dollar, fraction) where decimal-dollar is a decimal number. fraction is an integer you wish to use as a denominator for a returned fraction. Note: for example, the returned value of 1.03 is interpreted as 1 + 3/n, where n is the fraction value. The numeric values can be entered manually or included into the cell you make reference to. To apply the DOLLARFR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the DOLLARFR function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The DOLLARFR function is one of the financial functions. It is used to convert a dollar price represented as a decimal number into a dollar price represented as a fraction. Syntax DOLLARFR(decimal_dollar, fraction) The DOLLARFR function has the following arguments: Argument Description decimal_dollar A decimal number. fraction An integer you wish to use as a denominator for a returned fraction. Notes For example, the returned value of 1.03 is interpreted as 1 + 3/n, where n is the fraction value. How to apply the DOLLARFR function. Examples The figure below displays the result returned by the DOLLARFR function." }, { "id": "Functions/dproduct.htm", "title": "DPRODUCT Function", - "body": "The DPRODUCT function is one of the database functions. It is used to multiply the values in a field (column) of records in a list or database that match conditions that you specify. The DPRODUCT function syntax is: DPRODUCT(database, field, criteria) where database is the range of cells that make up a database. It must contain column headings in the first row. field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. To apply the DPRODUCT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Database function group from the list, click the DPRODUCT function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The DPRODUCT function is one of the database functions. It is used to multiply the values in a field (column) of records in a list or database that match conditions that you specify. Syntax DPRODUCT(database, field, criteria) The DPRODUCT function has the following arguments: Argument Description database The range of cells that make up a database. It must contain column headings in the first row. field An argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria The range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. Notes How to apply the DPRODUCT function. Examples The figure below displays the result returned by the DPRODUCT function." }, { "id": "Functions/drop.htm", "title": "DROP Function", - "body": "The DROP function is one of the lookup and reference functions. It is used to drop rows or columns from array start or end. Please note that this is an array formula. To learn more, please read the Insert array formulas article. The DROP function syntax is: DROP(array, rows, [columns]) where array is used to set the array from which to drop rows or columns. rows is used to set the number of rows to drop. A negative value drops from the end of the array. columns is used to set the number of columns to drop. A negative value drops from the end of the array. To apply the DROP function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the DROP function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The DROP function is one of the lookup and reference functions. It is used to drop rows or columns from array start or end. Syntax DROP(array, rows, [columns]) The DROP function has the following arguments: Argument Description array Is used to set the array from which to drop rows or columns. rows Is used to set the number of rows to drop. A negative value drops from the end of the array. columns Is used to set the number of columns to drop. A negative value drops from the end of the array. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the DROP function. Examples The figure below displays the result returned by the DROP function." }, { "id": "Functions/dstdev.htm", "title": "DSTDEV Function", - "body": "The DSTDEV function is one of the database functions. It is used to estimate the standard deviation of a population based on a sample by using the numbers in a field (column) of records in a list or database that match conditions that you specify. The DSTDEV function syntax is: DSTDEV(database, field, criteria) where database is the range of cells that make up a database. It must contain column headings in the first row. field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. To apply the DSTDEV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Database function group from the list, click the DSTDEV function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The DSTDEV function is one of the database functions. It is used to estimate the standard deviation of a population based on a sample by using the numbers in a field (column) of records in a list or database that match conditions that you specify. Syntax DSTDEV(database, field, criteria) The DSTDEV function has the following arguments: Argument Description database The range of cells that make up a database. It must contain column headings in the first row. field An argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria The range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. Notes How to apply the DSTDEV function. Examples The figure below displays the result returned by the DSTDEV function." }, { "id": "Functions/dstdevp.htm", "title": "DSTDEVP Function", - "body": "The DSTDEVP function is one of the database functions. It is used to calculate the standard deviation of a population based on the entire population by using the numbers in a field (column) of records in a list or database that match conditions that you specify. The DSTDEVP function syntax is: DSTDEVP(database, field, criteria) where database is the range of cells that make up a database. It must contain column headings in the first row. field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. To apply the DSTDEVP function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Database function group from the list, click the DSTDEVP function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The DSTDEVP function is one of the database functions. It is used to calculate the standard deviation of a population based on the entire population by using the numbers in a field (column) of records in a list or database that match conditions that you specify. Syntax DSTDEVP(database, field, criteria) The DSTDEVP function has the following arguments: Argument Description database The range of cells that make up a database. It must contain column headings in the first row. field An argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria The range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. Notes How to apply the DSTDEVP function. Examples The figure below displays the result returned by the DSTDEVP function." }, { "id": "Functions/dsum.htm", "title": "DSUM Function", - "body": "The DSUM function is one of the database functions. It is used to add the numbers in a field (column) of records in a list or database that match conditions that you specify. The DSUM function syntax is: DSUM(database, field, criteria) where database is the range of cells that make up a database. It must contain column headings in the first row. field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. To apply the DSUM function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Database function group from the list, click the DSUM function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The DSUM function is one of the database functions. It is used to add the numbers in a field (column) of records in a list or database that match conditions that you specify. Syntax DSUM(database, field, criteria) The DSUM function has the following arguments: Argument Description database The range of cells that make up a database. It must contain column headings in the first row. field An argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria The range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. Notes How to apply the DSUM function. Examples The figure below displays the result returned by the DSUM function." }, { "id": "Functions/duration.htm", "title": "DURATION Function", - "body": "The DURATION function is one of the financial functions. It is used to calculate the Macaulay duration of a security with an assumed par value of $100. The DURATION function syntax is: DURATION(settlement, maturity, coupon, yld, frequency[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. coupon is the annual coupon rate of the security. yld is the annual yield of the security. frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the DURATION function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the DURATION function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The DURATION function is one of the financial functions. It is used to calculate the Macaulay duration of a security with an assumed par value of $100. Syntax DURATION(settlement, maturity, coupon, yld, frequency, [basis]) The DURATION function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. coupon The annual coupon rate of the security. yld The annual yield of the security. frequency The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the DURATION function. Examples The figure below displays the result returned by the DURATION function." }, { "id": "Functions/dvar.htm", "title": "DVAR Function", - "body": "The DVAR function is one of the database functions. It is used to estimate the variance of a population based on a sample by using the numbers in a field (column) of records in a list or database that match conditions that you specify. The DVAR function syntax is: DVAR(database, field, criteria) where database is the range of cells that make up a database. It must contain column headings in the first row. field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. To apply the DVAR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Database function group from the list, click the DVAR function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The DVAR function is one of the database functions. It is used to estimate the variance of a population based on a sample by using the numbers in a field (column) of records in a list or database that match conditions that you specify. Syntax DVAR(database, field, criteria) The DVAR function has the following arguments: Argument Description database The range of cells that make up a database. It must contain column headings in the first row. field An argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria The range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. Notes How to apply the DVAR function. Examples The figure below displays the result returned by the DVAR function." }, { "id": "Functions/dvarp.htm", "title": "DVARP Function", - "body": "The DVARP function is one of the database functions. It is used to calculate the variance of a population based on the entire population by using the numbers in a field (column) of records in a list or database that match conditions that you specify. The DVARP function syntax is: DVARP(database, field, criteria) where database is the range of cells that make up a database. It must contain column headings in the first row. field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. To apply the DVARP function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Database function group from the list, click the DVARP function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The DVARP function is one of the database functions. It is used to calculate the variance of a population based on the entire population by using the numbers in a field (column) of records in a list or database that match conditions that you specify. Syntax DVARP(database, field, criteria) The DVARP function has the following arguments: Argument Description database The range of cells that make up a database. It must contain column headings in the first row. field An argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks. criteria The range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range. Notes How to apply the DVARP function. Examples The figure below displays the result returned by the DVARP function." }, { "id": "Functions/ecma-ceiling.htm", "title": "ECMA.CEILING Function", - "body": "The ECMA.CEILING function is one of the math and trigonometry functions. It is used to round the number up to the nearest multiple of significance. Negative numbers are rounded towards zero. The ECMA.CEILING function syntax is: ECMA.CEILING(x, significance) where x is the number you wish to round up, significance is the multiple of significance you wish to round up to, The numeric values can be entered manually or included into the cell you make reference to. To apply the ECMA.CEILING function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the ECMA.CEILING function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The ECMA.CEILING function is one of the math and trigonometry functions. It is used to round the number up to the nearest multiple of significance. Negative numbers are rounded towards zero. Syntax ECMA.CEILING(x, significance) The ECMA.CEILING function has the following arguments: Argument Description x The number you wish to round up. significance The multiple of significance you wish to round up to. Notes How to apply the ECMA.CEILING function. Examples The figure below displays the result returned by the ECMA.CEILING function." }, { "id": "Functions/edate.htm", "title": "EDATE Function", - "body": "The EDATE function is one of the date and time functions. It is 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). The EDATE function syntax is: EDATE(start-date, month-offset) where start-date is a number representing the first date of the period entered using the Date function or other date and time function. month-offset is a number of months before or after start-day. If the month-offset has the negative sign, the function will return the serial number of the date which comes before the specified start-date. If the month-offset has the positive sign, the function will return the serial number of the date which follows after the specified start-date. To apply the EDATE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the EDATE function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The EDATE function is one of the date and time functions. It is used to return the serial number of the date which comes the indicated number of months (months) before or after the specified date (start_date). Syntax EDATE(start_date, months) The EDATE function has the following arguments: Argument Description start_date A number representing the first date of the period entered using the DATE function or other date and time function. months A number of months before or after start_date. If the months has the negative sign, the function will return the serial number of the date which comes before the specified start_date. If the months has the positive sign, the function will return the serial number of the date which follows after the specified start_date. Notes How to apply the EDATE function. Examples The figure below displays the result returned by the EDATE function." }, { "id": "Functions/effect.htm", "title": "EFFECT Function", - "body": "The EFFECT function is one of the financial functions. It is 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. The EFFECT function syntax is: EFFECT(nominal-rate, npery) where nominal-rate is the nominal annual interest rate of the security. npery is the number of compounding periods per year. The numeric values can be entered manually or included into the cell you make reference to. To apply the EFFECT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the EFFECT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The EFFECT function is one of the financial functions. It is 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. Syntax EFFECT(nominal_rate, npery) The EFFECT function has the following arguments: Argument Description nominal_rate The nominal annual interest rate of the security. npery The number of compounding periods per year. Notes How to apply the EFFECT function. Examples The figure below displays the result returned by the EFFECT function." }, { "id": "Functions/eomonth.htm", "title": "EOMONTH Function", - "body": "The EOMONTH function is one of the date and time functions. Is 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. The EOMONTH function syntax is: EOMONTH(start-date, month-offset) where start-date is a number representing the first date of the period entered using the Date function or other date and time function. month-offset is a number of months before or after start-day. If the month-offset has the negative sign, the function will return the serial number of the date which comes before the specified start-date. If the month-offset has the positive sign, the function will return the serial number of the date which follows after the specified start-date. To apply the EOMONTH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the EOMONTH function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The EOMONTH function is one of the date and time functions. Is 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. Syntax EOMONTH(start_date, months) The EOMONTH function has the following arguments: Argument Description start_date A number representing the first date of the period entered using the DATE function or other date and time function. months A number of months before or after start_date. If the months has the negative sign, the function will return the serial number of the date which comes before the specified start_date. If the months has the positive sign, the function will return the serial number of the date which follows after the specified start_date. Notes How to apply the EOMONTH function. Examples The figure below displays the result returned by the EOMONTH function." }, { "id": "Functions/erf-precise.htm", "title": "ERF.PRECISE Function", - "body": "The ERF.PRECISE function is one of the engineering functions. It is used to return the error function integrated between 0 and the specified lower limit. The ERF.PRECISE function syntax is: ERF.PRECISE(x) where x is the lower limit of integration. The numeric value can be entered manually or included into the cell you make reference to. To apply the ERF.PRECISE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the ERF.PRECISE function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ERF.PRECISE function is one of the engineering functions. It is used to return the error function integrated between 0 and the specified lower limit. Syntax ERF.PRECISE(x) The ERF.PRECISE function has the following argument: Argument Description x The lower limit of integration. Notes How to apply the ERF.PRECISE function. Examples The figure below displays the result returned by the ERF.PRECISE function." }, { "id": "Functions/erf.htm", "title": "ERF Function", - "body": "The ERF function is one of the engineering functions. It is used to calculate the error function integrated between the specified lower and upper limits. The ERF function syntax is: ERF(lower-bound [, upper-bound]) where lower-bound is the lower limit of integration. upper-bound is the upper limit of integration. It is an optional argument. If it is omitted, the function will calculate the error function integrated between 0 and lower-bound. The numeric values can be entered manually or included into the cell you make reference to. To apply the ERF function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the ERF function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The ERF function is one of the engineering functions. It is used to calculate the error function integrated between the specified lower and upper limits. Syntax ERF(lower_limit, [upper_limit]) The ERF function has the following arguments: Argument Description lower_limit The lower limit of integration. upper_limit The upper limit of integration. It is an optional argument. If it is omitted, the function will calculate the error function integrated between 0 and lower_limit. Notes How to apply the ERF function. Examples The figure below displays the result returned by the ERF function." }, { "id": "Functions/erfc-precise.htm", "title": "ERFC.PRECISE Function", - "body": "The ERFC.PRECISE function is one of the engineering functions. It is used to calculate the complementary error function integrated between the specified lower limit and infinity. The ERFC.PRECISE function syntax is: ERFC.PRECISE(x) where x is the lower limit of integration entered manually or included into the cell you make reference to. To apply the ERFC.PRECISE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the ERFC.PRECISE function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ERFC.PRECISE function is one of the engineering functions. It is used to calculate the complementary error function integrated between the specified lower limit and infinity. Syntax ERFC.PRECISE(x) The ERFC.PRECISE function has the following argument: Argument Description x The lower limit of integration. Notes How to apply the ERFC.PRECISE function. Examples The figure below displays the result returned by the ERFC.PRECISE function." }, { "id": "Functions/erfc.htm", "title": "ERFC Function", - "body": "The ERFC function is one of the engineering functions. It is used to calculate the complementary error function integrated between the specified lower limit and infinity. The ERFC function syntax is: ERFC(lower-bound) where lower-bound is the lower limit of integration entered manually or included into the cell you make reference to. To apply the ERFC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the ERFC function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ERFC function is one of the engineering functions. It is used to calculate the complementary error function integrated between the specified lower limit and infinity. Syntax ERFC(x) The ERFC function has the following argument: Argument Description x The lower limit of integration. Notes How to apply the ERFC function. Examples The figure below displays the result returned by the ERFC function." }, { "id": "Functions/error-type.htm", "title": "ERROR.TYPE Function", - "body": "The ERROR.TYPE function is one of the information functions. It is used to return the numeric representation of one of the existing errors. The ERROR.TYPE function syntax is: ERROR.TYPE(value) where value is an error value entered manually or included into the cell you make reference to. The error value can be one of the following: Error value Numeric representation #NULL! 1 #DIV/0! 2 #VALUE! 3 #REF! 4 #NAME? 5 #NUM! 6 #N/A 7 #GETTING_DATA 8 Other #N/A To apply the ERROR.TYPE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Information function group from the list, click the ERROR.TYPE function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ERROR.TYPE function is one of the information functions. It is used to return the numeric representation of one of the existing errors. Syntax ERROR.TYPE(error_val) The ERROR.TYPE function has the following argument: Argument Description error_val An error value. The possible values are listed in the table below. The error_val argument can be one of the following: Error value Numeric representation #NULL! 1 #DIV/0! 2 #VALUE! 3 #REF! 4 #NAME? 5 #NUM! 6 #N/A 7 #GETTING_DATA 8 Other #N/A Notes How to apply the ERROR.TYPE function. Examples The figure below displays the result returned by the ERROR.TYPE function." }, { "id": "Functions/even.htm", "title": "EVEN Function", - "body": "The EVEN function is one of the math and trigonometry functions. It is used to round the number up to the nearest even integer. The EVEN function syntax is: EVEN(x) where x is a number you wish to round up, a numeric value entered manually or included into the cell you make reference to. To apply the EVEN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the EVEN function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The EVEN function is one of the math and trigonometry functions. It is used to round the number up to the nearest even integer. Syntax EVEN(number) The EVEN function has the following argument: Argument Description number A number you wish to round up. Notes How to apply the EVEN function. Examples The figure below displays the result returned by the EVEN function." }, { "id": "Functions/exact.htm", "title": "EXACT Function", - "body": "The EXACT function is one of the text and data functions. Is used to compare data in two cells. The function returns TRUE if the data are the same, and FALSE if not. The EXACT function syntax is: EXACT(text1, text2) where text1(2) is data entered manually or included into the cell you make reference to. To apply the EXACT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the EXACT function, enter the required arguments separating them by comma, Note: the EXACT function is case-sensitive. press the Enter button. The result will be displayed in the selected cell. For example: There are two arguments: text1 = A1; text2 = B1, where A1 is MyPassword, B1 is mypassword. So the function returns FALSE. If we change the A1 data converting all the uppercase letters to lowercase, the function returns TRUE:" + "body": "The EXACT function is one of the text and data functions. Is used to compare data in two cells. The function returns TRUE if the data are the same, and FALSE if not. Syntax EXACT(text1, text2) The EXACT function has the following arguments: Argument Description text1(2) Two text strings you want to compare. Notes The EXACT function is case-sensitive. How to apply the EXACT function. Examples There are two arguments: text1 = A1; text2 = B1, where A1 is MyPassword, B1 is mypassword. So the function returns FALSE. If we change the A1 data converting all the uppercase letters to lowercase, the function returns TRUE:" }, { "id": "Functions/exp.htm", "title": "EXP Function", - "body": "The EXP function is one of the math and trigonometry functions. It is used to return the e constant raised to the desired power. The e constant is equal to 2,71828182845904. The EXP function syntax is: EXP(x) where x is a power you wish to raise e to, a numeric value entered manually or included into the cell you make reference to. To apply the EXP function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the EXP function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The EXP function is one of the math and trigonometry functions. It is used to return the e constant raised to the desired power. The e constant is equal to 2,71828182845904. Syntax EXP(number) The EXP function has the following argument: Argument Description number A power you wish to raise e to. Notes How to apply the EXP function. Examples The figure below displays the result returned by the EXP function." }, { "id": "Functions/expand.htm", "title": "EXPAND Function", - "body": "The EXPAND function is a lookup and reference function. It is used to expand a range of data (array) by adding rows and columns. Please note that this is an array formula. To learn more, please read the Insert array formulas article. The EXPAND function syntax is: =EXPAND(array, rows, [columns], [pad_with]) where array is the range of cells to be expanded, rows is the number of rows in the returned array. Although this is a required argument, if omitted, rows will not be added and the number of columns must be specified. [columns] is an optional argument identifying the number of columns in the returned array. If omitted, columns will not be added and the number of rows must be specified. [pad_with] is the value to fill in the added cells. #N/A is the default value. To apply the EXPAND function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the EXPAND function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The EXPAND function is one of the lookup and reference functions. It is used to expand a range of data (array) by adding rows and columns. Syntax EXPAND(array, rows, [columns], [pad_with]) The EXPAND function has the following arguments: Argument Description array The range of cells to be expanded. rows The number of rows in the returned array. Although this is a required argument, if omitted, rows will not be added and the number of columns must be specified. columns An optional argument identifying the number of columns in the returned array. If omitted, columns will not be added and the number of rows must be specified. pad_with The value to fill in the added cells. #N/A is the default value. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the EXPAND function. Examples The figure below displays the result returned by the EXPAND function." }, { "id": "Functions/expon-dist.htm", "title": "EXPON.DIST Function", - "body": "The EXPON.DIST function is one of the statistical functions. It is used to return the exponential distribution. The EXPON.DIST function syntax is: EXPON.DIST(x, lambda, cumulative) where x is the value of the function, a numeric value greater than or equal to 0, lambda is the parameter of the value, a numeric value greater than 0, cumulative is a logical value (TRUE or FALSE) that determines the function form. If cumulative is TRUE, the function will return the cumulative distribution function, if FALSE, it will return the probability density function. The values can be entered manually or included into the cells you make reference to. To apply the EXPON.DIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the EXPON.DIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The EXPON.DIST function is one of the statistical functions. It is used to return the exponential distribution. Syntax EXPON.DIST(x, lambda, cumulative) The EXPON.DIST function has the following arguments: Argument Description x The value of the function, a numeric value greater than or equal to 0. lambda The parameter of the value, a numeric value greater than 0. cumulative A logical value (TRUE or FALSE) that determines the function form. If cumulative is TRUE, the function will return the cumulative distribution function, if it is FALSE, it will return the probability density function. Notes How to apply the EXPON.DIST function. Examples The figure below displays the result returned by the EXPON.DIST function." }, { "id": "Functions/expondist.htm", "title": "EXPONDIST Function", - "body": "The EXPONDIST function is one of the statistical functions. It is used to return the exponential distribution. The EXPONDIST function syntax is: EXPONDIST(x, lambda, cumulative-flag) where x is the value of the function, a numeric value greater than or equal to 0, lambda is the parameter of the value, a numeric value greater than 0, cumulative-flag is the form of the function to return, a logical value: TRUE or FALSE. If cumulative-flag is TRUE, the function will return the cumulative distribution function, if FALSE, it will return the probability density function. The values can be entered manually or included into the cells you make reference to. To apply the EXPONDIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the EXPONDIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The EXPONDIST function is one of the statistical functions. It is used to return the exponential distribution. Syntax EXPONDIST(x, lambda, cumulative) The EXPONDIST function has the following arguments: Argument Description x The value of the function, a numeric value greater than or equal to 0. lambda The parameter of the value, a numeric value greater than 0. cumulative A logical value (TRUE or FALSE) that determines the function form. If cumulative is TRUE, the function will return the cumulative distribution function, if it is FALSE, it will return the probability density function. Notes How to apply the EXPONDIST function. Examples The figure below displays the result returned by the EXPONDIST function." }, { "id": "Functions/f-dist-rt.htm", "title": "F.DIST.RT Function", - "body": "The F.DIST.RT function is one of the statistical functions. It is used to return the (right-tailed) F probability distribution (degree of diversity) for two data sets. You can use this function to determine whether two data sets have different degrees of diversity. The F.DIST.RT function syntax is: F.DIST.RT(x, deg-freedom1, deg-freedom2) where x is the value at which the function should be calculated. A numeric value greater than 0. deg-freedom1 is the numerator degrees of freedom, a numeric value greater than 1. deg-freedom2 is denominator degrees of freedom, a numeric value greater than 1. The values can be entered manually or included into the cells you make reference to. To apply the F.DIST.RT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the F.DIST.RT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The F.DIST.RT function is one of the statistical functions. It is used to return the (right-tailed) F probability distribution (degree of diversity) for two data sets. You can use this function to determine whether two data sets have different degrees of diversity. Syntax F.DIST.RT(x, deg_freedom1, deg_freedom2) The F.DIST.RT function has the following arguments: Argument Description x The value at which the function should be calculated. A numeric value greater than 0. deg_freedom1 The numerator degrees of freedom, a numeric value greater than 1. deg_freedom2 The denominator degrees of freedom, a numeric value greater than 1. Notes How to apply the F.DIST.RT function. Examples The figure below displays the result returned by the F.DIST.RT function." }, { "id": "Functions/f-dist.htm", "title": "F.DIST Function", - "body": "The F.DIST function is one of the statistical functions. It is used to return the F probability distribution. You can use this function to determine whether two data sets have different degrees of diversity. The F.DIST function syntax is: F.DIST(x, deg-freedom1, deg-freedom2, cumulative) where x is the value at which the function should be calculated. A numeric value greater than 0 deg-freedom1 is the numerator degrees of freedom, a numeric value greater than 0. deg-freedom2 is denominator degrees of freedom, a numeric value greater than 0. cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function. The values can be entered manually or included into the cells you make reference to. To apply the F.DIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the F.DIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The F.DIST function is one of the statistical functions. It is used to return the F probability distribution. You can use this function to determine whether two data sets have different degrees of diversity. Syntax F.DIST(x, deg_freedom1, deg_freedom2, cumulative) The F.DIST function has the following arguments: Argument Description x The value at which the function should be calculated. A numeric value greater than 0. deg_freedom1 The numerator degrees of freedom, a numeric value greater than 0. deg_freedom2 The denominator degrees of freedom, a numeric value greater than 0. cumulative A logical value (TRUE or FALSE) that determines the function form. If cumulative is TRUE, the function will return the cumulative distribution function. If it is FALSE, the function returns the probability density function. Notes How to apply the F.DIST function. Examples The figure below displays the result returned by the F.DIST function." }, { "id": "Functions/f-inv-rt.htm", "title": "F.INV.RT Function", - "body": "The F.INV.RT function is one of the statistical functions. It is used to return the inverse of the (right-tailed) F probability distribution. The F distribution can be used in an F-test that compares the degree of variability in two data sets. The F.INV.RT function syntax is: F.INV.RT(probability, deg-freedom1, deg-freedom2) where probability is the probability associated with the F cumulative distribution. A numeric value greater than 0 but less than 1. deg-freedom1 is the numerator degrees of freedom, a numeric value greater than 1. deg-freedom2 is denominator degrees of freedom, a numeric value greater than 1. The values can be entered manually or included into the cells you make reference to. To apply the F.INV.RT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the F.INV.RT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The F.INV.RT function is one of the statistical functions. It is used to return the inverse of the (right-tailed) F probability distribution. The F distribution can be used in an F-test that compares the degree of variability in two data sets. Syntax F.INV.RT(probability, deg_freedom1, deg_freedom2) The F.INV.RT function has the following arguments: Argument Description probability The probability associated with the F cumulative distribution. A numeric value greater than 0 but less than 1. deg_freedom1 The numerator degrees of freedom, a numeric value greater than 1. deg_freedom2 The denominator degrees of freedom, a numeric value greater than 1. Notes How to apply the F.INV.RT function. Examples The figure below displays the result returned by the F.INV.RT function." }, { "id": "Functions/f-inv.htm", "title": "F.INV Function", - "body": "The F.INV function is one of the statistical functions. It is used to return the inverse of the (right-tailed) F probability distribution. The F distribution can be used in an F-test that compares the degree of variability in two data sets. The F.INV function syntax is: F.INV(probability, deg-freedom1, deg-freedom2) where probability is the probability associated with the F cumulative distribution. A numeric value greater than 0 but less than 1. deg-freedom1 is the numerator degrees of freedom, a numeric value greater than 1. deg-freedom2 is denominator degrees of freedom, a numeric value greater than 1. The values can be entered manually or included into the cells you make reference to. To apply the F.INV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the F.INV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The F.INV function is one of the statistical functions. It is used to return the inverse of the (right-tailed) F probability distribution. The F distribution can be used in an F-test that compares the degree of variability in two data sets. Syntax F.INV(probability, deg_freedom1, deg_freedom2) The F.INV function has the following arguments: Argument Description probability The probability associated with the F cumulative distribution. A numeric value greater than 0 but less than 1. deg_freedom1 The numerator degrees of freedom, a numeric value greater than 1. deg_freedom2 The denominator degrees of freedom, a numeric value greater than 1. Notes How to apply the F.INV function. Examples The figure below displays the result returned by the F.INV function." }, { "id": "Functions/f-test.htm", "title": "F.TEST Function", - "body": "The F.TEST function is one of the statistical functions. It is used to return the result of an F-test, the two-tailed probability that the variances in array1 and array2 are not significantly different. Use this function to determine whether two samples have different variances. The F.TEST function syntax is: F.TEST(array1, array2) where array1 is the first range of values. array2 is the second range of values. The values can be entered manually or included into the cells you make reference to. Text, logical values and empty cells are ignored, cells that contain zero values are included. If the number of values in a data range is less than 2 or a variance of an array is 0, the function returns the #DIV/0! error value. To apply the F.TEST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the F.TEST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The F.TEST function is one of the statistical functions. It is used to return the result of an F-test, the two-tailed probability that the variances in array1 and array2 are not significantly different. Use this function to determine whether two samples have different variances. Syntax F.TEST(array1, array2) The F.TEST function has the following arguments: Argument Description array1 The first range of values. array2 The second range of values. Notes Text, logical values and empty cells are ignored, cells that contain zero values are included. If the number of values in a data range is less than 2 or a variance of an array is 0, the function returns the #DIV/0! error value. How to apply the F.TEST function. Examples The figure below displays the result returned by the F.TEST function." }, { "id": "Functions/fact.htm", "title": "FACT Function", - "body": "The FACT function is one of the math and trigonometry functions. It is used to return the factorial of a number. The FACT function syntax is: FACT(x) where x is a numeric value entered manually or included into the cell you make reference to. To apply the FACT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the FACT function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The FACT function is one of the math and trigonometry functions. It is used to return the factorial of a number. Syntax FACT(number) The FACT function has the following argument: Argument Description number A numeric value for which you want to get the factorial. Notes How to apply the FACT function. Examples The figure below displays the result returned by the FACT function." }, { "id": "Functions/factdouble.htm", "title": "FACTDOUBLE Function", - "body": "The FACTDOUBLE function is one of the math and trigonometry functions. It is used to return the double factorial of a number. The FACTDOUBLE function syntax is: FACTDOUBLE(x) where x is a numeric value entered manually or included into the cell you make reference to. To apply the FACTDOUBLE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the FACTDOUBLE function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The FACTDOUBLE function is one of the math and trigonometry functions. It is used to return the double factorial of a number. Syntax FACTDOUBLE(number) The FACTDOUBLE function has the following argument: Argument Description number A numeric value for which you want to get the double factorial. Notes How to apply the FACTDOUBLE function. Examples The figure below displays the result returned by the FACTDOUBLE function." }, { "id": "Functions/false.htm", "title": "FALSE Function", - "body": "The FALSE function is one of the logical functions. The function returns FALSE and does not require any argument. The FALSE function syntax is: FALSE() To apply the FALSE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Logical function group from the list, click the FALSE function, press the Enter button. The result will be displayed in the selected cell." + "body": "The FALSE function is one of the logical functions. The function returns FALSE and does not require any argument. Syntax FALSE() Notes How to apply the FALSE function. Examples The figure below displays the result returned by the FALSE function." }, { "id": "Functions/fdist.htm", "title": "FDIST Function", - "body": "The FDIST function is one of the statistical functions. It is used to return the (right-tailed) F probability distribution (degree of diversity) for two data sets. You can use this function to determine whether two data sets have different degrees of diversity. The FDIST function syntax is: FDIST(x, deg-freedom1, deg-freedom2) where x is the value at which the function should be calculated. A numeric value greater than 0. deg-freedom1 is the numerator degrees of freedom, a numeric value greater than 1 and less than 10^10. deg-freedom2 is denominator degrees of freedom, a numeric value greater than 1 and less than 10^10. The values can be entered manually or included into the cells you make reference to. To apply the FDIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the FDIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The FDIST function is one of the statistical functions. It is used to return the (right-tailed) F probability distribution (degree of diversity) for two data sets. You can use this function to determine whether two data sets have different degrees of diversity. Syntax FDIST(x, deg_freedom1, deg_freedom2) The FDIST function has the following arguments: Argument Description x The value at which the function should be calculated. A numeric value greater than 0. deg_freedom1 The numerator degrees of freedom, a numeric value greater than 1 and less than 10^10. deg_freedom2 The denominator degrees of freedom, a numeric value greater than 1 and less than 10^10. Notes How to apply the FDIST function. Examples The figure below displays the result returned by the FDIST function." }, { "id": "Functions/filter.htm", "title": "FILTER Function", - "body": "The FILTER function is a lookup and reference function. It is used to filter a range of data and to return the results that match the criteria you specify. The FILTER function only extracts the necessary data and the results update when the original data change. Please note that this is an array formula. To learn more, please read the Insert array formulas article. The FILTER function syntax is: =FILTER(array,include,[if_empty]) where array is the range of cells to filter, include is the filtering criteria supplied as a Boolean array (TRUE/FALSE) the same height (columns) and width (rows) as the array, [if_empty] is the value to return when the filter returns no results. This argument is optional. To apply the FILTER function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the FILTER function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The FILTER function is one of the lookup and reference functions. It is used to filter a range of data and to return the results that match the criteria you specify. The FILTER function only extracts the necessary data and the results update when the original data change. Syntax FILTER(array, include, [if_empty]) The FILTER function has the following arguments: Argument Description array The range of cells to filter. include The filtering criteria supplied as a Boolean array (TRUE/FALSE) the same height (columns) and width (rows) as the array. if_empty The value to return when the filter returns no results. This argument is optional. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the FILTER function. Examples The figure below displays the result returned by the FILTER function." }, { "id": "Functions/find.htm", "title": "FIND/FINDB Function", - "body": "The FIND/FINDB function is one of the text and data functions. Is used to find the specified substring (string-1) within a string (string-2). The FIND function is intended for languages that use the single-byte character set (SBCS), while FINDB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. The FIND/FINDB function syntax is: FIND(string-1, string-2 [,start-pos]) FINDB(string-1, string-2 [,start-pos]) where string-1 is a string you are looking for, string-2 is a string you are searching within, start-pos is a position in a string where the search will start. It is an optional argument. If it is omitted, the funcion will start search from the beginning of the string. The values can be entered manually or included into the cell you make reference to. Note: if there are no matches, the function will return the #VALUE! error. To apply the FIND/FINDB function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the FIND/FINDB function, enter the required arguments separating them by comma, Note: the FIND/FINDB function is case-sensitive. press the Enter button. The result will be displayed in the selected cell." + "body": "The FIND/FINDB function is one of the text and data functions. Is used to find the specified substring (find_text) within a string (within_text). The FIND function is intended for languages that use the single-byte character set (SBCS), while FINDB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. Syntax FIND(find_text, within_text, [start_num]) FINDB(find_text, within_text, [start_num]) The FIND/FINDB function has the following arguments: Argument Description find_text A string you are looking for. within_text A string you are searching within. start_num A position in a string where the search will start. It is an optional argument. If it is omitted, the funcion will start search from the beginning of the string. Notes The FIND/FINDB function is case-sensitive. If there are no matches, the function will return the #VALUE! error. How to apply the FIND/FINDB function. Examples The figure below displays the result returned by the FIND function." }, { "id": "Functions/findb.htm", "title": "FIND/FINDB Function", - "body": "The FIND/FINDB function is one of the text and data functions. Is used to find the specified substring (string-1) within a string (string-2). The FIND function is intended for languages that use the single-byte character set (SBCS), while FINDB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. The FIND/FINDB function syntax is: FIND(string-1, string-2 [,start-pos]) FINDB(string-1, string-2 [,start-pos]) where string-1 is a string you are looking for, string-2 is a string you are searching within, start-pos is a position in a string where the search will start. It is an optional argument. If it is omitted, the funcion will start search from the beginning of the string. The values can be entered manually or included into the cell you make reference to. Note: if there are no matches, the function will return the #VALUE! error. To apply the FIND/FINDB function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the FIND/FINDB function, enter the required arguments separating them by comma, Note: the FIND/FINDB function is case-sensitive. press the Enter button. The result will be displayed in the selected cell." + "body": "The FIND/FINDB function is one of the text and data functions. Is used to find the specified substring (find_text) within a string (within_text). The FIND function is intended for languages that use the single-byte character set (SBCS), while FINDB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. Syntax FIND(find_text, within_text, [start_num]) FINDB(find_text, within_text, [start_num]) The FIND/FINDB function has the following arguments: Argument Description find_text A string you are looking for. within_text A string you are searching within. start_num A position in a string where the search will start. It is an optional argument. If it is omitted, the funcion will start search from the beginning of the string. Notes The FIND/FINDB function is case-sensitive. If there are no matches, the function will return the #VALUE! error. How to apply the FIND/FINDB function. Examples The figure below displays the result returned by the FIND function." }, { "id": "Functions/finv.htm", "title": "FINV Function", - "body": "The FINV function is one of the statistical functions. It is used to return the inverse of the (right-tailed) F probability distribution. The F distribution can be used in an F-test that compares the degree of variability in two data sets. The FINV function syntax is: FINV(probability, deg-freedom1, deg-freedom2) where probability is the probability associated with the F cumulative distribution. A numeric value greater than 0 but less than 1. deg-freedom1 is the numerator degrees of freedom, a numeric value greater than 1 and less than 10^10. deg-freedom2 is denominator degrees of freedom, a numeric value greater than 1 and less than 10^10. The values can be entered manually or included into the cells you make reference to. To apply the FINV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the FINV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The FINV function is one of the statistical functions. It is used to return the inverse of the (right-tailed) F probability distribution. The F distribution can be used in an F-test that compares the degree of variability in two data sets. Syntax FINV(probability, deg_freedom1, deg_freedom2) The FINV function has the following arguments: Argument Description probability The probability associated with the F cumulative distribution. A numeric value greater than 0 but less than 1. deg_freedom1 The numerator degrees of freedom, a numeric value greater than 1 and less than 10^10. deg_freedom2 The denominator degrees of freedom, a numeric value greater than 1 and less than 10^10. Notes How to apply the FINV function. Examples The figure below displays the result returned by the FINV function." }, { "id": "Functions/fisher.htm", "title": "FISHER Function", - "body": "The FISHER function is one of the statistical functions. It is used to return the Fisher transformation of a number. The FISHER function syntax is: FISHER(number) where number is a numeric value greater than - 1 but less than 1 entered manually or included into the cell you make reference to. To apply the FISHER function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the FISHER function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The FISHER function is one of the statistical functions. It is used to return the Fisher transformation of a number. Syntax FISHER(x) The FISHER function has the following argument: Argument Description x A numeric value greater than - 1 but less than 1. Notes How to apply the FISHER function. Examples The figure below displays the result returned by the FISHER function." }, { "id": "Functions/fisherinv.htm", "title": "FISHERINV Function", - "body": "The FISHERINV function is one of the statistical functions. It is used to perform the inverse of Fisher transformation. The FISHERINV function syntax is: FISHERINV(number) where number is a numeric value entered manually or included into the cell you make reference to. To apply the FISHERINV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the FISHERINV function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The FISHERINV function is one of the statistical functions. It is used to perform the inverse of the Fisher transformation. Syntax FISHERINV(y) The FISHERINV function has the following argument: Argument Description y A numeric value for which you want to perform the inverse of the Fisher transformation. Notes How to apply the FISHERINV function. Examples The figure below displays the result returned by the FISHERINV function." }, { "id": "Functions/fixed.htm", "title": "FIXED Function", - "body": "The FIXED function is one of the text and data functions. Is used to return the text representation of a number rounded to a specified number of decimal places. The FIXED function syntax is: FIXED(number [,[num-decimal] [,suppress-commas-flag]) where number is a number to round. num-decimal is a number of decimal places to display. It is an optional argument, if it's omitted, the function will assume it to be 2. suppress-commas-flag is a logical value. If it is set to TRUE, the function will return the result without commas. If it is FALSE or omitted, the result will be displayed with commas. The values can be entered manually or included into the cells you make reference to. To apply the FIXED function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the FIXED function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The FIXED function is one of the text and data functions. Is used to return the text representation of a number rounded to a specified number of decimal places. Syntax FIXED(number, [decimals], [no_commas]) The FIXED function has the following arguments: Argument Description number A number to round. decimals A number of decimal places to display. It is an optional argument, if it's omitted, the function will assume it to be 2. no_commas A logical value. If it is set to TRUE, the function will return the result without commas. If it is FALSE or omitted, the result will be displayed with commas. Notes How to apply the FIXED function. Examples The figure below displays the result returned by the FIXED function." }, { "id": "Functions/floor-math.htm", "title": "FLOOR.MATH Function", - "body": "The FLOOR.MATH function is one of the math and trigonometry functions. It is used to round a number down to the nearest integer or to the nearest multiple of significance. The FLOOR.MATH function syntax is: FLOOR.MATH(x [, [significance] [, [mode]]) where x is the number you wish to round down. significance is the multiple of significance you wish to round down to. It is an optional parameter. If it is omitted, the default value of 1 is used. mode specifies if negative numbers are rounded towards or away from zero. It is an optional parameter that does not affect positive numbers. If it is omitted or set to 0, negative numbers are rounded away from zero. If any other numeric value is specified, negative numbers are rounded towards zero. The numeric values can be entered manually or included into the cell you make reference to. To apply the FLOOR.MATH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the FLOOR.MATH function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The FLOOR.MATH function is one of the math and trigonometry functions. It is used to round a number down to the nearest integer or to the nearest multiple of significance. Syntax FLOOR.MATH(number, [significance], [mode]) The FLOOR.MATH function has the following arguments: Argument Description number A number you wish to round down. significance A multiple of significance you wish to round down to. It is an optional argument. If it is omitted, the default value of 1 is used. mode Specifies if negative numbers are rounded towards or away from zero. It is an optional parameter that does not affect positive numbers. If it is omitted or set to 0, negative numbers are rounded away from zero. If any other numeric value is specified, negative numbers are rounded towards zero. Notes How to apply the FLOOR.MATH function. Examples The figure below displays the result returned by the FLOOR.MATH function." }, { "id": "Functions/floor-precise.htm", "title": "FLOOR.PRECISE Function", - "body": "The FLOOR.PRECISE function is one of the math and trigonometry functions. It is used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance. The number is always rounded down regardless of its sing. The FLOOR.PRECISE function syntax is: FLOOR.PRECISE(x [, significance]) where x is the number you wish to round down. significance is the multiple of significance you wish to round down to. It is an optional parameter. If it is omitted, the default value of 1 is used. If it is set to zero, the function returns 0. The numeric values can be entered manually or included into the cell you make reference to. To apply the FLOOR.PRECISE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the FLOOR.PRECISE function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The FLOOR.PRECISE function is one of the math and trigonometry functions. It is used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance. The number is always rounded down regardless of its sing. Syntax FLOOR.PRECISE(number, [significance]) The FLOOR.PRECISE function has the following arguments: Argument Description number A number you wish to round down. significance A multiple of significance you wish to round down to. It is an optional argument. If it is omitted, the default value of 1 is used. If it is set to zero, the function returns 0. Notes How to apply the FLOOR.PRECISE function. Examples The figure below displays the result returned by the FLOOR.PRECISE function." }, { "id": "Functions/floor.htm", "title": "FLOOR Function", - "body": "The FLOOR function is one of the math and trigonometry functions. It is used to round the number down to the nearest multiple of significance. The FLOOR function syntax is: FLOOR(x, significance) where x is a number you wish to round down. significance is a multiple of significance you wish to round down to. Note: if the values of x and significance have different signs, the function returns the #NUM! error. The numeric values can be entered manually or included into the cell you make reference to. To apply the FLOOR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the FLOOR function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The FLOOR function is one of the math and trigonometry functions. It is used to round the number down to the nearest multiple of significance. Syntax FLOOR(number, significance) The FLOOR function has the following arguments: Argument Description number A number you wish to round down. significance A multiple of significance you wish to round down to. Notes If the values of x and significance have different signs, the function returns the #NUM! error. How to apply the FLOOR function. Examples The figure below displays the result returned by the FLOOR function." }, { "id": "Functions/forecast-ets-confint.htm", "title": "FORECAST.ETS.CONFINT Function", - "body": "The FORECAST.ETS.CONFINT function is one of the statistical functions. It is used to return a confidence interval for the forecast value at the specified target date. The FORECAST.ETS.CONFINT function syntax is: FORECAST.ETS.CONFINT(target_date, values, timeline, [confidence_level], [seasonality], [data_completion], [aggregation]) where target_date is a date for which you want to predict a new value. Must be after the last date in the timeline. values is a range of the historical values for which you want to predict a new point. timeline is a range of date/time values that correspond to the historical values. The timeline range must be of the same size as the values range. Date/time values must have a constant step between them (although up to 30% of missing values can be processed as specified by the data_completion argument and duplicate values can be aggregated as specified by the aggregation argument). confidence_level is a numeric value between 0 and 1 (exclusive) that specifies the confidence level for the calculated confidence interval. It is an optional argument. If it is omitted, the default value of 0.95 is used. seasonality is a numeric value that specifies which method should be used to detect the seasonality. It is an optional argument. The possible values are listed in the table below. Numeric value Behavior 1 or omitted Seasonality is detected automatically. Positive, whole numbers are used for the length of the seasonal pattern. 0 No seasonality, the prediction will be linear. an integer greater than or equal to 2 The specified number is used for the length of the seasonal pattern. data_completion is a numeric value that specifies how to process the missing data points in the timeline data range. It is an optional argument. The possible values are listed in the table below. Numeric value Behavior 1 or omitted Missing points are calculated as the average of the neighbouring points. 0 Missing points are treated as zero values. aggregation is a numeric value that specifies which function should be used to aggregate identical time values in the timeline data range. It is an optional argument. The possible values are listed in the table below. Numeric value Function 1 or omitted AVERAGE 2 COUNT 3 COUNTA 4 MAX 5 MEDIAN 6 MIN 7 SUM To apply the FORECAST.ETS.CONFINT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the FORECAST.ETS.CONFINT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The FORECAST.ETS.CONFINT function is one of the statistical functions. It is used to return a confidence interval for the forecast value at the specified target date. Syntax FORECAST.ETS.CONFINT(target_date, values, timeline, [confidence_level], [seasonality], [data_completion], [aggregation]) The FORECAST.ETS.CONFINT function has the following arguments: Argument Description target_date A date for which you want to predict a new value. Must be after the last date in the timeline. values A range of the historical values for which you want to predict a new point. timeline A range of date/time values that correspond to the historical values. The timeline range must be of the same size as the values range. Date/time values must have a constant step between them (although up to 30% of missing values can be processed as specified by the data_completion argument and duplicate values can be aggregated as specified by the aggregation argument). confidence_level A numeric value between 0 and 1 (exclusive) that specifies the confidence level for the calculated confidence interval. It is an optional argument. If it is omitted, the default value of 0.95 is used. seasonality A numeric value that specifies which method should be used to detect the seasonality. It is an optional argument. The possible values are listed in the table below. data_completion A numeric value that specifies how to process the missing data points in the timeline data range. It is an optional argument. The possible values are listed in the table below. aggregation A numeric value that specifies which function should be used to aggregate identical time values in the timeline data range. It is an optional argument. The possible values are listed in the table belows. The seasonality argument can be one of the following: Numeric value Behavior 1 or omitted Seasonality is detected automatically. Positive, whole numbers are used for the length of the seasonal pattern. 0 No seasonality, the prediction will be linear. an integer greater than or equal to 2 The specified number is used for the length of the seasonal pattern. The data_completion argument can be one of the following: Numeric value Behavior 1 or omitted Missing points are calculated as the average of the neighbouring points. 0 Missing points are treated as zero values. The aggregation argument can be one of the following: Numeric value Function 1 or omitted AVERAGE 2 COUNT 3 COUNTA 4 MAX 5 MEDIAN 6 MIN 7 SUM Notes How to apply the FORECAST.ETS.CONFINT function. Examples The figure below displays the result returned by the FORECAST.ETS.CONFINT function." }, { "id": "Functions/forecast-ets-seasonality.htm", "title": "FORECAST.ETS.SEASONALITY Function", - "body": "The FORECAST.ETS.SEASONALITY function is one of the statistical functions. It is used to return the length of the repetitive pattern the application detects for the specified time series. The FORECAST.ETS.SEASONALITY function syntax is: FORECAST.ETS.SEASONALITY(values, timeline, [data_completion], [aggregation]) where values is a range of the historical values for which you want to predict a new point. timeline is a range of date/time values that correspond to the historical values. The timeline range must be of the same size as the values range. Date/time values must have a constant step between them (although up to 30% of missing values can be processed as specified by the data_completion argument and duplicate values can be aggregated as specified by the aggregation argument). data_completion is a numeric value that specifies how to process the missing data points in the timeline data range. It is an optional argument. The possible values are listed in the table below. Numeric value Behavior 1 or omitted Missing points are calculated as the average of the neighbouring points. 0 Missing points are treated as zero values. aggregation is a numeric value that specifies which function should be used to aggregate identical time values in the timeline data range. It is an optional argument. The possible values are listed in the table below. Numeric value Function 1 or omitted AVERAGE 2 COUNT 3 COUNTA 4 MAX 5 MEDIAN 6 MIN 7 SUM To apply the FORECAST.ETS.SEASONALITY function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the FORECAST.ETS.SEASONALITY function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The FORECAST.ETS.SEASONALITY function is one of the statistical functions. It is used to return the length of the repetitive pattern the application detects for the specified time series. Syntax FORECAST.ETS.SEASONALITY(values, timeline, [data_completion], [aggregation]) The FORECAST.ETS.SEASONALITY function has the following arguments: Argument Description values A range of the historical values for which you want to predict a new point. timeline A range of date/time values that correspond to the historical values. The timeline range must be of the same size as the values range. Date/time values must have a constant step between them (although up to 30% of missing values can be processed as specified by the data_completion argument and duplicate values can be aggregated as specified by the aggregation argument). data_completion A numeric value that specifies how to process the missing data points in the timeline data range. It is an optional argument. The possible values are listed in the table below. aggregation A numeric value that specifies which function should be used to aggregate identical time values in the timeline data range. It is an optional argument. The possible values are listed in the table belows. The data_completion argument can be one of the following: Numeric value Behavior 1 or omitted Missing points are calculated as the average of the neighbouring points. 0 Missing points are treated as zero values. The aggregation argument can be one of the following: Numeric value Function 1 or omitted AVERAGE 2 COUNT 3 COUNTA 4 MAX 5 MEDIAN 6 MIN 7 SUM Notes How to apply the FORECAST.ETS.SEASONALITY function. Examples The figure below displays the result returned by the FORECAST.ETS.SEASONALITY function." }, { "id": "Functions/forecast-ets-stat.htm", "title": "FORECAST.ETS.STAT Function", - "body": "The FORECAST.ETS.STAT function is one of the statistical functions. It is used to return a statistical value as a result of time series forecasting. Statistic type indicates which statistic is requested by this function. The FORECAST.ETS.STAT function syntax is: FORECAST.ETS.STAT(values, timeline, statistic_type, [seasonality], [data_completion], [aggregation]) where values is a range of the historical values for which you want to predict a new point. timeline is a range of date/time values that correspond to the historical values. The timeline range must be of the same size as the values range. Date/time values must have a constant step between them (although up to 30% of missing values can be processed as specified by the data_completion argument and duplicate values can be aggregated as specified by the aggregation argument). statistic_type is a numeric value between 1 and 8 that specifies which statistic will be returned. The possible values are listed in the table below. Numeric value Statistic 1 Alpha parameter of ETS algorithm - the base value parameter. 2 Beta parameter of ETS algorithm - the trend value parameter. 3 Gamma parameter of ETS algorithm - the seasonality value parameter. 4 MASE (mean absolute scaled error) metric - a measure of the accuracy of forecasts. 5 SMAPE (symmetric mean absolute percentage error) metric - a measure of the accuracy based on percentage errors. 6 MAE (mean absolute error) metric - a measure of the accuracy of forecasts. 7 RMSE (root mean squared error) metric - a measure of the differences between predicted and observed values. 8 Step size detected in the timeline. seasonality is a numeric value that specifies which method should be used to detect the seasonality. It is an optional argument. The possible values are listed in the table below. Numeric value Behavior 1 or omitted Seasonality is detected automatically. Positive, whole numbers are used for the length of the seasonal pattern. 0 No seasonality, the prediction will be linear. an integer greater than or equal to 2 The specified number is used for the length of the seasonal pattern. data_completion is a numeric value that specifies how to process the missing data points in the timeline data range. It is an optional argument. The possible values are listed in the table below. Numeric value Behavior 1 or omitted Missing points are calculated as the average of the neighbouring points. 0 Missing points are treated as zero values. aggregation is a numeric value that specifies which function should be used to aggregate identical time values in the timeline data range. It is an optional argument. The possible values are listed in the table below. Numeric value Function 1 or omitted AVERAGE 2 COUNT 3 COUNTA 4 MAX 5 MEDIAN 6 MIN 7 SUM To apply the FORECAST.ETS.STAT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the FORECAST.ETS.STAT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The FORECAST.ETS.STAT function is one of the statistical functions. It is used to return a statistical value as a result of time series forecasting. Statistic type indicates which statistic is requested by this function. Syntax FORECAST.ETS.STAT(values, timeline, statistic_type, [seasonality], [data_completion], [aggregation]) The FORECAST.ETS.STAT function has the following arguments: Argument Description values A range of the historical values for which you want to predict a new point. timeline A range of date/time values that correspond to the historical values. The timeline range must be of the same size as the values range. Date/time values must have a constant step between them (although up to 30% of missing values can be processed as specified by the data_completion argument and duplicate values can be aggregated as specified by the aggregation argument). statistic_type A numeric value between 1 and 8 that specifies which statistic will be returned. The possible values are listed in the table below. seasonality A numeric value that specifies which method should be used to detect the seasonality. It is an optional argument. The possible values are listed in the table below. data_completion A numeric value that specifies how to process the missing data points in the timeline data range. It is an optional argument. The possible values are listed in the table below. aggregation A numeric value that specifies which function should be used to aggregate identical time values in the timeline data range. It is an optional argument. The possible values are listed in the table belows. The statistic_type argument can be one of the following: Numeric value Statistic 1 Alpha parameter of ETS algorithm - the base value parameter. 2 Beta parameter of ETS algorithm - the trend value parameter. 3 Gamma parameter of ETS algorithm - the seasonality value parameter. 4 MASE (mean absolute scaled error) metric - a measure of the accuracy of forecasts. 5 SMAPE (symmetric mean absolute percentage error) metric - a measure of the accuracy based on percentage errors. 6 MAE (mean absolute error) metric - a measure of the accuracy of forecasts. 7 RMSE (root mean squared error) metric - a measure of the differences between predicted and observed values. 8 Step size detected in the timeline. The seasonality argument can be one of the following: Numeric value Behavior 1 or omitted Seasonality is detected automatically. Positive, whole numbers are used for the length of the seasonal pattern. 0 No seasonality, the prediction will be linear. an integer greater than or equal to 2 The specified number is used for the length of the seasonal pattern. The data_completion argument can be one of the following: Numeric value Behavior 1 or omitted Missing points are calculated as the average of the neighbouring points. 0 Missing points are treated as zero values. The aggregation argument can be one of the following: Numeric value Function 1 or omitted AVERAGE 2 COUNT 3 COUNTA 4 MAX 5 MEDIAN 6 MIN 7 SUM Notes How to apply the FORECAST.ETS.STAT function. Examples The figure below displays the result returned by the FORECAST.ETS.STAT function." }, { "id": "Functions/forecast-ets.htm", "title": "FORECAST.ETS Function", - "body": "The FORECAST.ETS function is one of the statistical functions. It is used to calculate or predict a future value based on existing (historical) values by using the AAA version of the Exponential Smoothing (ETS) algorithm. The FORECAST.ETS function syntax is: FORECAST.ETS(target_date, values, timeline, [seasonality], [data_completion], [aggregation]) where target_date is a date for which you want to predict a new value. Must be after the last date in the timeline. values is a range of the historical values for which you want to predict a new point. timeline is a range of date/time values that correspond to the historical values. The timeline range must be of the same size as the values range. Date/time values must have a constant step between them (although up to 30% of missing values can be processed as specified by the data_completion argument and duplicate values can be aggregated as specified by the aggregation argument). seasonality is a numeric value that specifies which method should be used to detect the seasonality. It is an optional argument. The possible values are listed in the table below. Numeric value Behavior 1 or omitted Seasonality is detected automatically. Positive, whole numbers are used for the length of the seasonal pattern. 0 No seasonality, the prediction will be linear. an integer greater than or equal to 2 The specified number is used for the length of the seasonal pattern. data_completion is a numeric value that specifies how to process the missing data points in the timeline data range. It is an optional argument. The possible values are listed in the table below. Numeric value Behavior 1 or omitted Missing points are calculated as the average of the neighbouring points. 0 Missing points are treated as zero values. aggregation is a numeric value that specifies which function should be used to aggregate identical time values in the timeline data range. It is an optional argument. The possible values are listed in the table below. Numeric value Function 1 or omitted AVERAGE 2 COUNT 3 COUNTA 4 MAX 5 MEDIAN 6 MIN 7 SUM To apply the FORECAST.ETS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the FORECAST.ETS function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The FORECAST.ETS function is one of the statistical functions. It is used to calculate or predict a future value based on existing (historical) values by using the AAA version of the Exponential Smoothing (ETS) algorithm. Syntax FORECAST.ETS(target_date, values, timeline, [seasonality], [data_completion], [aggregation]) The FORECAST.ETS function has the following arguments: Argument Description target_date A date for which you want to predict a new value. Must be after the last date in the timeline. values A range of the historical values for which you want to predict a new point. timeline A range of date/time values that correspond to the historical values. The timeline range must be of the same size as the values range. Date/time values must have a constant step between them (although up to 30% of missing values can be processed as specified by the data_completion argument and duplicate values can be aggregated as specified by the aggregation argument). seasonality A numeric value that specifies which method should be used to detect the seasonality. It is an optional argument. The possible values are listed in the table below. data_completion A numeric value that specifies how to process the missing data points in the timeline data range. It is an optional argument. The possible values are listed in the table below. aggregation A numeric value that specifies which function should be used to aggregate identical time values in the timeline data range. It is an optional argument. The possible values are listed in the table belows. The seasonality argument can be one of the following: Numeric value Behavior 1 or omitted Seasonality is detected automatically. Positive, whole numbers are used for the length of the seasonal pattern. 0 No seasonality, the prediction will be linear. an integer greater than or equal to 2 The specified number is used for the length of the seasonal pattern. The data_completion argument can be one of the following: Numeric value Behavior 1 or omitted Missing points are calculated as the average of the neighbouring points. 0 Missing points are treated as zero values. The aggregation argument can be one of the following: Numeric value Function 1 or omitted AVERAGE 2 COUNT 3 COUNTA 4 MAX 5 MEDIAN 6 MIN 7 SUM Notes How to apply the FORECAST.ETS function. Examples The figure below displays the result returned by the FORECAST.ETS function." }, { "id": "Functions/forecast-linear.htm", "title": "FORECAST.LINEAR Function", - "body": "The FORECAST.LINEAR function is one of the statistical functions. It is used to calculate, or predict, a future value by using existing values; the predicted value is a y-value for a given x-value. The known values are existing x-values and y-values, and the new value is predicted by using linear regression. The FORECAST.LINEAR function syntax is: FORECAST.LINEAR(x, known_y's, known_x's) where x is an x-value for which you want to predict a new y-value, a numeric value entered manually or included into the cell you make reference to. known_y's is an array of known y-values. known_x's is an array of known x-values. To apply the FORECAST.LINEAR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the FORECAST.LINEAR function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The FORECAST.LINEAR function is one of the statistical functions. It is used to calculate, or predict, a future value by using existing values; the predicted value is a y-value for a given x-value. The known values are existing x-values and y-values, and the new value is predicted by using linear regression. Syntax FORECAST.LINEAR(x, known_y's, known_x's) The FORECAST.LINEAR function has the following arguments: Argument Description x An x-value used to predict the y-value. known_y's An array of known y-values. known_x's An array of known x-values. Notes How to apply the FORECAST.LINEAR function. Examples The figure below displays the result returned by the FORECAST.LINEAR function." }, { "id": "Functions/forecast.htm", "title": "FORECAST Function", - "body": "The FORECAST function is one of the statistical functions. It is used to predict a future value based on existing values provided. The FORECAST function syntax is: FORECAST(x, array-1, array-2) where x is an x-value used to predict the y-value, a numeric value entered manually or included into the cell you make reference to. array-1(2) is the selected range of cells with the same number of elements. To apply the FORECAST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the FORECAST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The FORECAST function is one of the statistical functions. It is used to predict a future value based on existing values provided. Syntax FORECAST(x, known_y's, known_x's) The FORECAST function has the following arguments: Argument Description x An x-value used to predict the y-value. known_y's The dependent data range. known_x's The independent data range with the same number of elements as known_y's contains. Notes How to apply the FORECAST function. Examples The figure below displays the result returned by the FORECAST function." }, { "id": "Functions/formulatext.htm", "title": "FORMULATEXT Function", - "body": "The FORMULATEXT function is one of the lookup and reference functions. It is used to return a formula as a string (i.e. the text string that is displayed in the formula bar if you select the cell that contains the formula). The FORMULATEXT function syntax is: FORMULATEXT(reference) where reference is a reference to a single cell or a range of cells. If the referenced cell range contains more than one formula, the FORMULATEXT function returns the value from the upper left cell of this range. If the referenced cell does not contain a formula, the FORMULATEXT function returns the N/A error value. To apply the FORMULATEXT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the FORMULATEXT function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The FORMULATEXT function is one of the lookup and reference functions. It is used to return a formula as a string (i.e. the text string that is displayed in the formula bar if you select the cell that contains the formula). Syntax FORMULATEXT(reference) The FORMULATEXT function has the following argument: Argument Description reference A reference to a single cell or a range of cells. Notes If the referenced cell range contains more than one formula, the FORMULATEXT function returns the value from the upper left cell of this range. If the referenced cell does not contain a formula, the FORMULATEXT function returns the N/A error value. Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the FORMULATEXT function. Examples The figure below displays the result returned by the FORMULATEXT function." }, { "id": "Functions/frequency.htm", "title": "FREQUENCY Function", - "body": "The FREQUENCY function is one of the statistical functions. It is 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. The FREQUENCY function syntax is: FREQUENCY(data-array, bins-array) where data-array is the selected range of cells you want to count the frequencies for, bins-array is the selected range of cells containing intervals into which you want to group the values in data-array. To apply the FREQUENCY function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the FREQUENCY function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The FREQUENCY function is one of the statistical functions. It is 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. Syntax FREQUENCY(data_array, bins_array) The FREQUENCY function has the following arguments: Argument Description data_array The selected range of cells you want to count the frequencies for. bins_array The selected range of cells containing intervals into which you want to group the values in data_array. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the FREQUENCY function. Examples The figure below displays the result returned by the FREQUENCY function." }, { "id": "Functions/ftest.htm", "title": "FTEST Function", - "body": "The FTEST function is one of the statistical functions. It is used to return the result of an F-test. An F-test returns the two-tailed probability that the variances in array1 and array2 are not significantly different. Use this function to determine whether two samples have different variances. The FTEST function syntax is: FTEST(array1, array2) where array1 is the first range of values. array2 is the second range of values. The values can be entered manually or included into the cells you make reference to. Text, logical values and empty cells are ignored, cells that contain zero values are included. If the number of values in a data range is less than 2 or a variance of an array is 0, the function returns the #DIV/0! error value. To apply the FTEST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the FTEST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The FTEST function is one of the statistical functions. It is used to return the result of an F-test. An F-test returns the two-tailed probability that the variances in array1 and array2 are not significantly different. Use this function to determine whether two samples have different variances. Syntax FTEST(array1, array2) The FTEST function has the following arguments: Argument Description array1 The first range of values. array2 The second range of values. Notes Text, logical values and empty cells are ignored, cells that contain zero values are included. If the number of values in a data range is less than 2 or a variance of an array is 0, the function returns the #DIV/0! error value. How to apply the FTEST function. Examples The figure below displays the result returned by the FTEST function." }, { "id": "Functions/fv.htm", "title": "FV Function", - "body": "The FV function is one of the financial functions. It is used to calculate the future value of an investment based on a specified interest rate and a constant payment schedule. The FV function syntax is: FV(rate, nper, pmt [, [pv] [,[type]]]) where rate is the interest rate for the investment. nper is a number of payments. pmt is a payment amount. pv is a present value of the payments. It is an optional argument. If it is omitted, the function will assume pv to be 0. type is a period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period. Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments. The numeric values can be entered manually or included into the cell you make reference to. To apply the FV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the FV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The FV function is one of the financial functions. It is used to calculate the future value of an investment based on a specified interest rate and a constant payment schedule. Syntax FV(rate, nper, pmt, [pv], [type]) The FV function has the following arguments: Argument Description rate The interest rate for the investment. nper A number of payments. pmt A payment amount. pv A present value of the payments. It is an optional argument. If it is omitted, the function will assume pv to be 0. type A period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period. Notes Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments. How to apply the FV function. Examples The figure below displays the result returned by the FV function." }, { "id": "Functions/fvschedule.htm", "title": "FVSCHEDULE Function", - "body": "The FVSCHEDULE function is one of the financial functions. It is used to calculate the future value of an investment based on a series of changeable interest rates. The FVSCHEDULE function syntax is: FVSCHEDULE(principal, schedule) where principal is the current value of an investment. schedule is an array or a range of interest rates. Note: schedule values can be numbers or empty cells (they are interpreted as 0). The numeric values can be entered manually or included into the cell you make reference to. To apply the FVSCHEDULE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the FVSCHEDULE function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The FVSCHEDULE function is one of the financial functions. It is used to calculate the future value of an investment based on a series of changeable interest rates. Syntax FVSCHEDULE(principal, schedule) The FVSCHEDULE function has the following arguments: Argument Description principal The current value of an investment. schedule An array or a range of interest rates. Notes Schedule values can be numbers or empty cells (they are interpreted as 0). How to apply the FVSCHEDULE function. Examples The figure below displays the result returned by the FVSCHEDULE function." }, { "id": "Functions/gamma-dist.htm", "title": "GAMMA.DIST Function", - "body": "The GAMMA.DIST function is one of the statistical functions. It is used to return the gamma distribution. The GAMMA.DIST function syntax is: GAMMA.DIST(x, alpha, beta, cumulative) where x is the value at which the function should be calculated. A numeric value greater than 0. alpha is the first parameter of the distribution, a numeric value greater than 0. beta is the second parameter of the distribution, a numeric value greater than 0. If beta is 1, the function returns the standard gamma distribution. cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function. The values can be entered manually or included into the cells you make reference to. To apply the GAMMA.DIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the GAMMA.DIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The GAMMA.DIST function is one of the statistical functions. It is used to return the gamma distribution. Syntax GAMMA.DIST(x, alpha, beta, cumulative) The GAMMA.DIST function has the following arguments: Argument Description x The value at which the function should be calculated. A numeric value greater than 0. alpha The first parameter of the distribution, a numeric value greater than 0. beta The second parameter of the distribution, a numeric value greater than 0. If beta is 1, the function returns the standard gamma distribution. cumulative A logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function. Notes How to apply the GAMMA.DIST function. Examples The figure below displays the result returned by the GAMMA.DIST function." }, { "id": "Functions/gamma-inv.htm", "title": "GAMMA.INV Function", - "body": "The GAMMA.INV function is one of the statistical functions. It is used to return the inverse of the gamma cumulative distribution. The GAMMA.INV function syntax is: GAMMA.INV(probability, alpha, beta) where probability is the probability associated with the gamma distribution. A numeric value greater than 0 but less than 1. alpha is the first parameter of the distribution, a numeric value greater than 0. beta is the second parameter of the distribution, a numeric value greater than 0. If beta is 1, the function returns the standard gamma distribution. The values can be entered manually or included into the cells you make reference to. To apply the GAMMA.INV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the GAMMA.INV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The GAMMA.INV function is one of the statistical functions. It is used to return the inverse of the gamma cumulative distribution. Syntax GAMMA.INV(probability, alpha, beta) The GAMMA.INV function has the following arguments: Argument Description probability The probability associated with the gamma distribution. A numeric value greater than 0 but less than 1. alpha The first parameter of the distribution, a numeric value greater than 0. beta The second parameter of the distribution, a numeric value greater than 0. If beta is 1, the function returns the standard gamma distribution. Notes How to apply the GAMMA.INV function. Examples The figure below displays the result returned by the GAMMA.INV function." }, { "id": "Functions/gamma.htm", "title": "GAMMA Function", - "body": "The GAMMA function is one of the statistical functions. It is used to return the gamma function value. The GAMMA function syntax is: GAMMA(number) where number is a numeric value entered manually or included into the cell you make reference to. Note: if the number is a negative integer or 0 the function returns the #NUM! error value. To apply the GAMMA function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the GAMMA function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The GAMMA function is one of the statistical functions. It is used to return the gamma function value. Syntax GAMMA(number) The GAMMA function has the following argument: Argument Description number A numeric value. Notes If the number is a negative integer or 0 the function returns the #NUM! error value. How to apply the GAMMA function. Examples The figure below displays the result returned by the GAMMA function." }, { "id": "Functions/gammadist.htm", "title": "GAMMADIST Function", - "body": "The GAMMADIST function is one of the statistical functions. It is used to return the gamma distribution. The GAMMADIST function syntax is: GAMMADIST(x, alpha, beta, cumulative) where x is the value at which the function should be calculated. A numeric value greater than 0. alpha is the first parameter of the distribution, a numeric value greater than 0. beta is the second parameter of the distribution, a numeric value greater than 0. If beta is 1, the function returns the standard gamma distribution. cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function. The values can be entered manually or included into the cells you make reference to. To apply the GAMMADIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the GAMMADIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The GAMMADIST function is one of the statistical functions. It is used to return the gamma distribution. Syntax GAMMADIST(x, alpha, beta, cumulative) The GAMMADIST function has the following arguments: Argument Description x The value at which the function should be calculated. A numeric value greater than 0. alpha The first parameter of the distribution, a numeric value greater than 0. beta The second parameter of the distribution, a numeric value greater than 0. If beta is 1, the function returns the standard gamma distribution. cumulative A logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function. Notes How to apply the GAMMADIST function. Examples The figure below displays the result returned by the GAMMADIST function." }, { "id": "Functions/gammainv.htm", "title": "GAMMAINV Function", - "body": "The GAMMAINV function is one of the statistical functions. It is used to return the inverse of the gamma cumulative distribution. The GAMMAINV function syntax is: GAMMAINV(probability, alpha, beta) where probability is the probability associated with the gamma distribution. A numeric value greater than 0 but less than 1. alpha is the first parameter of the distribution, a numeric value greater than 0. beta is the second parameter of the distribution, a numeric value greater than 0. If beta is 1, the function returns the standard gamma distribution. The values can be entered manually or included into the cells you make reference to. To apply the GAMMAINV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the GAMMAINV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The GAMMAINV function is one of the statistical functions. It is used to return the inverse of the gamma cumulative distribution. Syntax GAMMAINV(probability, alpha, beta) The GAMMAINV function has the following arguments: Argument Description probability The probability associated with the gamma distribution. A numeric value greater than 0 but less than 1. alpha The first parameter of the distribution, a numeric value greater than 0. beta The second parameter of the distribution, a numeric value greater than 0. If beta is 1, the function returns the standard gamma distribution. Notes How to apply the GAMMAINV function. Examples The figure below displays the result returned by the GAMMAINV function." }, { "id": "Functions/gammaln-precise.htm", "title": "GAMMALN.PRECISE Function", - "body": "The GAMMALN.PRECISE function is one of the statistical functions. It is used to return the natural logarithm of the gamma function. The GAMMALN.PRECISE function syntax is: GAMMALN.PRECISE(x) where x is a numeric value greater than 0 entered manually or included into the cell you make reference to. To apply the GAMMALN.PRECISE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the GAMMALN.PRECISE function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The GAMMALN.PRECISE function is one of the statistical functions. It is used to return the natural logarithm of the gamma function. Syntax GAMMALN.PRECISE(x) The GAMMALN.PRECISE function has the following argument: Argument Description x A numeric value greater than 0. Notes How to apply the GAMMALN.PRECISE function. Examples The figure below displays the result returned by the GAMMALN.PRECISE function." }, { "id": "Functions/gammaln.htm", "title": "GAMMALN Function", - "body": "The GAMMALN function is one of the statistical functions. It is used to return the natural logarithm of the gamma function. The GAMMALN function syntax is: GAMMALN(number) where number is a numeric value greater than 0 entered manually or included into the cell you make reference to. To apply the GAMMALN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the GAMMALN function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The GAMMALN function is one of the statistical functions. It is used to return the natural logarithm of the gamma function. Syntax GAMMALN(x) The GAMMALN function has the following argument: Argument Description x A numeric value greater than 0. Notes How to apply the GAMMALN function. Examples The figure below displays the result returned by the GAMMALN function." }, { "id": "Functions/gauss.htm", "title": "GAUSS Function", - "body": "The GAUSS function is one of the statistical functions. It is used to calculate the probability that a member of a standard normal population will fall between the mean and z standard deviations from the mean. The GAUSS function syntax is: GAUSS(z) where z is a numeric value entered manually or included into the cell you make reference to. To apply the GAUSS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the GAUSS function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The GAUSS function is one of the statistical functions. It is used to calculate the probability that a member of a standard normal population will fall between the mean and z standard deviations from the mean. Syntax GAUSS(z) The GAUSS function has the following argument: Argument Description z A numeric value. Notes How to apply the GAUSS function. Examples The figure below displays the result returned by the GAUSS function." }, { "id": "Functions/gcd.htm", "title": "GCD Function", - "body": "The GCD function is one of the math and trigonometry functions. It is used to return the greatest common divisor of two or more numbers. The GCD function syntax is: GCD(argument-list) where argument-list is up to 30 numeric values entered manually or included into the cells you make reference to. To apply the GCD function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the GCD function, enter the required arguments separating by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The GCD function is one of the math and trigonometry functions. It is used to return the greatest common divisor of two or more numbers. Syntax GCD(number1, [number2], ...) The GCD function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to get the greatest common divisor. Notes How to apply the GCD function. Examples The figure below displays the result returned by the GCD function." }, { "id": "Functions/geomean.htm", "title": "GEOMEAN Function", - "body": "The GEOMEAN function is one of the statistical functions. It is used to calculate the geometric mean of the argument list. The GEOMEAN function syntax is: GEOMEAN(argument-list) where argument-list is up to 30 numerical values greater than 0 entered manually or included into the cells you make reference to. To apply the GEOMEAN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the GEOMEAN function, enter the required arguments separating by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The GEOMEAN function is one of the statistical functions. It is used to calculate the geometric mean of the argument list. Syntax GEOMEAN(number1, [number2], ...) The GEOMEAN function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to get the geometric mean. Notes How to apply the GEOMEAN function. Examples The figure below displays the result returned by the GEOMEAN function." }, { "id": "Functions/gestep.htm", "title": "GESTEP Function", - "body": "The GESTEP function is one of the engineering functions. It is 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. The GESTEP function syntax is: GESTEP(number [, step]) where number is a number to compare with step. step is a threshold value. It is an optional argument. If it is omitted, the function will assume step to be 0. The numeric values can be entered manually or included into the cell you make reference to. To apply the GESTEP function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the GESTEP function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The GESTEP function is one of the engineering functions. It is 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. Syntax GESTEP(number, [step]) The GESTEP function has the following arguments: Argument Description number A number to compare with step. step A threshold value. It is an optional argument. If it is omitted, the function will assume step to be 0. Notes How to apply the GESTEP function. Examples The figure below displays the result returned by the GESTEP function." }, { "id": "Functions/growth.htm", "title": "GROWTH Function", - "body": "The GROWTH function is one of the statistical functions. It is used to calculate predicted exponential growth by using existing data. The GROWTH function syntax is: GROWTH(known_y’s, [known_x’s], [new_x’s], [const]) where known_y’s is the set of y-values you already know in the y = b*m^x equation. known_x’s is the optional set of x-values you might know in the y = b*m^x equation. new_x’s is the optional set of x-values you want y-values to be returned to. const is an optional argument. It is a TRUE or FALSE value where TRUE or lack of the argument forces b to be calculated normally and FALSE sets b to 1 in the y = b*m^x equation. To apply the GROWTH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the GROWTH function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The GROWTH function is one of the statistical functions. It is used to calculate predicted exponential growth by using existing data. Syntax GROWTH(known_y’s, [known_x’s], [new_x’s], [const]) The GROWTH function has the following arguments: Argument Description known_y’s The set of y-values you already know in the y = b*m^x equation. known_x’s The optional set of x-values you might know in the y = b*m^x equation. new_x’s The optional set of x-values you want y-values to be returned to. const An optional argument. It is a TRUE or FALSE value where TRUE or lack of the argument forces b to be calculated normally and FALSE sets b to 1 in the y = b*m^x equation. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the GROWTH function. Examples The figure below displays the result returned by the GROWTH function." }, { "id": "Functions/harmean.htm", "title": "HARMEAN Function", - "body": "The HARMEAN function is one of the statistical functions. It is used to calculate the harmonic mean of the argument list. The HARMEAN function syntax is: HARMEAN(argument-list) where argument-list is up to 30 numerical values greater than 0 entered manually or included into the cells you make reference to. To apply the HARMEAN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the HARMEAN function, enter the required arguments separating by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The HARMEAN function is one of the statistical functions. It is used to calculate the harmonic mean of the argument list. Syntax HARMEAN(number1, [number2], ...) The HARMEAN function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to get the harmonic mean. Notes How to apply the HARMEAN function. Examples The figure below displays the result returned by the HARMEAN function." }, { "id": "Functions/hex2bin.htm", "title": "HEX2BIN Function", - "body": "The HEX2BIN function is one of the engineering functions. It is used to convert a hexadecimal number to a binary number. The HEX2BIN function syntax is: HEX2BIN(number [, num-hex-digits]) where number is a hexadecimal number entered manually or included into the cell you make reference to. num-hex-digits is the number of digits to display. If omitted, the function will use the minimum number. Note: if the argument is not recognised as a hexadecimal number, or contains more than 10 characters, or the resulting binary number requires more digits than you specified, or the specified num-hex-digits number is less than or equal to 0, the function will return the #NUM! error. To apply the HEX2BIN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the HEX2BIN function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The HEX2BIN function is one of the engineering functions. It is used to convert a hexadecimal number to a binary number. Syntax HEX2BIN(number, [places]) The HEX2BIN function has the following arguments: Argument Description number A hexadecimal number entered manually or included into the cell you make reference to. places The number of digits to display. If omitted, the function will use the minimum number. Notes If the argument is not recognised as a hexadecimal number, or contains more than 10 characters, or the resulting binary number requires more digits than you specified, or the specified places number is less than or equal to 0, the function will return the #NUM! error. How to apply the HEX2BIN function. Examples The figure below displays the result returned by the HEX2BIN function." }, { "id": "Functions/hex2dec.htm", "title": "HEX2DEC Function", - "body": "The HEX2DEC function is one of the engineering functions. It is used to convert a hexadecimal number into a decimal number. The HEX2DEC function syntax is: HEX2DEC(number) where number is a hexadecimal number entered manually or included into the cell you make reference to. Note: if the argument is not recognised as a hexadecimal number, or contains more than 10 characters, the function will return the #NUM! error. To apply the HEX2DEC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the HEX2DEC function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The HEX2DEC function is one of the engineering functions. It is used to convert a hexadecimal number into a decimal number. Syntax HEX2DEC(number) The HEX2DEC function has the following argument: Argument Description number A hexadecimal number entered manually or included into the cell you make reference to. Notes If the argument is not recognised as a hexadecimal number, or contains more than 10 characters, the function will return the #NUM! error. How to apply the HEX2DEC function. Examples The figure below displays the result returned by the HEX2DEC function." }, { "id": "Functions/hex2oct.htm", "title": "HEX2OCT Function", - "body": "The HEX2OCT function is one of the engineering functions. It is used to convert a hexadecimal number to an octal number. The HEX2OCT function syntax is: HEX2OCT(number [, num-hex-digits]) where number is a hexadecimal number entered manually or included into the cell you make reference to. num-hex-digits is the number of digits to display. If omitted, the function will use the minimum number. Note: if the argument is not recognised as a hexadecimal number, or contains more than 10 characters, or the resulting octal number requires more digits than you specified, or the specified num-hex-digits number is less than or equal to 0, the function will return the #NUM! error. To apply the HEX2OCT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the HEX2OCT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The HEX2OCT function is one of the engineering functions. It is used to convert a hexadecimal number to an octal number. Syntax HEX2OCT(number, [places]) The HEX2OCT function has the following arguments: Argument Description number A hexadecimal number entered manually or included into the cell you make reference to. places The number of digits to display. If omitted, the function will use the minimum number. Notes If the argument is not recognised as a hexadecimal number, or contains more than 10 characters, or the resulting octal number requires more digits than you specified, or the specified places number is less than or equal to 0, the function will return the #NUM! error. How to apply the HEX2OCT function. Examples The figure below displays the result returned by the HEX2OCT function." }, { "id": "Functions/hlookup.htm", "title": "HLOOKUP Function", - "body": "The HLOOKUP function is one of the lookup and reference functions. It is 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. The HLOOKUP function syntax is: HLOOKUP (lookup-value, table-array, row-index-num[, [range-lookup-flag]]) where lookup-value is a value to search for. table-array are two or more rows containing data sorted in ascending order. row-index-num is a row number in the same column of the table-array, a numeric value greater than or equal to 1 but less than the number of rows in the table-array. range-lookup-flag is an optional argument. It is a logical value: TRUE or FALSE. Enter FALSE to find an exact match. Enter TRUE to find an approximate match, in this case if there is not a value that strictly matches the lookup-value, then the function will choose the next largest value less than the lookup-value. If this argument is absent, the function will find an approximate match. If the range-lookup-flag is set to FALSE, but no exact match is found, then the function will return the #N/A error. How to use HLOOKUP To apply the HLOOKUP function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the HLOOKUP function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The HLOOKUP function is one of the lookup and reference functions. It is 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. Syntax HLOOKUP (lookup_value, table_array, row_index_num, [range_lookup]) The HLOOKUP function has the following arguments: Argument Description lookup_value A value to search for. table_array Two or more rows containing data sorted in ascending order. row_index_num A row number in the same column of the table_array, a numeric value greater than or equal to 1 but less than the number of rows in the table_array. range_lookup An optional argument. It is a logical value: TRUE or FALSE. Enter FALSE to find an exact match. Enter TRUE to find an approximate match, in this case if there is not a value that strictly matches the lookup_value, then the function will choose the next largest value less than the lookup_value. If this argument is absent, the function will find an approximate match. Notes If the range_lookup is set to FALSE, but no exact match is found, then the function will return the #N/A error. How to apply the HLOOKUP function. Examples The figure below displays the result returned by the HLOOKUP function." }, { "id": "Functions/hour.htm", "title": "HOUR Function", - "body": "The HOUR function is one of the date and time functions. It returns the hour (a number from 0 to 23) of the time value. The HOUR function syntax is: HOUR( time-value ) where time-value is a value entered manually or included into the cell you make reference to. Note: the time-value may be expressed as a string value (e.g. \"13:39\"), a decimal number (e.g. 0.56 corresponds to 13:26) , or the result of a formula (e.g. the result of the NOW function in the default format - 9/26/12 13:39) To apply the HOUR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the HOUR function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The HOUR function is one of the date and time functions. It returns the hour (a number from 0 to 23) of the time value. Syntax HOUR(serial_number) The HOUR function has the following argument: Argument Description serial_number The time value that contains the hour you want to find. Notes The serial_number may be expressed as a string value (e.g. \"13:39\"), a decimal number (e.g. 0.56 corresponds to 13:26) , or the result of a formula (e.g. the result of the NOW function in the default format - 9/26/12 13:39) How to apply the HOUR function. Examples The figure below displays the result returned by the HOUR function." }, { "id": "Functions/hstack.htm", "title": "HSTACK Function", - "body": "The HSTACK function is one of the lookup and reference functions. It is used to horizontally stack arrays into one array. Please note that this is an array formula. To learn more, please read the Insert array formulas article. The HSTACK function syntax is: HSTACK (array1, [array2], ...) where array is used to set the arrays to append. To apply the HSTACK function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the HSTACK function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The HSTACK function is one of the lookup and reference functions. It is used to horizontally stack arrays into one array. Syntax HSTACK (array1, [array2], ...) The HSTACK function has the following arguments: Argument Description array1/2/n Is used to set the arrays to append. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the HSTACK function. Examples The figure below displays the result returned by the HSTACK function." }, { "id": "Functions/hyperlink.htm", - "title": "HYPERLINLK Function", - "body": "The HYPERLINLK function is one of the lookup and reference functions. It is used to create a shortcut that jumps to another location in the current workbook, or opens a document stored on a network server, an intranet, or the Internet. The HYPERLINLK function syntax is: HYPERLINLK(link_location [, friendly_name]) where link_location is the path and file name to the document to be opened. In the online version, the path can be a URL address only. link_location can also refer to a certain place in the current workbook, for example, to a certain cell or a named range. The value can be specified as a text string enclosed to the quotation marks or a reference to a cell containing the link as a text string. friendly_name is a text displayed in the cell. It is an optional value. If it is omitted, the link_location value is displayed in the cell. To apply the HYPERLINLK function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the HYPERLINLK function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell. To open the link click on it. To select a cell that contains a link without opening the link click and hold the mouse button." + "title": "HYPERLINK Function", + "body": "The HYPERLINK function is one of the lookup and reference functions. It is used to create a shortcut that jumps to another location in the current workbook, or opens a document stored on a network server, an intranet, or the Internet. Syntax HYPERLINK(link_location, [friendly_name]) The HYPERLINK function has the following arguments: Argument Description link_location The path and file name to the document to be opened. In the online version, the path can be a URL address only. link_location can also refer to a certain place in the current workbook, for example, to a certain cell or a named range. The value can be specified as a text string enclosed to the quotation marks or a reference to a cell containing the link as a text string. friendly_name A text displayed in the cell. It is an optional argument. If it is omitted, the link_location value is displayed in the cell. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the HYPERLINK function. Examples The figure below displays the result returned by the HYPERLINK function. To open the link click on it. To select a cell that contains a link without opening the link click and hold the mouse button." }, { "id": "Functions/hypgeom-dist.htm", "title": "HYPGEOM.DIST Function", - "body": "The HYPGEOM.DIST function is one of the statistical functions. It is used to return the hypergeometric distribution, the probability of a given number of sample successes, given the sample size, population successes, and population size. The HYPGEOM.DIST function syntax is: HYPGEOM.DIST(sample_s, number_sample, population_s, number_pop, cumulative) where sample_s is the number of the successes in the given sample, a numeric value greater than 0, but less than the lesser of number_sample or population_s. number_sample - the size of the sample, a numeric value greater than 0, but less than number_pop. population_s - the number of the successes in the population, a numeric value greater than 0, but less than number_pop. number_pop - the size of the population, a numeric value greater than 0. cumulative - is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function. The numeric values can be entered manually or included into the cells you make reference to. To apply the HYPGEOM.DIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the HYPGEOM.DIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The HYPGEOM.DIST function is one of the statistical functions. It is used to return the hypergeometric distribution, the probability of a given number of sample successes, given the sample size, population successes, and population size. Syntax HYPGEOM.DIST(sample_s, number_sample, population_s, number_pop, cumulative) The HYPGEOM.DIST function has the following arguments: Argument Description sample_s The number of the successes in the given sample, a numeric value greater than 0, but less than the lesser of number_sample or population_s. number_sample The size of the sample, a numeric value greater than 0, but less than number_pop. population_s The number of the successes in the population, a numeric value greater than 0, but less than number_pop. number_pop The size of the population, a numeric value greater than 0. cumulative A logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function. Notes How to apply the HYPGEOM.DIST function. Examples The figure below displays the result returned by the HYPGEOM.DIST function." }, { "id": "Functions/hypgeomdist.htm", "title": "HYPGEOMDIST Function", - "body": "The HYPGEOMDIST function is one of the statistical functions. It is used to return the hypergeometric distribution, the probability of a given number of sample successes, given the sample size, population successes, and population size. The HYPGEOMDIST function syntax is: HYPGEOMDIST(sample-successes , number-sample , population-successes , number-population) where sample-successes is the number of the successes in the given sample, a numeric value greater than 0, but less than the lesser of number-sample or population-successes. number-sample - the size of the sample, a numeric value greater than 0, but less than number-population. population-successes - the number of the successes in the population, a numeric value greater than 0, but less than number-population. number-population - the size of the population, a numeric value greater than 0. The numeric values can be entered manually or included into the cells you make reference to. To apply the HYPGEOMDIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the HYPGEOMDIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The HYPGEOMDIST function is one of the statistical functions. It is used to return the hypergeometric distribution, the probability of a given number of sample successes, given the sample size, population successes, and population size. Syntax HYPGEOMDIST(sample_s, number_sample, population_s, number_pop, cumulative) The HYPGEOMDIST function has the following arguments: Argument Description sample_s The number of the successes in the given sample, a numeric value greater than 0, but less than the lesser of number_sample or population_s. number_sample The size of the sample, a numeric value greater than 0, but less than number_pop. population_s The number of the successes in the population, a numeric value greater than 0, but less than number_pop. number_pop The size of the population, a numeric value greater than 0. cumulative A logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function. Notes How to apply the HYPGEOMDIST function. Examples The figure below displays the result returned by the HYPGEOMDIST function." }, { "id": "Functions/if.htm", "title": "IF Function", - "body": "The IF function is one of the logical functions. Is used to check the logical expression and return one value if it is TRUE, or another if it is FALSE. The IF function syntax is: IF(logical_test, value_if_true, value_if_false) where logical_test, value_if_true, value_if_false are values entered manually or included into the cell you make reference to. To apply the IF function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Logical function group from the list, click the IF function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell. For example: There are three arguments: logical_test = A1<100, value_if_true = 0, value_if_false = 1, where A1 is 12. This logical expression is TRUE. So the function returns 0. If we change the A1 value from 12 to 112, the function returns 1:" + "body": "The IF function is one of the logical functions. Is used to check the logical expression and return one value if it is TRUE, or another if it is FALSE. Syntax IF(logical_test, value_if_true, [value_if_false]) The IF function has the following arguments: Argument Description logical_test The condition that you want to test. value_if_true The value to be returned if the result is TRUE. value_if_false The value to be returned if the result is FALSE. Notes How to apply the IF function. Examples There are three arguments: logical_test = A1<100, value_if_true = 0, value_if_false = 1, where A1 is 12. This logical expression is TRUE. So the function returns 0. If we change the A1 value from 12 to 112, the function returns 1:" }, { "id": "Functions/iferror.htm", "title": "IFERROR Function", - "body": "The IFERROR function is one of the logical functions. It is 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. The IFERROR function syntax is: IFERROR(value, value_if_error,) where value and value_if_error are values entered manually or included into the cell you make reference to. How to use IFERROR To apply the IFERROR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Logical function group from the list, click the IFERROR function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell. For example: You have a list of available item stock and its overall value. To learn unit price, we will use the IFERROR function to see if there are any errors. The arguments are as follows: value = B2/A2, value_if_error = \"Out of stock\". The formula in the first argument does not contain any errors for cells C2:C9 and C11:C14 so the function returns the result of the calculation. However, it is the opposite for C10 and C11 since the formula tries to divide by zero, hence, we get \"Out of stock\" as a result." + "body": "The IFERROR function is one of the logical functions. It is 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. Syntax IFERROR(value, value_if_error) The IFERROR function has the following arguments: Argument Description value The value that is checked for an error. value_if_error The value to be returned if the formula evaluates to an error. The following errors are evaluated: #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, #NULL!. Notes How to apply the IFERROR function. Examples You have a list of available item stock and its overall value. To learn unit price, we will use the IFERROR function to see if there are any errors. The arguments are as follows: value = B2/A2, value_if_error = \"Out of stock\". The formula in the first argument does not contain any errors for cells C2:C9 and C11:C14 so the function returns the result of the calculation. However, it is the opposite for C10 and C11 since the formula tries to divide by zero, hence, we get \"Out of stock\" as a result." }, { "id": "Functions/ifna.htm", "title": "IFNA Function", - "body": "The IFNA function is one of the logical functions. It is used to check if there is an error in the formula in the first argument. The function returns the value you specify if the formula returns the #N/A error value, otherwise returns the result of the formula. The IFNA function syntax is: IFNA(value, value_if_na) where value is the argument that is checked for the #N/A error value. value_if_na is the value to return if the formula evaluates to the #N/A error value. The values can be entered manually or included into the cells you make reference to. To apply the IFNA function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Logical function group from the list, click the IFNA function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The IFNA function is one of the logical functions. It is used to check if there is an error in the formula in the first argument. The function returns the value you specify if the formula returns the #N/A error value, otherwise returns the result of the formula. Syntax IFNA(value, value_if_na) The IFNA function has the following arguments: Argument Description value The argument that is checked for the #N/A error value. value_if_na The value to return if the formula evaluates to the #N/A error value. Notes How to apply the IFNA function. Examples The figure below displays the result returned by the IFNA function." }, { "id": "Functions/ifs.htm", "title": "IFS Function", - "body": "The IFS function is one of the logical functions. It checks whether one or more conditions are met and returns a value that corresponds to the first TRUE condition. The IFS function syntax is: IFS(logical_test1, value_if_true1, [logical_test2, value_if_true2], ...) where logical_test1 is the first condition to be evaluated to TRUE or FALSE. value_if_true1 is the value that returns if the logical_test1 is TRUE. logical_test2, value_if_true2, ... are additional conditions and values to return. These arguments are optional. You can check up to 127 conditions. The values can be entered manually or included into the cell you make reference to. How to use IFS To apply the IFS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Logical function group from the list, click the IFS function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell. For example: There are the following arguments: logical_test1 = A1<100, value_if_true1 = 1, logical_test2 = A1>100, value_if_true2 = 2, where A1 is 120. The second logical expression is TRUE. So the function returns 2." + "body": "The IFS function is one of the logical functions. It checks whether one or more conditions are met and returns a value that corresponds to the first TRUE condition. Syntax IFS(logical_test1, value_if_true1, [logical_test2, value_if_true2], ...) The IFS function has the following arguments: Argument Description logical_test1 The first condition to be evaluated to TRUE or FALSE. value_if_true1 The value that returns if the logical_test1 is TRUE. logical_test2, value_if_true2, ... Additional conditions and values to return. These arguments are optional. You can check up to 127 conditions. Notes How to apply the IFS function. Examples There are the following arguments: logical_test1 = A1<100, value_if_true1 = 1, logical_test2 = A1>100, value_if_true2 = 2, where A1 is 120. The second logical expression is TRUE. So the function returns 2." }, { "id": "Functions/imabs.htm", "title": "IMABS Function", - "body": "The IMABS function is one of the engineering functions. It is used to return the absolute value of a complex number. The IMABS function syntax is: IMABS(complex-number) where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. To apply the IMABS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMABS function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMABS function is one of the engineering functions. It is used to return the absolute value of a complex number. Syntax IMABS(inumber) The IMABS function has the following argument: Argument Description inumber A complex number expressed in x + yi or x + yj form. Notes How to apply the IMABS function. Examples The figure below displays the result returned by the IMABS function." }, { "id": "Functions/imaginary.htm", "title": "IMAGINARY Function", - "body": "The IMAGINARY function is one of the engineering functions. It is used to return the imaginary part of the specified complex number. The IMAGINARY function syntax is: IMAGINARY(complex-number) where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. To apply the IMAGINARY function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMAGINARY function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMAGINARY function is one of the engineering functions. It is used to return the imaginary part of the specified complex number. Syntax IMAGINARY(inumber) The IMAGINARY function has the following argument: Argument Description inumber A complex number expressed in x + yi or x + yj form. Notes How to apply the IMAGINARY function. Examples The figure below displays the result returned by the IMAGINARY function." }, { "id": "Functions/imargument.htm", "title": "IMARGUMENT Function", - "body": "The IMARGUMENT function is one of the engineering functions. It is used to return the argument Theta, an angle expressed in radians. The IMARGUMENT function syntax is: IMARGUMENT(complex-number) where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. To apply the IMARGUMENT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMARGUMENT function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMARGUMENT function is one of the engineering functions. It is used to return the argument Theta, an angle expressed in radians. Syntax IMARGUMENT(inumber) The IMARGUMENT function has the following argument: Argument Description inumber A complex number expressed in x + yi or x + yj form. Notes How to apply the IMARGUMENT function. Examples The figure below displays the result returned by the IMARGUMENT function." }, { "id": "Functions/imconjugate.htm", "title": "IMCONJUGATE Function", - "body": "The IMCONJUGATE function is one of the engineering functions. It is used to return the complex conjugate of a complex number. The IMCONJUGATE function syntax is: IMCONJUGATE(complex-number) where complex-number is a complex-number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. To apply the IMCONJUGATE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMCONJUGATE function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMCONJUGATE function is one of the engineering functions. It is used to return the complex conjugate of a complex number. Syntax IMCONJUGATE(inumber) The IMCONJUGATE function has the following argument: Argument Description inumber A complex number expressed in x + yi or x + yj form. Notes How to apply the IMCONJUGATE function. Examples The figure below displays the result returned by the IMCONJUGATE function." }, { "id": "Functions/imcos.htm", "title": "IMCOS Function", - "body": "The IMCOS function is one of the engineering functions. It is used to return the cosine of a complex number. The IMCOS function syntax is: IMCOS(complex-number) where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. To apply the IMCOS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMCOS function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMCOS function is one of the engineering functions. It is used to return the cosine of a complex number. Syntax IMCOS(inumber) The IMCOS function has the following argument: Argument Description inumber A complex number expressed in x + yi or x + yj form. Notes How to apply the IMCOS function. Examples The figure below displays the result returned by the IMCOS function." }, { "id": "Functions/imcosh.htm", "title": "IMCOSH Function", - "body": "The IMCOSH function is one of the engineering functions. It is used to return the hyperbolic cosine of a complex number. The IMCOSH function syntax is: IMCOSH(complex-number) where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. To apply the IMCOSH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMCOSH function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMCOSH function is one of the engineering functions. It is used to return the hyperbolic cosine of a complex number. Syntax IMCOSH(inumber) The IMCOSH function has the following argument: Argument Description inumber A complex number expressed in x + yi or x + yj form. Notes How to apply the IMCOSH function. Examples The figure below displays the result returned by the IMCOSH function." }, { "id": "Functions/imcot.htm", "title": "IMCOT Function", - "body": "The IMCOT function is one of the engineering functions. It is used to return the cotangent of a complex number. The IMCOT function syntax is: IMCOT(complex-number) where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. To apply the IMCOT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMCOT function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMCOT function is one of the engineering functions. It is used to return the cotangent of a complex number. Syntax IMCOT(inumber) The IMCOT function has the following argument: Argument Description inumber A complex number expressed in x + yi or x + yj form. Notes How to apply the IMCOT function. Examples The figure below displays the result returned by the IMCOT function." }, { "id": "Functions/imcsc.htm", "title": "IMCSC Function", - "body": "The IMCSC function is one of the engineering functions. It is used to return the cosecant of a complex number. The IMCSC function syntax is: IMCSC(complex-number) where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. To apply the IMCSC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMCSC function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMCSC function is one of the engineering functions. It is used to return the cosecant of a complex number. Syntax IMCSC(inumber) The IMCSC function has the following argument: Argument Description inumber A complex number expressed in x + yi or x + yj form. Notes How to apply the IMCSC function. Examples The figure below displays the result returned by the IMCSC function." }, { "id": "Functions/imcsch.htm", "title": "IMCSCH Function", - "body": "The IMCSCH function is one of the engineering functions. It is used to return the hyperbolic cosecant of a complex number. The IMCSCH function syntax is: IMCSCH(complex-number) where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. To apply the IMCSCH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMCSCH function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMCSCH function is one of the engineering functions. It is used to return the hyperbolic cosecant of a complex number. Syntax IMCSCH(inumber) The IMCSCH function has the following argument: Argument Description inumber A complex number expressed in x + yi or x + yj form. Notes How to apply the IMCSCH function. Examples The figure below displays the result returned by the IMCSCH function." }, { "id": "Functions/imdiv.htm", "title": "IMDIV Function", - "body": "The IMDIV function is one of the engineering functions. It is used to return the quotient of two complex numbers expressed in x + yi or x + yj form. The IMDIV function syntax is: IMDIV(complex-number-1, complex-number-2) where complex-number-1 is a dividend. complex-number-2 is a divisor. The values can be entered manually or included into the cell you make reference to. To apply the IMDIV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMDIV function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMDIV function is one of the engineering functions. It is used to return the quotient of two complex numbers expressed in x + yi or x + yj form. Syntax IMDIV(inumber1, inumber2) The IMDIV function has the following arguments: Argument Description inumber1 A dividend. inumber2 A divisor. Notes How to apply the IMDIV function. Examples The figure below displays the result returned by the IMDIV function." }, { "id": "Functions/imexp.htm", "title": "IMEXP Function", - "body": "The IMEXP function is one of the engineering functions. It is 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. The IMEXP function syntax is: IMEXP(complex-number) where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. To apply the IMEXP function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMEXP function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMEXP function is one of the engineering functions. It is 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. Syntax IMEXP(inumber) The IMEXP function has the following argument: Argument Description inumber A complex number expressed in x + yi or x + yj form. Notes How to apply the IMEXP function. Examples The figure below displays the result returned by the IMEXP function." }, { "id": "Functions/imln.htm", "title": "IMLN Function", - "body": "The IMLN function is one of the engineering functions. It is used to return the natural logarithm of a complex number. The IMLN function syntax is: IMLN(complex-number) where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. To apply the IMLN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMLN function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMLN function is one of the engineering functions. It is used to return the natural logarithm of a complex number. Syntax IMLN(inumber) The IMLN function has the following argument: Argument Description inumber A complex number expressed in x + yi or x + yj form. Notes How to apply the IMLN function. Examples The figure below displays the result returned by the IMLN function." }, { "id": "Functions/imlog10.htm", "title": "IMLOG10 Function", - "body": "The IMLOG10 function is one of the engineering functions. It is used to return the logarithm of a complex number to a base of 10. The IMLOG10 function syntax is: IMLOG10(complex-number) where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. To apply the IMLOG10 function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMLOG10 function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMLOG10 function is one of the engineering functions. It is used to return the logarithm of a complex number to a base of 10. Syntax IMLOG10(inumber) The IMLOG10 function has the following argument: Argument Description inumber A complex number expressed in x + yi or x + yj form. Notes How to apply the IMLOG10 function. Examples The figure below displays the result returned by the IMLOG10 function." }, { "id": "Functions/imlog2.htm", "title": "IMLOG2 Function", - "body": "The IMLOG2 function is one of the engineering functions. It is used to return the logarithm of a complex number to a base of 2. The IMLOG2 function syntax is: IMLOG2(complex-number) where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. To apply the IMLOG2 function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMLOG2 function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMLOG2 function is one of the engineering functions. It is used to return the logarithm of a complex number to a base of 2. Syntax IMLOG2(inumber) The IMLOG2 function has the following argument: Argument Description inumber A complex number expressed in x + yi or x + yj form. Notes How to apply the IMLOG2 function. Examples The figure below displays the result returned by the IMLOG2 function." }, { "id": "Functions/impower.htm", "title": "IMPOWER Function", - "body": "The IMPOWER function is one of the engineering functions. It is used to return the result of a complex number raised to the desired power. The IMPOWER function syntax is: IMPOWER(complex-number, power) where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. power is a power you wish to raise the complex number to. To apply the IMPOWER function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMPOWER function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMPOWER function is one of the engineering functions. It is used to return the result of a complex number raised to the desired power. Syntax IMPOWER(inumber, number) The IMPOWER function has the following arguments: Argument Description inumber A complex number expressed in x + yi or x + yj form. number A power you wish to raise the complex number to. Notes How to apply the IMPOWER function. Examples The figure below displays the result returned by the IMPOWER function." }, { "id": "Functions/improduct.htm", "title": "IMPRODUCT Function", - "body": "The IMPRODUCT function is one of the engineering functions. It is used to return the product of the specified complex numbers. The IMPRODUCT function syntax is: IMPRODUCT(argument-list) where argument-list is up to 30 complex numbers expressed in x + yi or x + yj form entered manually or included into the cells you make reference to. To apply the IMPRODUCT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMPRODUCT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMPRODUCT function is one of the engineering functions. It is used to return the product of the specified complex numbers. Syntax IMPRODUCT(inumber1, [inumber2], ...) The IMPRODUCT function has the following arguments: Argument Description inumber1/2/n Up to 255 complex numbers expressed in x + yi or x + yj form. Notes How to apply the IMPRODUCT function. Examples The figure below displays the result returned by the IMPRODUCT function." }, { "id": "Functions/imreal.htm", "title": "IMREAL Function", - "body": "The IMREAL function is one of the engineering functions. It is used to return the real part of the specified complex number. The IMREAL function syntax is: IMREAL(complex-number) where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. To apply the IMREAL function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMREAL function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMREAL function is one of the engineering functions. It is used to return the real part of the specified complex number. Syntax IMREAL(inumber) The IMREAL function has the following argument: Argument Description inumber A complex number expressed in x + yi or x + yj form. Notes How to apply the IMREAL function. Examples The figure below displays the result returned by the IMREAL function." }, { "id": "Functions/imsec.htm", "title": "IMSEC Function", - "body": "The IMSEC function is one of the engineering functions. It is used to return the secant of a complex number. The IMSEC function syntax is: IMSEC(complex-number) where complex-number is a complex-number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. To apply the IMSEC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMSEC function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMSEC function is one of the engineering functions. It is used to return the secant of a complex number. Syntax IMSEC(inumber) The IMSEC function has the following argument: Argument Description inumber A complex number expressed in x + yi or x + yj form. Notes How to apply the IMSEC function. Examples The figure below displays the result returned by the IMSEC function." }, { "id": "Functions/imsech.htm", "title": "IMSECH Function", - "body": "The IMSECH function is one of the engineering functions. It is used to return the hyperbolic secant of a complex number. The IMSECH function syntax is: IMSECH(complex-number) where complex-number is a complex-number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. To apply the IMSECH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMSECH function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMSECH function is one of the engineering functions. It is used to return the hyperbolic secant of a complex number. Syntax IMSECH(inumber) The IMSECH function has the following argument: Argument Description inumber A complex number expressed in x + yi or x + yj form. Notes How to apply the IMSECH function. Examples The figure below displays the result returned by the IMSECH function." }, { "id": "Functions/imsin.htm", "title": "IMSIN Function", - "body": "The IMSIN function is one of the engineering functions. It is used to return the sine of a complex number. The IMSIN function syntax is: IMSIN(complex-number) where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. To apply the IMSIN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMSIN function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMSIN function is one of the engineering functions. It is used to return the sine of a complex number. Syntax IMSIN(inumber) The IMSIN function has the following argument: Argument Description inumber A complex number expressed in x + yi or x + yj form. Notes How to apply the IMSIN function. Examples The figure below displays the result returned by the IMSIN function." }, { "id": "Functions/imsinh.htm", "title": "IMSINH Function", - "body": "The IMSINH function is one of the engineering functions. It is used to return the hyperbolic sine of a complex number. The IMSINH function syntax is: IMSINH(complex-number) where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. To apply the IMSINH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMSINH function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMSINH function is one of the engineering functions. It is used to return the hyperbolic sine of a complex number. Syntax IMSINH(inumber) The IMSINH function has the following argument: Argument Description inumber A complex number expressed in x + yi or x + yj form. Notes How to apply the IMSINH function. Examples The figure below displays the result returned by the IMSINH function." }, { "id": "Functions/imsqrt.htm", "title": "IMSQRT Function", - "body": "The IMSQRT function is one of the engineering functions. It is used to return the square root of a complex number. The IMSQRT function syntax is: IMSQRT(complex-number) where complex-number is a complex-number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. To apply the IMSQRT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMSQRT function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMSQRT function is one of the engineering functions. It is used to return the square root of a complex number. Syntax IMSQRT(inumber) The IMSQRT function has the following argument: Argument Description inumber A complex number expressed in x + yi or x + yj form. Notes How to apply the IMSQRT function. Examples The figure below displays the result returned by the IMSQRT function." }, { "id": "Functions/imsub.htm", "title": "IMSUB Function", - "body": "The IMSUB function is one of the engineering functions. It is used to return the difference of two complex numbers expressed in x + yi or x + yj form. The IMSUB function syntax is: IMSUB(complex-number-1, complex-number-2) where complex-number-1 is a complex number from which complex-number-2 is to be subtracted. complex-number-2 is a complex number to subtract from complex-number-1. The values can be entered manually or included into the cell you make reference to. To apply the IMSUB function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMSUB function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMSUB function is one of the engineering functions. It is used to return the difference of two complex numbers expressed in x + yi or x + yj form. Syntax IMSUB(inumber1, inumber2) The IMSUB function has the following arguments: Argument Description inumber1 A complex number from which inumber2 is to be subtracted. inumber2 A complex number to subtract from inumber1. Notes How to apply the IMSUB function. Examples The figure below displays the result returned by the IMSUB function." }, { "id": "Functions/imsum.htm", "title": "IMSUM Function", - "body": "The IMSUM function is one of the engineering functions. It is used to return the sum of the specified complex numbers. The IMSUM function syntax is: IMSUM(argument-list) where argument-list is up to 30 complex numbers expressed in x + yi or x + yj form entered manually or included into the cells you make reference to. To apply the IMSUM function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMSUM function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMSUM function is one of the engineering functions. It is used to return the sum of the specified complex numbers. Syntax IMSUM(inumber1, [inumber2], ...) The IMSUM function has the following arguments: Argument Description inumber1/2/n Up to 255 complex numbers expressed in x + yi or x + yj form. Notes How to apply the IMSUM function. Examples The figure below displays the result returned by the IMSUM function." }, { "id": "Functions/imtan.htm", "title": "IMTAN Function", - "body": "The IMTAN function is one of the engineering functions. It is used to return the tangent of a complex number. The IMTAN function syntax is: IMTAN(complex-number) where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to. To apply the IMTAN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the IMTAN function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The IMTAN function is one of the engineering functions. It is used to return the tangent of a complex number. Syntax IMTAN(inumber) The IMTAN function has the following argument: Argument Description inumber A complex number expressed in x + yi or x + yj form. Notes How to apply the IMTAN function. Examples The figure below displays the result returned by the IMTAN function." }, { "id": "Functions/index.htm", "title": "INDEX Function", - "body": "The INDEX function is one of the lookup and reference functions. It is 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. The INDEX function syntax in the array form is: INDEX(array, [row-number][, [column-number]]) The INDEX function syntax in the reference form is: INDEX(reference, [row-number][, [column-number][, [area-number]]]) where array is a range of cells. reference is a reference to a range of cells. row-number is a row number you wish to return a value from. If it is omitted, column-number is required. column-number is a column number you wish to return a value from. If it is omitted, row-number is required. area-number is an area to use in case the array contains several ranges. It is an optional argument. If it is omitted, the function will assume area-number to be 1. These arguments can be entered manually or included into the cells you make reference to. To apply the INDEX function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the INDEX function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The INDEX function is one of the lookup and reference functions. It is 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. The INDEX function syntax in the array form is: INDEX(array, row_num, [column_num]) The INDEX function has the following arguments: Argument Description array A range of cells. row_num A row number you wish to return a value from. If it is omitted, column_num is required. column_num A column number you wish to return a value from. If it is omitted, row_num is required. The INDEX function syntax in the reference form is: INDEX(reference, row_num, [column_num], [area_num]) The INDEX function has the following arguments: Argument Description reference A reference to a range of cells. row_num A row number you wish to return a value from. If it is omitted, column_num is required. column_num A column number you wish to return a value from. If it is omitted, row_num is required. area_num An area to use in case the array contains several ranges. It is an optional argument. If it is omitted, the function will assume area_num to be 1. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the INDEX function. Examples The figure below displays the result returned by the INDEX function." }, { "id": "Functions/indirect.htm", "title": "INDIRECT Function", - "body": "The INDIRECT function is one of the lookup and reference functions. It is used to return the reference to a cell based on its string representation. The INDIRECT function syntax is: INDIRECT(ref-text [, A1-ref-style-flag]) where ref-text a reference to a cell specified as a text string. A1-ref-style-flag is a representation style. It is an optional logical value: TRUE or FALSE. If it is set to TRUE or omitted, the function will analyse ref-text as an A1-style reference. If FALSE, the function will interpret ref-text as an R1C1-style reference. To apply the INDIRECT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the INDIRECT function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The INDIRECT function is one of the lookup and reference functions. It is used to return the reference to a cell based on its string representation. Syntax INDIRECT(ref_text, [a1]) The INDIRECT function has the following arguments: Argument Description ref_text A reference to a cell specified as a text strin. a1 A representation style. It is an optional logical value: TRUE or FALSE. If it is set to TRUE or omitted, the function will analyse ref_text as an A1-style reference. If FALSE, the function will interpret ref_text as an R1C1-style reference. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the INDIRECT function. Examples The figure below displays the result returned by the INDIRECT function." }, { "id": "Functions/int.htm", "title": "INT Function", - "body": "The INT function is one of the math and trigonometry functions. It is used to analyze and return the integer part of the specified number. The INT function syntax is: INT(x) where x is a numeric value entered manually or included into the cell you make reference to. Note: if the x value is negative, the function returns the first negative number that is less than or equal to the selected one. To apply the INT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the INT function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The INT function is one of the math and trigonometry functions. It is used to analyze and return the integer part of the specified number. Syntax INT(number) The INT function has the following argument: Argument Description number A numeric value for which you want to get the integer part. Notes If the number value is negative, the function returns the first negative number that is less than or equal to the selected one. How to apply the INT function. Examples The figure below displays the result returned by the INT function." }, { "id": "Functions/intercept.htm", "title": "INTERCEPT Function", - "body": "The INTERCEPT function is one of the statistical functions. It is used to analyze the first array values and second array values to calculate the intersection point. The INTERCEPT function syntax is: INTERCEPT(array-1, array-2) where array-1(2) is the selected range of cells with the same number of elements (columns and rows). To apply the INTERCEPT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the INTERCEPT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The INTERCEPT function is one of the statistical functions. It is used to analyze the first array values and second array values to calculate the intersection point. Syntax INTERCEPT(known_y's, known_x's) The INTERCEPT function has the following arguments: Argument Description known_y's The dependent data range. known_x's The independent data range with the same number of elements as known_y's contains. Notes If known_y's or known_x's contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. How to apply the INTERCEPT function. Examples The figure below displays the result returned by the INTERCEPT function." }, { "id": "Functions/intrate.htm", "title": "INTRATE Function", - "body": "The INTRATE function is one of the financial functions. It is used to calculate the interest rate for a fully invested security that pays interest only at maturity. The INTRATE function syntax is: INTRATE(settlement, maturity, pr, redemption[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. pr is the amount paid for the security. redemption is the amount received for the security at maturity. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the INTRATE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the INTRATE function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The INTRATE function is one of the financial functions. It is used to calculate the interest rate for a fully invested security that pays interest only at maturity. Syntax INTRATE(settlement, maturity, investment, redemption, [basis]) The INTRATE function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. investment The amount paid for the security. redemption The amount received for the security at maturity. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the INTRATE function. Examples The figure below displays the result returned by the INTRATE function." }, { "id": "Functions/ipmt.htm", "title": "IPMT Function", - "body": "The IPMT function is one of the financial functions. It is used to calculate the interest payment for an investment based on a specified interest rate and a constant payment schedule. The IPMT function syntax is: IPMT(rate, per, nper, pv [, [fv] [,[type]]]) where rate is the interest rate for the investment. per is the period you want to find the interest payment for. The value must be from 1 to nper. nper is a number of payments. pv is a present value of the payments. fv is a future value (i.e. a cash balance remaining after the last payment is made). It is an optional argument. If it is omitted, the function will assume fv to be 0. type is a period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period. Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments. The numeric values can be entered manually or included into the cell you make reference to. To apply the IPMT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the IPMT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The IPMT function is one of the financial functions. It is used to calculate the interest payment for an investment based on a specified interest rate and a constant payment schedule. Syntax IPMT(rate, per, nper, pv, [fv], [type]) The IPMT function has the following arguments: Argument Description rate The interest rate for the investment. per The period you want to find the interest payment for. The value must be from 1 to nper. nper A number of payments. pv A present value of the payments. fv A future value (i.e. a cash balance remaining after the last payment is made). It is an optional argument. If it is omitted, the function will assume fv to be 0. type A period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period. Notes Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments. How to apply the IPMT function. Examples The figure below displays the result returned by the IPMT function." }, { "id": "Functions/irr.htm", "title": "IRR Function", - "body": "The IRR function is one of the financial functions. It is used to calculate the internal rate of return for a series of periodic cash flows. The IRR function syntax is: IRR(values [,[guess]]) where values is an array that contains the series of payments occuring at regular periods. At least one of the values must be negative and at least one positive. guess is an estimate at what the internal rate of return will be. It is an optional argument. If it is omitted, the function will assume guess to be 10%. The numeric values can be entered manually or included into the cell you make reference to. To apply the IRR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the IRR function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The IRR function is one of the financial functions. It is used to calculate the internal rate of return for a series of periodic cash flows. Syntax IRR(values, [guess]) The IRR function has the following arguments: Argument Description values An array that contains the series of payments occuring at regular periods. At least one of the values must be negative and at least one positive. guess An estimate at what the internal rate of return will be. It is an optional argument. If it is omitted, the function will assume guess to be 10%. Notes How to apply the IRR function. Examples The figure below displays the result returned by the IRR function." }, { "id": "Functions/isblank.htm", "title": "ISBLANK Function", - "body": "The ISBLANK function is one of the information functions. It is 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. The ISBLANK function syntax is: ISBLANK(value) where value is a value entered manually or included into the cell you make reference to. To apply the ISBLANK function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Information function group from the list, click the ISBLANK function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ISBLANK function is one of the information functions. It is 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. Syntax ISBLANK(value) The ISBLANK function has the following argument: Argument Description value The value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these. Notes How to apply the ISBLANK function. Examples The figure below displays the result returned by the ISBLANK function." }, { "id": "Functions/iserr.htm", "title": "ISERR Function", - "body": "The ISERR function is one of the information functions. It is 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. The ISERR function syntax is: ISERR(value) where value is a value to test entered manually or included into the cell you make reference to. To apply the ISERR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Information function group from the list, click the ISERR function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ISERR function is one of the information functions. It is 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. Syntax ISERR(value) The ISERR function has the following argument: Argument Description value The value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these. Notes How to apply the ISERR function. Examples The figure below displays the result returned by the ISERR function." }, { "id": "Functions/iserror.htm", "title": "ISERROR Function", - "body": "The ISERROR function is one of the information functions. It is 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. The ISERROR function syntax is: ISERROR(value) where value is a value to test entered manually or included into the cell you make reference to. To apply the ISERROR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Information function group from the list, click the ISERROR function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ISERROR function is one of the information functions. It is 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. Syntax ISERROR(value) The ISERROR function has the following argument: Argument Description value The value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these. Notes How to apply the ISERROR function. Examples The figure below displays the result returned by the ISERROR function." }, { "id": "Functions/iseven.htm", "title": "ISEVEN Function", - "body": "The ISEVEN function is one of the information functions. It is 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. The ISEVEN function syntax is: ISEVEN(number) where number is a value to test entered manually or included into the cell you make reference to. Note: if number is a nonnumeric value, ISEVEN returns the #VALUE! error value. To apply the ISEVEN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Information function group from the list, click the ISEVEN function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ISEVEN function is one of the information functions. It is 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. Syntax ISEVEN(number) The ISEVEN function has the following argument: Argument Description number The numeric value that you want to test. Notes If number is a nonnumeric value, ISEVEN returns the #VALUE! error value. If number is not an integer, it is truncated. How to apply the ISEVEN function. Examples The figure below displays the result returned by the ISEVEN function." }, { "id": "Functions/isformula.htm", "title": "ISFORMULA Function", - "body": "The ISFORMULA function is one of the information functions. It is used to check whether there is a reference to a cell that contains a formula. If the cell contains a formula, the function returns TRUE, otherwise the function returns FALSE. The ISFORMULA function syntax is: ISFORMULA(value) where value is a reference to a cell. To apply the ISFORMULA function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Information function group from the list, click the ISFORMULA function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ISFORMULA function is one of the information functions. It is used to check whether there is a reference to a cell that contains a formula. If the cell contains a formula, the function returns TRUE, otherwise the function returns FALSE. Syntax ISFORMULA(reference) The ISFORMULA function has the following argument: Argument Description reference A reference to a cell that you want to test. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the ISFORMULA function. Examples The figure below displays the result returned by the ISFORMULA function." }, { "id": "Functions/islogical.htm", "title": "ISLOGICAL Function", - "body": "The ISLOGICAL function is one of the information functions. It is 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. The ISLOGICAL function syntax is: ISLOGICAL(value) where value is a value to test entered manually or included into the cell you make reference to. To apply the ISLOGICAL function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Information function group from the list, click the ISLOGICAL function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ISLOGICAL function is one of the information functions. It is 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. Syntax ISLOGICAL(value) The ISLOGICAL function has the following argument: Argument Description value The value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these. Notes How to apply the ISLOGICAL function. Examples The figure below displays the result returned by the ISLOGICAL function." }, { "id": "Functions/isna.htm", "title": "ISNA Function", - "body": "The ISNA function is one of the information functions. It is 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. The ISNA function syntax is: ISNA(value) where value is a value to test entered manually or included into the cell you make reference to. To apply the ISNA function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Information function group from the list, click the ISNA function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ISNA function is one of the information functions. It is 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. Syntax ISNA(value) The ISNA function has the following argument: Argument Description value The value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these. Notes How to apply the ISNA function. Examples The figure below displays the result returned by the ISNA function." }, { "id": "Functions/isnontext.htm", "title": "ISNONTEXT Function", - "body": "The ISNONTEXT function is one of the information functions. It is 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. The ISNONTEXT function syntax is: ISNONTEXT(value) where value is a value to test entered manually or included into the cell you make reference to. To apply the ISNONTEXT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Information function group from the list, click the ISNONTEXT function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ISNONTEXT function is one of the information functions. It is 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. Syntax ISNONTEXT(value) The ISNONTEXT function has the following argument: Argument Description value The value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these. Notes How to apply the ISNONTEXT function. Examples The figure below displays the result returned by the ISNONTEXT function." }, { "id": "Functions/isnumber.htm", "title": "ISNUMBER Function", - "body": "The ISNUMBER function is one of the information functions. It is used to check for a numeric value. If the cell contains a numeric value, the function returns TRUE, otherwise the function returns FALSE. The ISNUMBER function syntax is: ISNUMBER(value) where value is a value to test entered manually or included into the cell you make reference to. To apply the ISNUMBER function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Information function group from the list, click the ISNUMBER function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ISNUMBER function is one of the information functions. It is used to check for a numeric value. If the cell contains a numeric value, the function returns TRUE, otherwise the function returns FALSE. Syntax ISNUMBER(value) The ISNUMBER function has the following argument: Argument Description value The value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these. Notes How to apply the ISNUMBER function. Examples The figure below displays the result returned by the ISNUMBER function." }, { "id": "Functions/iso-ceiling.htm", "title": "ISO.CEILING Function", - "body": "The ISO.CEILING function is one of the math and trigonometry functions. It is used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance. The number is always rounded up regardless of its sing. The ISO.CEILING function syntax is: ISO.CEILING(number [, significance]) where number is the number you wish to round up. significance is the multiple of significance you wish to round up to. It is an optional parameter. If it is omitted, the default value of 1 is used. If it is set to zero, the function returns 0. The numeric values can be entered manually or included into the cell you make reference to. To apply the ISO.CEILING function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the ISO.CEILING function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The ISO.CEILING function is one of the math and trigonometry functions. It is used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance. The number is always rounded up regardless of its sing. Syntax ISO.CEILING(number, [significance]) The ISO.CEILING function has the following arguments: Argument Description number The number you wish to round up. significance The multiple of significance you wish to round up to. It is an optional parameter. If it is omitted, the default value of 1 is used. If it is set to zero, the function returns 0. Notes How to apply the ISO.CEILING function. Examples The figure below displays the result returned by the ISO.CEILING function." }, { "id": "Functions/isodd.htm", "title": "ISODD Function", - "body": "The ISODD function is one of the information functions. It is 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. The ISODD function syntax is: ISODD(number) where number is a value to test entered manually or included into the cell you make reference to. Note: if number is a nonnumeric value, ISODD returns the #VALUE! error value. To apply the ISODD function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Information function group from the list, click the ISODD function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ISODD function is one of the information functions. It is 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. Syntax ISODD(number) The ISODD function has the following argument: Argument Description number The numeric value that you want to test. Notes If number is a nonnumeric value, ISODD returns the #VALUE! error value. If number is not an integer, it is truncated. How to apply the ISODD function. Examples The figure below displays the result returned by the ISODD function." }, { "id": "Functions/isoweeknum.htm", "title": "ISOWEEKNUM Function", - "body": "The ISOWEEKNUM function is one of the date and time functions. It used to return number of the ISO week number of the year for a given date. Returns a number between 1 and 54. The ISOWEEKNUM function syntax is: ISOWEEKNUM(date) where date is a date you want to find the ISO week number of. Can be a reference to a cell containing a date or a date returned by the Date function or other date and time function. To apply the ISOWEEKNUM function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the ISOWEEKNUM function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ISOWEEKNUM function is one of the date and time functions. It used to return number of the ISO week number of the year for a given date. Returns a number between 1 and 54. Syntax ISOWEEKNUM(date) The ISOWEEKNUM function has the following argument: Argument Description date A date you want to find the ISO week number of. Can be a reference to a cell containing a date or a date returned by the DATE function or other date and time function. Notes How to apply the ISOWEEKNUM function. Examples The figure below displays the result returned by the ISOWEEKNUM function." }, { "id": "Functions/ispmt.htm", "title": "ISPMT Function", - "body": "The ISPMT function is one of the financial functions. It is used to calculate the interest payment for a specified period of an investment based on a constant payment schedule. The ISPMT function syntax is: ISPMT(rate, per, nper, pv) where rate is the interest rate for the investment. per is the period you want to find the interest payment for. The value must be from 1 to nper. nper is a number of payments. pv is a present value of the payments. Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments. The numeric values can be entered manually or included into the cell you make reference to. To apply the ISPMT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the ISPMT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The ISPMT function is one of the financial functions. It is used to calculate the interest payment for a specified period of an investment based on a constant payment schedule. Syntax ISPMT(rate, per, nper, pv) The ISPMT function has the following arguments: Argument Description rate The interest rate for the investment. per The period you want to find the interest payment for. The value must be from 1 to nper. nper A number of payments. pv A present value of the payments. Notes Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments. How to apply the ISPMT function. Examples The figure below displays the result returned by the ISPMT function." }, { "id": "Functions/isref.htm", "title": "ISREF Function", - "body": "The ISREF function is one of the information functions. It is used to verify if the value is a valid cell reference. The ISREF function syntax is: ISREF(value) where value is a value to test entered manually or included into the cell you make reference to. To apply the ISREF function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Information function group from the list, click the ISREF function, enter the required argument, press the Enter button. The result will be displayed in the selected cell. If the value is a valid reference, the function returns TRUE. Otherwise the function returns FALSE." + "body": "The ISREF function is one of the information functions. It is used to verify if the value is a valid cell reference. Syntax ISREF(value) The ISREF function has the following argument: Argument Description value The value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these. Notes How to apply the ISREF function. Examples If the value is a valid reference, the function returns TRUE. Otherwise the function returns FALSE." }, { "id": "Functions/istext.htm", "title": "ISTEXT Function", - "body": "The ISTEXT function is one of the information functions. It is used to check for a text value. If the cell contains a text value, the function returns TRUE, otherwise the function returns FALSE. The ISTEXT function syntax is: ISTEXT(value) where value is a value to test entered manually or included into the cell you make reference to. To apply the ISTEXT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Information function group from the list, click the ISTEXT function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ISTEXT function is one of the information functions. It is used to check for a text value. If the cell contains a text value, the function returns TRUE, otherwise the function returns FALSE. Syntax ISTEXT(value) The ISTEXT function has the following argument: Argument Description value The value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these. Notes How to apply the ISTEXT function. Examples The figure below displays the result returned by the ISTEXT function." }, { "id": "Functions/kurt.htm", "title": "KURT Function", - "body": "The KURT function is one of the statistical functions. It is used to return the kurtosis of the argument list. The KURT function syntax is: KURT(argument-list) where argument-list is up to 30 numeric values entered manually or included into the cell you make reference to. To apply the KURT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the KURT function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The KURT function is one of the statistical functions. It is used to return the kurtosis of the argument list. Syntax KURT(number1, [number2], ...) The KURT function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to calculate kurtosis. Notes How to apply the KURT function. Examples The figure below displays the result returned by the KURT function." }, { "id": "Functions/large.htm", "title": "LARGE Function", - "body": "The LARGE function is one of the statistical functions. It is used to analyze the range of cells and return the k-th largest value. The LARGE function syntax is: LARGE(array, k) where array is the selected range of cells you want to analyze. k is the position of the number from the largest one, a numeric value greater than 0 entered manually or included into the cell you make reference to. To apply the LARGE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the LARGE function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The LARGE function is one of the statistical functions. It is used to analyze the range of cells and return the k-th largest value. Syntax LARGE(array, k) The LARGE function has the following arguments: Argument Description array The selected range of cells you want to analyze. k The position of the number from the largest one, a numeric value greater than 0. Notes How to apply the LARGE function. Examples The figure below displays the result returned by the LARGE function." }, { "id": "Functions/lcm.htm", "title": "LCM Function", - "body": "The LCM function is one of the math and trigonometry functions. It is used to return the lowest common multiple of one or more numbers. The LCM function syntax is: LCM(argument-list) where argument-list is up to 30 numeric values entered manually or included into the cell you make reference to. To apply the LCM function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the LCM function, enter the required arguments separating by commas or select the range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The LCM function is one of the math and trigonometry functions. It is used to return the lowest common multiple of one or more numbers. Syntax LCM(number1, [number2], ...) The LCM function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to find the lowest common multiple. Notes How to apply the LCM function. Examples The figure below displays the result returned by the LCM function." }, { "id": "Functions/left.htm", "title": "LEFT/LEFTB Function", - "body": "The LEFT/LEFTB function is one of the text and data functions. Is used to extract the substring from the specified string starting from the left character. The LEFT function is intended for languages that use the single-byte character set (SBCS), while LEFTB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. The LEFT/LEFTB function syntax is: LEFT(string [, number-chars]) LEFTB(string [, number-chars]) where string is a string you need to extract the substring from, number-chars is a number of the substring characters. It is an optional argument. If it is omitted, the function will assume it to be 1. The data can be entered manually or included into the cells you make reference to. To apply the LEFT/LEFTB function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the LEFT/LEFTB function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The LEFT/LEFTB function is one of the text and data functions. Is used to extract the substring from the specified string starting from the left character. The LEFT function is intended for languages that use the single-byte character set (SBCS), while LEFTB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. Syntax LEFT(text, [num_chars]) The LEFT function has the following arguments: Argument Description text A string you need to extract the substring from. num_chars A number of the substring characters. It must be greater than or equal to 0. It is an optional argument. If it is omitted, the function will assume it to be 1. LEFTB(text, [num_bytes]) The LEFTB function has the following arguments: Argument Description text A string you need to extract the substring from. num_bytes A number of the substring characters, based on bytes. It is an optional argument. Notes How to apply the LEFT/LEFTB function. Examples The figure below displays the result returned by the LEFT function." }, { "id": "Functions/leftb.htm", "title": "LEFT/LEFTB Function", - "body": "The LEFT/LEFTB function is one of the text and data functions. Is used to extract the substring from the specified string starting from the left character. The LEFT function is intended for languages that use the single-byte character set (SBCS), while LEFTB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. The LEFT/LEFTB function syntax is: LEFT(string [, number-chars]) LEFTB(string [, number-chars]) where string is a string you need to extract the substring from, number-chars is a number of the substring characters. It is an optional argument. If it is omitted, the function will assume it to be 1. The data can be entered manually or included into the cells you make reference to. To apply the LEFT/LEFTB function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the LEFT/LEFTB function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The LEFT/LEFTB function is one of the text and data functions. Is used to extract the substring from the specified string starting from the left character. The LEFT function is intended for languages that use the single-byte character set (SBCS), while LEFTB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. Syntax LEFT(text, [num_chars]) The LEFT function has the following arguments: Argument Description text A string you need to extract the substring from. num_chars A number of the substring characters. It must be greater than or equal to 0. It is an optional argument. If it is omitted, the function will assume it to be 1. LEFTB(text, [num_bytes]) The LEFTB function has the following arguments: Argument Description text A string you need to extract the substring from. num_bytes A number of the substring characters, based on bytes. It is an optional argument. Notes How to apply the LEFT/LEFTB function. Examples The figure below displays the result returned by the LEFT function." }, { "id": "Functions/len.htm", "title": "LEN/LENB Function", - "body": "The LEN/LENB function is one of the text and data functions. Is used to analyse the specified string and return the number of characters it contains. The LEN function is intended for languages that use the single-byte character set (SBCS), while LENB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. The LEN/LENB function syntax is: LEN(string) LENB(string) where string is a data entered manually or included into the cell you make reference to. To apply the LEN/LENB function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the LEN/LENB function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The LEN/LENB function is one of the text and data functions. Is used to analyse the specified string and return the number of characters it contains. The LEN function is intended for languages that use the single-byte character set (SBCS), while LENB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. Syntax LEN(text) LENB(text) The LEN/LENB function has the following argument: Argument Description text The text whose length you want to find. Notes How to apply the LEN/LENB function. Examples The figure below displays the result returned by the LEN function." }, { "id": "Functions/lenb.htm", "title": "LEN/LENB Function", - "body": "The LEN/LENB function is one of the text and data functions. Is used to analyse the specified string and return the number of characters it contains. The LEN function is intended for languages that use the single-byte character set (SBCS), while LENB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. The LEN/LENB function syntax is: LEN(string) LENB(string) where string is a data entered manually or included into the cell you make reference to. To apply the LEN/LENB function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the LEN/LENB function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The LEN/LENB function is one of the text and data functions. Is used to analyse the specified string and return the number of characters it contains. The LEN function is intended for languages that use the single-byte character set (SBCS), while LENB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. Syntax LEN(text) LENB(text) The LEN/LENB function has the following argument: Argument Description text The text whose length you want to find. Notes How to apply the LEN/LENB function. Examples The figure below displays the result returned by the LEN function." }, { "id": "Functions/linest.htm", "title": "LINEST Function", - "body": "The LINEST function is one of the statistical functions. It is used to calculate the statistics for a line by using the least squares method to calculate a straight line that best fits your data, and then returns an array that describes the line; because this function returns an array of values, it must be entered as an array formula. The LINEST function syntax is: LINEST( known_y's, [known_x's], [const], [stats] ) where: known_y's is a known range of y values in the equation y = mx + b. This is the required argument. known_x's is a known range of x values in the equation y = mx + b. This is an optional argument. If it is omitted, known_x's is assumed to be the array {1,2,3,...} with the same number of values as known_y's. const is a logical value that specifies if you want to set b equal to 0. This is an optional argument. If it is set to TRUE or omitted, b is calculated normally. If it is set to FALSE, b is set equal to 0. stats is a logical value that specifies if you want to return additional regression statistics. This is an optional argument. If it is set to TRUE, the function returns the additional regression statistics. If it is set to FALSE or omitted, the function does not return the additional regression statistics. To apply the LINEST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the LINEST function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The first value of the resulting array will be displayed in the selected cell." + "body": "The LINEST function is one of the statistical functions. It is used to calculate the statistics for a line by using the least squares method to calculate a straight line that best fits your data, and then returns an array that describes the line; because this function returns an array of values, it must be entered as an array formula. Syntax LINEST(known_y's, [known_x's], [const], [stats]) The LINEST function has the following argument: Argument Description known_y's A known range of y values in the equation y = mx + b. This is the required argument. known_x's A known range of x values in the equation y = mx + b. This is an optional argument. If it is omitted, known_x's is assumed to be the array {1,2,3,...} with the same number of values as known_y's. const A logical value that specifies if you want to set b equal to 0. This is an optional argument. If it is set to TRUE or omitted, b is calculated normally. If it is set to FALSE, b is set equal to 0. stats A logical value that specifies if you want to return additional regression statistics. This is an optional argument. If it is set to TRUE, the function returns the additional regression statistics. If it is set to FALSE or omitted, the function does not return the additional regression statistics. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the LINEST function. Examples The first value of the resulting array will be displayed in the selected cell." }, { "id": "Functions/ln.htm", "title": "LN Function", - "body": "The LN function is one of the math and trigonometry functions. It is used to return the natural logarithm of a number. The LN function syntax is: LN(x) where x is a numeric value entered manually or included into the cell you make reference to. It must be greater than 0. To apply the LN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the LN function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The LN function is one of the math and trigonometry functions. It is used to return the natural logarithm of a number. Syntax LN(number) The LN function has the following argument: Argument Description number A numeric value for which you want to get the natural logarithm. It must be greater than 0. Notes How to apply the LN function. Examples The figure below displays the result returned by the LN function." }, { "id": "Functions/log.htm", "title": "LOG Function", - "body": "The LOG function is one of the math and trigonometry functions. It is used to return the logarithm of a number to a specified base. The LOG function syntax is: LOG(x [,base]) where x is a numeric value greater than 0 base is the base used to calculate the logarithm of a number. It is an optional parameter. If it is omitted, the function will assume base to be 10. The numeric value can be entered manually or included into the cells you make reference to. To apply the LOG function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the LOG function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The LOG function is one of the math and trigonometry functions. It is used to return the logarithm of a number to a specified base. Syntax LOG(number, [base]) The LOG function has the following arguments: Argument Description number A numeric value for which you want to get the logarithm. It must be greater than 0. base The base used to calculate the logarithm of a number. It is an optional parameter. If it is omitted, the function will assume base to be 10. Notes How to apply the LOG function. Examples The figure below displays the result returned by the LOG function." }, { "id": "Functions/log10.htm", "title": "LOG10 Function", - "body": "The LOG10 function is one of the math and trigonometry functions. It is used to return the logarithm of a number to a base of 10. The LOG10 function syntax is: LOG10(x) where x is a numeric value greater than 0 entered manually or included into the cell you make reference to. To apply the LOG10 function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the LOG10 function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The LOG10 function is one of the math and trigonometry functions. It is used to return the logarithm of a number to a base of 10. Syntax LOG10(number) The LOG10 function has the following argument: Argument Description number A numeric value for which you want to get the logarithm to a base of 10. It must be greater than 0. Notes How to apply the LOG10 function. Examples The figure below displays the result returned by the LOG10 function." }, { "id": "Functions/logest.htm", "title": "LOGEST Function", - "body": "The LOGEST function is one of the statistical functions. It is used to calculate an exponential curve that fits the data and returns an array of values that describes the curve. The LOGEST function syntax is: LOGEST(known_y’s, [known_x’s], [const], [stats]) where known_y’s is the set of y-values you already know in the y = b*m^x equation. known_x’s is the optional set of x-values you might know in the y = b*m^x equation. const is an optional argument. It is a TRUE or FALSE value where TRUE or lack of the argument forces b to be calculated normally and FALSE sets b to 1 in the y = b*m^x equation and m-values correspond with the y = m^x equation. stats is an optional argument. It is a TRUE or FALSE value that sets whether additional regression statistics should be returned. To apply the LOGEST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the LOGEST function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The LOGEST function is one of the statistical functions. It is used to calculate an exponential curve that fits the data and returns an array of values that describes the curve. Syntax LOGEST(known_y’s, [known_x’s], [const], [stats]) The LOGEST function has the following arguments: Argument Description known_y’s The set of y-values you already know in the y = b*m^x equation. known_x’s The optional set of x-values you might know in the y = b*m^x equation. const An optional argument. It is a TRUE or FALSE value where TRUE or lack of the argument forces b to be calculated normally and FALSE sets b to 1 in the y = b*m^x equation and m-values correspond with the y = m^x equation. stats An optional argument. It is a TRUE or FALSE value that sets whether additional regression statistics should be returned. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the LOGEST function. Examples The figure below displays the result returned by the LOGEST function." }, { "id": "Functions/loginv.htm", "title": "LOGINV Function", - "body": "The LOGINV function is one of the statistical functions. It is used to return the inverse of the lognormal cumulative distribution function of the given x value with the specified parameters. The LOGINV function syntax is: LOGINV(x, mean, standard-deviation) where x is the probability associated with the lognormal distribution, a numeric value greater than 0 but less than 1. mean is the mean of ln(x), a numeric value. standard-deviation is the standard deviation of ln(x), a numeric value greater than 0. The numeric values can be entered manually or included into the cells you make reference to. To apply the LOGINV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the LOGINV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The LOGINV function is one of the statistical functions. It is used to return the inverse of the lognormal cumulative distribution function of the given x value with the specified parameters. Syntax LOGINV(probability, mean, standard_dev) The LOGINV function has the following arguments: Argument Description probability The probability associated with the lognormal distribution, a numeric value greater than 0 but less than 1. mean The mean of ln(x), a numeric value. standard_dev The standard deviation of ln(x), a numeric value greater than 0. Notes How to apply the LOGINV function. Examples The figure below displays the result returned by the LOGINV function." }, { "id": "Functions/lognorm-dist.htm", "title": "LOGNORM.DIST Function", - "body": "The LOGNORM.DIST function is one of the statistical functions. It is used to return the lognormal distribution of x, where ln(x) is normally distributed with parameters mean and standard-dev. The LOGNORM.DIST function syntax is: LOGNORM.DIST(x, mean, standard-dev, cumulative) where x is the value at which the function should be calculated. A numeric value greater than 0. mean is the mean of ln(x), a numeric value. standard-dev is the standard deviation of ln(x), a numeric value greater than 0. cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function. The numeric values can be entered manually or included into the cells you make reference to. To apply the LOGNORM.DIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the LOGNORM.DIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The LOGNORM.DIST function is one of the statistical functions. It is used to return the lognormal distribution of x, where ln(x) is normally distributed with parameters mean and standard_dev. Syntax LOGNORM.DIST(x, mean, standard_dev, cumulative) The LOGNORM.DIST function has the following arguments: Argument Description x The value at which the function should be calculated. A numeric value greater than 0. mean The mean of ln(x), a numeric value. standard_dev The standard deviation of ln(x), a numeric value greater than 0. cumulative A logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function. Notes How to apply the LOGNORM.DIST function. Examples The figure below displays the result returned by the LOGNORM.DIST function." }, { "id": "Functions/lognorm-inv.htm", "title": "LOGNORM.INV Function", - "body": "The LOGNORM.INV function is one of the statistical functions. It is used to return the inverse of the lognormal cumulative distribution function of x, where ln(x) is normally distributed with parameters mean and standard-dev. The LOGNORM.INV function syntax is: LOGNORM.INV(probability, mean, standard-dev) where probability is the probability associated with the lognormal distribution. A numeric value greater than 0 but less than 1. mean is the mean of ln(x), a numeric value. standard-dev is the standard deviation of ln(x), a numeric value greater than 0. The numeric values can be entered manually or included into the cells you make reference to. To apply the LOGNORM.INV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the LOGNORM.INV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The LOGNORM.INV function is one of the statistical functions. It is used to return the inverse of the lognormal cumulative distribution function of x, where ln(x) is normally distributed with parameters mean and standard_dev. Syntax LOGNORM.INV(probability, mean, standard_dev) The LOGNORM.INV function has the following arguments: Argument Description probability The probability associated with the lognormal distribution, a numeric value greater than 0 but less than 1. mean The mean of ln(x), a numeric value. standard_dev The standard deviation of ln(x), a numeric value greater than 0. Notes How to apply the LOGNORM.INV function. Examples The figure below displays the result returned by the LOGNORM.INV function." }, { "id": "Functions/lognormdist.htm", "title": "LOGNORMDIST Function", - "body": "The LOGNORMDIST function is one of the statistical functions. It is used to analyze logarithmically transformed data and return the lognormal cumulative distribution function of the given x value with the specified parameters. The LOGNORMDIST function syntax is: LOGNORMDIST(x, mean, standard-deviation) where x is the value at which the function should be calculated. A numeric value greater than 0. mean is the mean of ln(x), a numeric value. standard-deviation is the standard deviation of ln(x), a numeric value greater than 0. The numeric values can be entered manually or included into the cells you make reference to. To apply the LOGNORMDIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the LOGNORMDIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The LOGNORMDIST function is one of the statistical functions. It is used to analyze logarithmically transformed data and return the lognormal cumulative distribution function of the given x value with the specified parameters. Syntax LOGNORMDIST(x, mean, standard_dev) The LOGNORMDIST function has the following arguments: Argument Description x The value at which the function should be calculated. A numeric value greater than 0. mean The mean of ln(x), a numeric value. standard_dev The standard deviation of ln(x), a numeric value greater than 0. Notes How to apply the LOGNORMDIST function. Examples The figure below displays the result returned by the LOGNORMDIST function." }, { "id": "Functions/lookup.htm", "title": "LOOKUP Function", - "body": "The LOOKUP function is one of the lookup and reference functions. It is used to return a value from a selected range (row or column containing the data in ascending order). The LOOKUP function syntax is: LOOKUP(lookup-value, lookup-vector, result-vector) where lookup-value is a value to search for. lookup-vector is a single row or column containing data sorted in ascending order. lookup-result is a single row or column of data that is the same size as the lookup-vector. The function searches for the lookup-value in the lookup-vector and returns the value from the same position in the lookup-result. If the lookup-value is smaller than all of the values in the lookup-vector, the function will return the #N/A error. If there is not a value that strictly matches the lookup-value, the function chooses the largest value in the lookup-vector that is less than or equal to the value. How to use LOOKUP To apply the LOOKUP function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the LOOKUP function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The LOOKUP function is one of the lookup and reference functions. It is used to return a value from a selected range (row or column containing the data in ascending order). Syntax LOOKUP(lookup_value, lookup_vector, [result_vector]) The LOOKUP function has the following arguments: Argument Description lookup_value A value to search for. lookup_vector A single row or column containing data sorted in ascending order. result_vector A single row or column of data that is the same size as the lookup_vector. Notes The function searches for the lookup_value in the lookup_vector and returns the value from the same position in the result_vector. If the lookup_value is smaller than all of the values in the lookup_vector, the function will return the #N/A error. If there is not a value that strictly matches the lookup_value, the function chooses the largest value in the lookup_vector that is less than or equal to the value. How to apply the LOOKUP function. Examples The figure below displays the result returned by the LOOKUP function." }, { "id": "Functions/lower.htm", "title": "LOWER Function", - "body": "The LOWER function is one of the text and data functions. Is used to convert uppercase letters to lowercase in the selected cell. The LOWER function syntax is: LOWER(text) where text is data included into the cell you make reference to. To apply the LOWER function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the LOWER function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The LOWER function is one of the text and data functions. Is used to convert uppercase letters to lowercase in the selected cell. Syntax LOWER(text) The LOWER function has the following argument: Argument Description text The text you want to convert to lowercase. Notes How to apply the LOWER function. Examples The figure below displays the result returned by the LOWER function." }, { "id": "Functions/match.htm", "title": "MATCH Function", - "body": "The MATCH function is one of the lookup and reference functions. It is used to return a relative position of a specified item in a range of cells. The MATCH function syntax is: MATCH(lookup-value, lookup-array[ , [match-type]]) where lookup-value is a value in the lookup-array to search for. It can be a numeric, logical or text value, or a cell reference. lookup-array is a single row or column you need to analyze. match-type is a type of match. It's an optional argument. It can be one of the following numeric values: Numeric value Meaning 1 or omitted The values must be sorted in ascending order. If the the exact match is not found, the function will return the largest value that is less than lookup-value. 0 The values can be sorted in any order. If the the exact match is not found, the function will return the #N/A error. -1 The values must be sorted in descending order. If the the exact match is not found, the function will return the smallest value that is greater than lookup-value. To apply the MATCH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the MATCH function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The MATCH function is one of the lookup and reference functions. It is used to return a relative position of a specified item in a range of cells. Syntax MATCH(lookup_value, lookup_array, [match_type]) The MATCH function has the following arguments: Argument Description lookup_value A value in the lookup_array to search for. It can be a numeric, logical or text value, or a cell reference. lookup_array A single row or column you need to analyze. match_type A type of match. It's an optional argument. The possible values are listed in the table below. The match_type argument can be one of the following: Numeric value Meaning 1 or omitted The values must be sorted in ascending order. If the exact match is not found, the function will return the largest value that is less than lookup_value. 0 The values can be sorted in any order. If the exact match is not found, the function will return the #N/A error. -1 The values must be sorted in descending order. If the exact match is not found, the function will return the smallest value that is greater than lookup_value. Notes How to apply the MATCH function. Examples The figure below displays the result returned by the MATCH function." }, { "id": "Functions/max.htm", "title": "MAX Function", - "body": "The MAX function is one of the statistical functions. It is used to analyze the range of data and find the largest number. The MAX function syntax is: MAX(number1, number2, ...) where number1(2) is up to 30 numeric values entered manually or included into the cells you make reference to. To apply the MAX function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the MAX function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The MAX function is one of the statistical functions. It is used to analyze the range of data and find the largest number. Syntax MAX(number1, [number2], ...) The MAX function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to find the largest number. Notes How to apply the MAX function. Examples The figure below displays the result returned by the MAX function." }, { "id": "Functions/maxa.htm", "title": "MAXA Function", - "body": "The MAXA function is one of the statistical functions. It is used to analyze the range of data and find the largest value. The MAXA function syntax is: MAXA(number1, number2, ...) where number1(2) is a data (number, text, logical value) entered manually or included into the cell you make reference to. To apply the MAXA function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the MAXA function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The MAXA function is one of the statistical functions. It is used to analyze the range of data and find the largest value. Syntax MAXA(value1, [value2], ...) The MAXA function has the following arguments: Argument Description value1/2/n Up to 255 values (number, text, logical value) for which you want to find the largest value. Notes How to apply the MAXA function. Examples The figure below displays the result returned by the MAXA function." }, { "id": "Functions/maxifs.htm", "title": "MAXIFS Function", - "body": "The MAXIFS function is one of the statistical functions. It is used to return the maximum value among cells specified by a given set of conditions or criteria. The MAXIFS function syntax is: MAXIFS(max_range, criteria_range1, criteria1 [, criteria_range2, criteria2], ...) max_range is the range of cells in which the maximum will be determined. criteria_range1 is the first selected range of cells to apply the criteria1 to. criteria1 is the first condition that must be met. It is applied to the criteria_range1 and used to determine which cells in the max_range will be evaluated as maximum. It can be a value entered manually or included into the cell you make reference to. criteria_range2, criteria2, ... are additional ranges of cells and their corresponding criteria. These arguments are optional. Note: you can use wildcard characters when specifying criteria. The question mark \"?\" can replace any single character and the asterisk \"*\" can be used instead of any number of characters. To apply the MAXIFS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the MAXIFS function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The MAXIFS function is one of the statistical functions. It is used to return the maximum value among cells specified by a given set of conditions or criteria. Syntax MAXIFS(max_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...) The MAXIFS function has the following arguments: Argument Description max_range The range of cells in which the maximum will be determined. criteria_range1 The first selected range of cells to apply the criteria1 to. criteria1 The first condition that must be met. It is applied to the criteria_range1 and used to determine which cells in the max_range will be evaluated as maximum. criteria_range2, criteria2 Additional ranges of cells and their corresponding criteria. These arguments are optional. Notes You can use wildcard characters when specifying criteria. The question mark \"?\" can replace any single character and the asterisk \"*\" can be used instead of any number of characters. How to apply the MAXIFS function. Examples The figure below displays the result returned by the MAXIFS function." }, { "id": "Functions/mdeterm.htm", "title": "MDETERM Function", - "body": "The MDETERM function is one of the math and trigonometry functions. It is used to return the matrix determinant of an array. The MDETERM function syntax is: MDETERM(array) where array is an array of numbers. Note: If any of the cells in the array contain empty or non-numeric values, the function will return the #N/A error. If the number of rows in the array is not the same as the number of columns, the function will return the #VALUE! error. To apply the MDETERM function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the MDETERM function, select the range of cells with the mouse or enter the required argument manually, like this A1:B2, press the Enter button. The result will be displayed in the selected cell." + "body": "The MDETERM function is one of the math and trigonometry functions. It is used to return the matrix determinant of an array. Syntax MDETERM(array) The MDETERM function has the following argument: Argument Description array An array of numbers. Notes If any of the cells in the array contain empty or non-numeric values, the function will return the #N/A error. If the number of rows in the array is not the same as the number of columns, the function will return the #VALUE! error. How to apply the MDETERM function. Examples The figure below displays the result returned by the MDETERM function." }, { "id": "Functions/mduration.htm", "title": "MDURATION Function", - "body": "The MDURATION function is one of the financial functions. It is used to calculate the modified Macaulay duration of a security with an assumed par value of $100. The MDURATION function syntax is: MDURATION(settlement, maturity, coupon, yld, frequency[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. coupon is the annual coupon rate of the security. yld is the annual yield of the security. frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the MDURATION function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the MDURATION function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The MDURATION function is one of the financial functions. It is used to calculate the modified Macaulay duration of a security with an assumed par value of $100. Syntax MDURATION(settlement, maturity, coupon, yld, frequency, [basis]) The MDURATION function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. coupon The annual coupon rate of the security. yld The annual yield of the security. frequency The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the MDURATION function. Examples The figure below displays the result returned by the MDURATION function." }, { "id": "Functions/median.htm", "title": "MEDIAN Function", - "body": "The MEDIAN function is one of the statistical functions. It is used to calculate the median of the argument list. The MEDIAN function syntax is: MEDIAN(argument-list) where argument-list is up tp 30 numerical values entered manually or included into the cell you make reference to. To apply the MEDIAN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the MEDIAN function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The MEDIAN function is one of the statistical functions. It is used to calculate the median of the argument list. Syntax MEDIAN(number1, [number2], ...) The MEDIAN function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to calculate the median. Notes How to apply the MEDIAN function. Examples The figure below displays the result returned by the MEDIAN function." }, { "id": "Functions/mid.htm", "title": "MID/MIDB Function", - "body": "The MID/MIDB function is one of the text and data functions. Is used to extract the characters from the specified string starting from any position. The MID function is intended for languages that use the single-byte character set (SBCS), while MIDB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. The MID/MIDB function syntax is: MID(string, start-pos, number-chars) MIDB(string, start-pos, number-chars) where string is a string you need to extract the characters from. start-pos is a position you need to start extracting from. number-chars is a number of the characters you need to extract. The data can be entered manually or included into the cells you make reference to. To apply the MID/MIDB function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the MID/MIDB function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The MID/MIDB function is one of the text and data functions. Is used to extract the characters from the specified string starting from any position. The MID function is intended for languages that use the single-byte character set (SBCS), while MIDB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. Syntax MID(text, start_num, num_chars) The MID function has the following arguments: Argument Description text A string you need to extract the characters from. start_num A position you need to start extracting from. num_chars A number of the characters you need to extract. MIDB(text, start_num, num_bytes) The MIDB function has the following arguments: Argument Description text A string you need to extract the characters from. start_num A position you need to start extracting from. num_bytes A number of the characters you need to extract, based on bytes. Notes How to apply the MID/MIDB function. Examples The figure below displays the result returned by the MID function." }, { "id": "Functions/midb.htm", "title": "MID/MIDB Function", - "body": "The MID/MIDB function is one of the text and data functions. Is used to extract the characters from the specified string starting from any position. The MID function is intended for languages that use the single-byte character set (SBCS), while MIDB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. The MID/MIDB function syntax is: MID(string, start-pos, number-chars) MIDB(string, start-pos, number-chars) where string is a string you need to extract the characters from. start-pos is a position you need to start extracting from. number-chars is a number of the characters you need to extract. The data can be entered manually or included into the cells you make reference to. To apply the MID/MIDB function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the MID/MIDB function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The MID/MIDB function is one of the text and data functions. Is used to extract the characters from the specified string starting from any position. The MID function is intended for languages that use the single-byte character set (SBCS), while MIDB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. Syntax MID(text, start_num, num_chars) The MID function has the following arguments: Argument Description text A string you need to extract the characters from. start_num A position you need to start extracting from. num_chars A number of the characters you need to extract. MIDB(text, start_num, num_bytes) The MIDB function has the following arguments: Argument Description text A string you need to extract the characters from. start_num A position you need to start extracting from. num_bytes A number of the characters you need to extract, based on bytes. Notes How to apply the MID/MIDB function. Examples The figure below displays the result returned by the MID function." }, { "id": "Functions/min.htm", "title": "MIN Function", - "body": "The MIN function is one of the statistical functions. It is used to analyze the range of data and find the smallest number. The MIN function syntax is: MIN(number1, number2, ...) where number1(2) is up to 30 numeric values entered manually or included into the cell you make reference to. To apply the MIN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the MIN function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The MIN function is one of the statistical functions. It is used to analyze the range of data and find the smallest number. Syntax MIN(number1, [number2], ...) The MIN function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to find the smallest number. Notes How to apply the MIN function. Examples The figure below displays the result returned by the MIN function." }, { "id": "Functions/mina.htm", "title": "MINA Function", - "body": "The MINA function is one of the statistical functions. It is used to analyze the range of data and find the smallest value. The MINA function syntax is: MINA(number1, number2, ...) where number1(2) is a data (number, text, logical value) entered manually or included into the cell you make reference to. To apply the MINA function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the MINA function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The MINA function is one of the statistical functions. It is used to analyze the range of data and find the smallest value. Syntax MINA(value1, [value2], ...) The MINA function has the following arguments: Argument Description value1/2/n Up to 255 values (number, text, logical value) for which you want to find the smallest value. Notes How to apply the MINA function. Examples The figure below displays the result returned by the MINA function." }, { "id": "Functions/minifs.htm", "title": "MINIFS Function", - "body": "The MINIFS function is one of the statistical functions. It is used to return the minimum value among cells specified by a given set of conditions or criteria. The MINIFS function syntax is: MINIFS(min_range, criteria_range1, criteria1 [, criteria_range2, criteria2], ...) min_range is the range of cells in which the minimum will be determined. criteria_range1 is the first selected range of cells to apply the criteria1 to. criteria1 is the first condition that must be met. It is applied to the criteria_range1 and used to determine which cells in the min_range will be evaluated as minimum. It can be a value entered manually or included into the cell you make reference to. criteria_range2, criteria2, ... are additional ranges of cells and their corresponding criteria. These arguments are optional. Note: you can use wildcard characters when specifying criteria. The question mark \"?\" can replace any single character and the asterisk \"*\" can be used instead of any number of characters. To apply the MINIFS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the MINIFS function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The MINIFS function is one of the statistical functions. It is used to return the minimum value among cells specified by a given set of conditions or criteria. Syntax MINIFS(min_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...) The MINIFS function has the following arguments: Argument Description min_range The range of cells in which the minimum will be determined. criteria_range1 The first selected range of cells to apply the criteria1 to. criteria1 The first condition that must be met. It is applied to the criteria_range1 and used to determine which cells in the min_range will be evaluated as minimum. criteria_range2, criteria2 Additional ranges of cells and their corresponding criteria. These arguments are optional. Notes You can use wildcard characters when specifying criteria. The question mark \"?\" can replace any single character and the asterisk \"*\" can be used instead of any number of characters. How to apply the MINIFS function. Examples The figure below displays the result returned by the MINIFS function." }, { "id": "Functions/minute.htm", "title": "MINUTE Function", - "body": "The MINUTE function is one of the date and time functions. It returns the minute (a number from 0 to 59) of the time value. The MINUTE function syntax is: MINUTE( time-value ) where time-value is a value entered manually or included into the cell you make reference to. Note: the time-value may be expressed as a string value (e.g. \"13:39\"), a decimal number (e.g. 0.56 corresponds to 13:26) , or the result of a formula (e.g. the result of the NOW function in the default format - 9/26/12 13:39) To apply the MINUTE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the MINUTE function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The MINUTE function is one of the date and time functions. It returns the minute (a number from 0 to 59) of the time value. Syntax MINUTE(serial_number) The MINUTE function has the following argument: Argument Description serial_number The time that contains the minute you want to find. Notes The serial_number may be expressed as a string value (e.g. \"13:39\"), a decimal number (e.g. 0.56 corresponds to 13:26) , or the result of a formula (e.g. the result of the NOW function in the default format - 9/26/12 13:39) How to apply the MINUTE function. Examples The figure below displays the result returned by the MINUTE function." }, { "id": "Functions/minverse.htm", "title": "MINVERSE Function", - "body": "The MINVERSE function is one of the math and trigonometry functions. It is used to return the inverse matrix for a given matrix and display the first value of the returned array of numbers. The MINVERSE function syntax is: MINVERSE(array) where array is an array of numbers. Note: If any of the cells in the array contain empty or non-numeric values, the function will return the #N/A error. If the number of rows in the array is not the same as the number of columns, the function will return the #VALUE! error. To apply the MINVERSE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the MINVERSE function, select the range of cells with the mouse or enter the required argument manually, like this A1:B2, press the Enter button. The result will be displayed in the selected cell." + "body": "The MINVERSE function is one of the math and trigonometry functions. It is used to return the inverse matrix for a given matrix and display the first value of the returned array of numbers. Syntax MINVERSE(array) The MINVERSE function has the following argument: Argument Description array An array of numbers. Notes If any of the cells in the array contain empty or non-numeric values, the function will return the #N/A error. If the number of rows in the array is not the same as the number of columns, the function will return the #VALUE! error. Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the MINVERSE function. Examples The figure below displays the result returned by the MINVERSE function." }, { "id": "Functions/mirr.htm", "title": "MIRR Function", - "body": "The MIRR function is one of the financial functions. It is used to calculate the modified internal rate of return for a series of periodic cash flows. The MIRR function syntax is: MIRR(values, finance-rate, reinvest-rate) where values is an array that contains the series of payments occuring at regular periods. At least one of the values must be negative and at least one positive. finance-rate is the interest rate paid on the money used in the cash flows. reinvest-rate is the interest rate received on the cash reinvestment. The numeric values can be entered manually or included into the cell you make reference to. To apply the MIRR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the MIRR function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The MIRR function is one of the financial functions. It is used to calculate the modified internal rate of return for a series of periodic cash flows. Syntax MIRR(values, finance_rate, reinvest_rate) The MIRR function has the following arguments: Argument Description values An array that contains the series of payments occuring at regular periods. At least one of the values must be negative and at least one positive. finance_rate The interest rate paid on the money used in the cash flows. reinvest_rate The interest rate received on the cash reinvestment. Notes How to apply the MIRR function. Examples The figure below displays the result returned by the MIRR function." }, { "id": "Functions/mmult.htm", "title": "MMULT Function", - "body": "The MMULT function is one of the math and trigonometry functions. It is used to return the matrix product of two arrays and display the first value of the returned array of numbers. The MMULT function syntax is: MMULT(array1, array2) where array1, array2 is an array of numbers. Note: if any of the cells in the array contain empty or non-numeric values, the function will return the #N/A error. If the number of columns in array1 is not the same as the number of rows in array2, the function will return the #VALUE! error. To apply the MMULT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the MMULT function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The MMULT function is one of the math and trigonometry functions. It is used to return the matrix product of two arrays and display the first value of the returned array of numbers. Syntax MMULT(array1, array2) The MMULT function has the following arguments: Argument Description array1, array2 An array of numbers. Notes If any of the cells in the array contain empty or non-numeric values, the function will return the #N/A error. If the number of columns in array1 is not the same as the number of rows in array2, the function will return the #VALUE! error. Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the MMULT function. Examples The figure below displays the result returned by the MMULT function." }, { "id": "Functions/mod.htm", "title": "MOD Function", - "body": "The MOD function is one of the math and trigonometry functions. It is used to return the remainder after the division of a number by the specified divisor. The MOD function syntax is: MOD(x, y) where x is a number you wish to divide and find the remainder. y is a number you wish to divide by. The numeric values can be entered manually or included into the cell you make reference to. Note: if y is 0, the function returns the #DIV/0! error. To apply the MOD function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the MOD function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The MOD function is one of the math and trigonometry functions. It is used to return the remainder after the division of a number by the specified divisor. Syntax MOD(number, divisor) The MOD function has the following argument: Argument Description number A number you wish to divide and find the remainder. divisor A number you wish to divide by. Notes If divisor is 0, the function returns the #DIV/0! error. How to apply the MOD function. Examples The figure below displays the result returned by the MOD function." }, { "id": "Functions/mode-mult.htm", "title": "MODE.MULT Function", - "body": "The MODE.MULT function is one of the statistical functions. It is used to return the most frequently occurring, or repetitive value in an array or range of data. The MODE.MULT function syntax is: MODE.MULT(number1, [, number2],...) where number1, number2... is up to 255 numeric values entered manually or included into the cell you make reference to. Note: if there is no repetitive value in the argument list, the function will return the #VALUE! error. To apply the MODE.MULT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the MODE.MULT function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The MODE.MULT function is one of the statistical functions. It is used to return the most frequently occurring, or repetitive values in an array or range of data. Syntax MODE.MULT(number1, [number2], ...) The MODE.MULT function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to find the most frequently occurring value. Notes Because this function returns an array of values, it must be entered as an array formula. To learn more, please read the Insert array formulas article. If there is no repetitive value in the argument list, the function will return the #VALUE! error. How to apply the MODE.MULT function. Examples The figure below displays the result returned by the MODE.MULT function." }, { "id": "Functions/mode-sngl.htm", "title": "MODE.SNGL Function", - "body": "The MODE.SNGL function is one of the statistical functions. It is used to return the most frequently occurring, or repetitive, value in an array or range of data. The MODE.SNGL function syntax is: MODE.SNGL(number1, [, number2],...) where number1, number2... is up to 255 numeric values entered manually or included into the cell you make reference to. Note: if there is no repetitive value in the argument list, the function will return the #VALUE! error. To apply the MODE.SNGL function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the MODE.SNGL function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The MODE.SNGL function is one of the statistical functions. It is used to return the most frequently occurring, or repetitive, value in an array or range of data. Syntax MODE.SNGL(number1, [number2], ...) The MODE.SNGL function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to find the most frequently occurring value. Notes If there is no repetitive value in the argument list, the function will return the #VALUE! error. How to apply the MODE.SNGL function. Examples The figure below displays the result returned by the MODE.SNGL function." }, { "id": "Functions/mode.htm", "title": "MODE Function", - "body": "The MODE function is one of the statistical functions. It is used to analyze the range of data and return the most frequently occurring value. The MODE function syntax is: MODE(argument-list) where argument-list is up to 255 numeric values entered manually or included into the cell you make reference to. Note: if there is no repetitive value in the argument list, the function will return the #VALUE! error. To apply the MODE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the MODE function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The MODE function is one of the statistical functions. It is used to analyze the range of data and return the most frequently occurring value. Syntax MODE(number1, [number2], ...) The MODE function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to find the most frequently occurring value. Notes If there is no repetitive value in the argument list, the function will return the #VALUE! error. How to apply the MODE function. Examples The figure below displays the result returned by the MODE function." }, { "id": "Functions/month.htm", "title": "MONTH Function", - "body": "The MONTH function is one of the date and time functions. It returns the month (a number from 1 to 12) of the date given in the numerical format (MM/dd/yyyy by default). The MONTH function syntax is: MONTH(date-value) where date-value is a value entered manually or included into the cell you make reference to. To apply the MONTH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the MONTH function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The MONTH function is one of the date and time functions. It returns the month (a number from 1 to 12) of the date given in the numerical format (MM/dd/yyyy by default). Syntax MONTH(serial_number) The MONTH function has the following argument: Argument Description serial_number The date of the month you want to find. Notes How to apply the MONTH function. Examples The figure below displays the result returned by the MONTH function." }, { "id": "Functions/mround.htm", "title": "MROUND Function", - "body": "The MROUND function is one of the math and trigonometry functions. It is used to round the number to the desired multiple. The MROUND function syntax is: MROUND(x, multiple) where x is a number you wish to round. multiple is a multiple you wish to round to. The numeric values can be entered manually or included into the cell you make reference to. Note: if the values of x and multiple have different signs, the function returns the #NUM! error. To apply the MROUND function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the MROUND function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The MROUND function is one of the math and trigonometry functions. It is used to round the number to the desired multiple. Syntax MROUND(number, multiple) The MROUND function has the following arguments: Argument Description number A number you wish to round. multiple A multiple you wish to round to. Notes If the values of number and multiple have different signs, the function returns the #NUM! error. How to apply the MROUND function. Examples The figure below displays the result returned by the MROUND function." }, { "id": "Functions/multinomial.htm", "title": "MULTINOMIAL Function", - "body": "The MULTINOMIAL function is one of the math and trigonometry functions. It is used to return the ratio of the factorial of a sum of numbers to the product of factorials. The MULTINOMIAL function syntax is: MULTINOMIAL(argument-list) where argument-list is is up to 30 numeric values entered manually or included into the cells you make reference to. To apply the MULTINOMIAL function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the MULTINOMIAL function, enter the required argument separated by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The MULTINOMIAL function is one of the math and trigonometry functions. It is used to return the ratio of the factorial of a sum of numbers to the product of factorials. Syntax MULTINOMIAL(number1, [number2], ...) The MULTINOMIAL function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to find the multinomial. Notes How to apply the MULTINOMIAL function. Examples The figure below displays the result returned by the MULTINOMIAL function." }, { "id": "Functions/munit.htm", "title": "MUNIT Function", - "body": "The MUNIT function is one of the math and trigonometry functions. It is used to return the unit matrix for the specified dimension. The MUNIT function syntax is: MUNIT(dimension) where dimension is a required argument. It is an integer specifying the dimension of the unit matrix that you want to return, and returns an array. The dimension has to be greater than zero. To apply the MUNIT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the MUNIT function, enter the required argument, press the Enter button. The result will be displayed in the selected cell. To return a range of values, select a required range of cells, enter the formula, and press the Ctrl+Shift+Enter key combination." + "body": "The MUNIT function is one of the math and trigonometry functions. It is used to return the unit matrix for the specified dimension. Syntax MUNIT(dimension) The MUNIT function has the following argument: Argument Description dimension An integer specifying the dimension of the unit matrix that you want to return, and returns an array. The dimension has to be greater than zero. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the MUNIT function. Examples The figure below displays the result returned by the MUNIT function." }, { "id": "Functions/n.htm", "title": "N Function", - "body": "The N function is one of the information functions. It is used to convert a value to a number. The N function syntax is: N(value) where value is a value to test entered manually or included into the cell you make reference to. Below you will find the possible values and the result of their conversion: Value Number number number date date as serial number TRUE 1 FALSE 0 error error value Other 0 To apply the N function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Information function group from the list, click the N function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The N function is one of the information functions. It is used to convert a value to a number. Syntax N(value) The N function has the following argument: Argument Description value A value to test. The value argument can be one of the following: Value Number number number date date as serial number TRUE 1 FALSE 0 error error value Other 0 Notes How to apply the N function. Examples The figure below displays the result returned by the N function." }, { "id": "Functions/na.htm", "title": "NA Function", - "body": "The NA function is one of the information functions. It is used to return the #N/A error value. This function does not require an argument. The NA function syntax is: NA() To apply the NA function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Information function group from the list, click the NA function, press the Enter button. The result will be displayed in the selected cell." + "body": "The NA function is one of the information functions. It is used to return the #N/A error value. This function does not require an argument. Syntax NA() Notes How to apply the NA function. Examples The figure below displays the result returned by the NA function." }, { "id": "Functions/negbinom-dist.htm", "title": "NEGBINOM.DIST Function", - "body": "The NEGBINOM.DIST function is one of the statistical functions. It is used to return the negative binomial distribution, the probability that there will be Number_f failures before the Number_s-th success, with Probability_s probability of a success. The NEGBINOM.DIST function syntax is: NEGBINOM.DIST(number-f, number-s, probability-s, cumulative) where number-f is the number of failures, a numeric value greater than or equal to 0. number-s is the the threshold number of successes, a numeric value greater than or equal to 1. probability-s is the success propability of each trial, a numeric value greater than 0, but less than 1. cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function. The numeric values can be entered manually or included into the cells you make reference to. To apply the NEGBINOM.DIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the NEGBINOM.DIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The NEGBINOM.DIST function is one of the statistical functions. It is used to return the negative binomial distribution, the probability that there will be Number_f failures before the Number_s-th success, with Probability_s probability of a success. Syntax NEGBINOM.DIST(number_f, number_s, probability_s, cumulative) The NEGBINOM.DIST function has the following arguments: Argument Description number_f The number of failures, a numeric value greater than or equal to 0. number_s The threshold number of successes, a numeric value greater than or equal to 1. probability_s The success propability of each trial, a numeric value greater than 0, but less than 1. cumulative A logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function. Notes How to apply the NEGBINOM.DIST function. Examples The figure below displays the result returned by the NEGBINOM.DIST function." }, { "id": "Functions/negbinomdist.htm", "title": "NEGBINOMDIST Function", - "body": "The NEGBINOMDIST function is one of the statistical functions. It is used to return the negative binomial distribution. The NEGBINOMDIST function syntax is: NEGBINOMDIST(number-failures, number-successes, success-probability) where number-failures is the number of failures, a numeric value greater than or equal to 0. number-successes is the the threshold number of successes, a numeric value greater than or equal to 0. success-probability is the success propability of each trial, a numeric value greater than 0, but less than 1. The numeric values can be entered manually or included into the cells you make reference to. To apply the NEGBINOMDIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the NEGBINOMDIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The NEGBINOMDIST function is one of the statistical functions. It is used to return the negative binomial distribution. Syntax NEGBINOMDIST(number_f, number_s, probability_s) The NEGBINOMDIST function has the following arguments: Argument Description number_f The number of failures, a numeric value greater than or equal to 0. number_s The threshold number of successes, a numeric value greater than or equal to 1. probability_s The success propability of each trial, a numeric value greater than 0, but less than 1. Notes How to apply the NEGBINOMDIST function. Examples The figure below displays the result returned by the NEGBINOMDIST function." }, { "id": "Functions/networkdays-intl.htm", "title": "NETWORKDAYS.INTL Function", - "body": "The NETWORKDAYS.INTL function is one of the date and time functions. It is used to return the number of whole workdays between two dates using parameters to indicate which and how many days are weekend days. The NETWORKDAYS.INTL function syntax is: NETWORKDAYS.INTL(start_date, end_date, [, weekend], [, holidays]) where start_date is the first date of the period, entered using the Date function or other date and time function. end_date is the last date of the period, entered using the Date function or other date and time function. weekend is an optional argument, a number or a string that specifies which days to consider weekends. The possible numbers are listed in the table below. Number Weekend days 1 or omitted Saturday, Sunday 2 Sunday, Monday 3 Monday, Tuesday 4 Tuesday, Wednesday 5 Wednesday, Thursday 6 Thursday, Friday 7 Friday, Saturday 11 Sunday only 12 Monday only 13 Tuesday only 14 Wednesday only 15 Thursday only 16 Friday only 17 Saturday only A string that specifies weekend days must contain 7 characters. Each character represents a day of the week, starting from Monday. 0 represents a workday, 1 represents a weekend day. E.g. \"0000011\" specifies that weekend days are Saturday and Sunday. The string \"1111111\" is not valid. holidays is an optional argument that specifies which dates in addition to weekend are nonworking. You can enter them using the Date function or other date and time function or specify a reference to a range of cells containing dates. To apply the NETWORKDAYS.INTL function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the NETWORKDAYS.INTL function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The NETWORKDAYS.INTL function is one of the date and time functions. It is used to return the number of whole workdays between two dates using parameters to indicate which and how many days are weekend days. Syntax NETWORKDAYS.INTL(start_date, end_date, [weekend], [holidays]) The NETWORKDAYS.INTL function has the following arguments: Argument Description start_date The first date of the period, entered using the DATE function or other date and time function. end_date The last date of the period, entered using the DATE function or other date and time function. weekend An optional argument, a number or a string that specifies which days to consider weekends. The possible numbers are listed in the table below. holidays An optional argument that specifies which dates in addition to weekend are nonworking. You can enter them using the DATE function or other date and time function or specify a reference to a range of cells containing dates. The weekend argument can be one of the following: Number Weekend days 1 or omitted Saturday, Sunday 2 Sunday, Monday 3 Monday, Tuesday 4 Tuesday, Wednesday 5 Wednesday, Thursday 6 Thursday, Friday 7 Friday, Saturday 11 Sunday only 12 Monday only 13 Tuesday only 14 Wednesday only 15 Thursday only 16 Friday only 17 Saturday only Notes A string that specifies weekend days must contain 7 characters. Each character represents a day of the week, starting from Monday. 0 represents a workday, 1 represents a weekend day. E.g. \"0000011\" specifies that weekend days are Saturday and Sunday. The string \"1111111\" is not valid. How to apply the NETWORKDAYS.INTL function. Examples The figure below displays the result returned by the NETWORKDAYS.INTL function." }, { "id": "Functions/networkdays.htm", "title": "NETWORKDAYS Function", - "body": "The NETWORKDAYS function is one of the date and time functions. It is used to return the number of the work days between two dates (start date and end-date) excluding weekends and dates considered as holidays. The NETWORKDAYS function syntax is: NETWORKDAYS(start-date, end-date [,holidays]) where start-date is the first date of the period, entered using the Date function or other date and time function. end-date is the last date of the period, entered using the Date function or other date and time function. holidays is an optional argument that specifies which dates besides weekends are nonworking. You can enter them using the Date function or other date and time function or specify a reference to a range of cells containing dates. To apply the NETWORKDAYS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the NETWORKDAYS function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The NETWORKDAYS function is one of the date and time functions. It is used to return the number of the work days between two dates (start date and end-date) excluding weekends and dates considered as holidays. Syntax NETWORKDAYS(start_date, end_date, [holidays]) The NETWORKDAYS function has the following argument: Argument Description start_date The first date of the period, entered using the DATE function or other date and time function. end_date The last date of the period, entered using the DATE function or other date and time function. holidays An optional argument that specifies which dates besides weekends are nonworking. You can enter them using the DATE function or other date and time function or specify a reference to a range of cells containing dates. Notes How to apply the NETWORKDAYS function. Examples The figure below displays the result returned by the NETWORKDAYS function." }, { "id": "Functions/nominal.htm", "title": "NOMINAL Function", - "body": "The NOMINAL function is one of the financial functions. It is 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. The NOMINAL function syntax is: NOMINAL(effect-rate, npery) where effect-rate is the effective annual interest rate of the security. npery is the number of compounding periods per year. The numeric values can be entered manually or included into the cell you make reference to. To apply the NOMINAL function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the NOMINAL function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The NOMINAL function is one of the financial functions. It is 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. Syntax NOMINAL(effect_rate, npery) The NOMINAL function has the following arguments: Argument Description effect_rate The effective annual interest rate of the security. npery The number of compounding periods per year. Notes How to apply the NOMINAL function. Examples The figure below displays the result returned by the NOMINAL function." }, { "id": "Functions/norm-dist.htm", "title": "NORM.DIST Function", - "body": "The NORM.DIST function is one of the statistical functions. It is used to return the normal distribution for the specified mean and standard deviation. The NORM.DIST function syntax is: NORM.DIST(x, mean, standard-dev, cumulative) where x is the value you want to calculate the distribution for, any numeric value. mean is the arithmetic mean of the distribution, any numeric value. standard-dev is the standard deviation of the distribution, a numeric value greater than 0. cumulative is the form of the function, a logical value: TRUE or FALSE. If cumulative is TRUE, the function will return the cumulative distribution function; if FALSE, it will return the probability mass function. The values can be entered manually or included into the cells you make reference to. To apply the NORM.DIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the NORM.DIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The NORM.DIST function is one of the statistical functions. It is used to return the normal distribution for the specified mean and standard deviation. Syntax NORM.DIST(x, mean, standard_dev, cumulative) The NORM.DIST function has the following arguments: Argument Description x The value you want to calculate the distribution for, any numeric value. mean The arithmetic mean of the distribution, any numeric value. standard_dev The standard deviation of the distribution, a numeric value greater than 0. cumulative The form of the function, a logical value: TRUE or FALSE. If cumulative is TRUE, the function will return the cumulative distribution function; if FALSE, it will return the probability mass function. Notes How to apply the NORM.DIST function. Examples The figure below displays the result returned by the NORM.DIST function." }, { "id": "Functions/norm-inv.htm", "title": "NORM.INV Function", - "body": "The NORM.INV function is one of the statistical functions. It is used to return the inverse of the normal cumulative distribution for the specified mean and standard deviation. The NORM.INV function syntax is: NORM.INV(probability, mean, standard-dev) where probability is the probability corresponding to the normal distribution, any numeric value greater than 0, but less than 1. mean is the arithmetic mean of the distribution, any numeric value. standard-dev is the standard deviation of the distribution, a numeric value greater than 0. The numeric values can be entered manually or included into the cells you make reference to. To apply the NORM.INV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the NORM.INV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The NORM.INV function is one of the statistical functions. It is used to return the inverse of the normal cumulative distribution for the specified mean and standard deviation. Syntax NORM.INV(probability, mean, standard_dev) The NORM.INV function has the following arguments: Argument Description probability The probability corresponding to the normal distribution, any numeric value greater than 0, but less than 1. mean The arithmetic mean of the distribution, any numeric value. standard_dev The standard deviation of the distribution, a numeric value greater than 0. Notes How to apply the NORM.INV function. Examples The figure below displays the result returned by the NORM.INV function." }, { "id": "Functions/norm-s-dist.htm", "title": "NORM.S.DIST Function", - "body": "The NORM.S.DIST function is one of the statistical functions. It is used to return the standard normal distribution (has a mean of zero and a standard deviation of one). The NORM.S.DIST function syntax is: NORM.S.DIST(z, cumulative) where z is the value at which the function should be calculated, a numeric value entered manually or included into the cell you make reference to. cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function. To apply the NORM.S.DIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the NORM.S.DIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The NORM.S.DIST function is one of the statistical functions. It is used to return the standard normal distribution (has a mean of zero and a standard deviation of one). Syntax NORM.S.DIST(z, cumulative) The NORM.S.DIST function has the following arguments: Argument Description z A numeric value for which you want to find the standard normal distribution. cumulative A logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function. Notes How to apply the NORM.S.DIST function. Examples The figure below displays the result returned by the NORM.S.DIST function." }, { "id": "Functions/norm-s-inv.htm", "title": "NORM.S.INV Function", - "body": "The NORM.S.INV function is one of the statistical functions. It is used to return the inverse of the standard normal cumulative distribution; the distribution has a mean of zero and a standard deviation of one. The NORM.S.INV function syntax is: NORM.S.INV(probability) where probability is a numeric value greater than 0 but less than 1 entered manually or included into the cell you make reference to. To apply the NORM.S.INV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the NORM.S.INV function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The NORM.S.INV function is one of the statistical functions. It is used to return the inverse of the standard normal cumulative distribution; the distribution has a mean of zero and a standard deviation of one. Syntax NORM.S.INV(probability) The NORM.S.INV function has the following argument: Argument Description probability A probability corresponding to the normal distribution. A numeric value greater than 0 but less than 1. Notes How to apply the NORM.S.INV function. Examples The figure below displays the result returned by the NORM.S.INV function." }, { "id": "Functions/normdist.htm", "title": "NORMDIST Function", - "body": "The NORMDIST function is one of the statistical functions. It is used to return the normal distribution for the specified mean and standard deviation. The NORMDIST function syntax is: NORMDIST(x , mean , standard-deviation , cumulative-flag) where x is the value you want to calculate the distribution for, any numeric value. mean is the arithmetic mean of the distribution, any numeric value. standard-deviation is the standard deviation of the distribution, a numeric value greater than 0. cumulative-flag is the form of the function, a logical value: TRUE or FALSE. If cumulative-flag is TRUE, the function will return the cumulative distribution function; if FALSE, it will return the probability mass function. The values can be entered manually or included into the cells you make reference to. To apply the NORMDIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the NORMDIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The NORMDIST function is one of the statistical functions. It is used to return the normal distribution for the specified mean and standard deviation. Syntax NORMDIST(x, mean, standard_dev, cumulative) The NORMDIST function has the following arguments: Argument Description x The value you want to calculate the distribution for, any numeric value. mean The arithmetic mean of the distribution, any numeric value. standard_dev The standard deviation of the distribution, a numeric value greater than 0. cumulative The form of the function, a logical value: TRUE or FALSE. If cumulative is TRUE, the function will return the cumulative distribution function; if FALSE, it will return the probability mass function. Notes How to apply the NORMDIST function. Examples The figure below displays the result returned by the NORMDIST function." }, { "id": "Functions/norminv.htm", "title": "NORMINV Function", - "body": "The NORMINV function is one of the statistical functions. It is used to return the inverse of the normal cumulative distribution for the specified mean and standard deviation. The NORMINV function syntax is: NORMINV(x, mean, standard-deviation) where x is the probability corresponding to the normal distribution, any numeric value greater than 0, but less than 1. mean is the arithmetic mean of the distribution, any numeric value. standard-deviation is the standard deviation of the distribution, a numeric value greater than 0. The numeric values can be entered manually or included into the cells you make reference to. To apply the NORMINV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the NORMINV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The NORMINV function is one of the statistical functions. It is used to return the inverse of the normal cumulative distribution for the specified mean and standard deviation. Syntax NORMINV(probability, mean, standard_dev) The NORMINV function has the following arguments: Argument Description probability The probability corresponding to the normal distribution, any numeric value greater than 0, but less than 1. mean The arithmetic mean of the distribution, any numeric value. standard_dev The standard deviation of the distribution, a numeric value greater than 0. Notes How to apply the NORMINV function. Examples The figure below displays the result returned by the NORMINV function." }, { "id": "Functions/normsdist.htm", "title": "NORMSDIST Function", - "body": "The NORMSDIST function is one of the statistical functions. It is used to return the standard normal cumulative distribution function. The NORMSDIST function syntax is: NORMSDIST(number) where number is a numeric value entered manually or included into the cell you make reference to. To apply the NORMSDIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the NORMSDIST function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The NORMSDIST function is one of the statistical functions. It is used to return the standard normal cumulative distribution function. Syntax NORMSDIST(z) The NORMSDIST function has the following argument: Argument Description z A numeric value for which you want to find the standard normal cumulative distribution. Notes How to apply the NORMSDIST function. Examples The figure below displays the result returned by the NORMSDIST function." }, { "id": "Functions/normsinv.htm", "title": "NORMSINV Function", - "body": "The NORMSINV function is one of the statistical functions. It is used to return the inverse of the standard normal cumulative distribution. The NORMSINV function syntax is: NORMSINV(probability) where probability is a numeric value greater than 0 but less than 1 entered manually or included into the cell you make reference to. To apply the NORMSINV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the NORMSINV function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The NORMSINV function is one of the statistical functions. It is used to return the inverse of the standard normal cumulative distribution. Syntax NORMSINV(probability) The NORMSINV function has the following argument: Argument Description probability A probability corresponding to the normal distribution. A numeric value greater than 0 but less than 1. Notes How to apply the NORMSINV function. Examples The figure below displays the result returned by the NORMSINV function." }, { "id": "Functions/not.htm", "title": "NOT Function", - "body": "The NOT function is one of the logical functions. It is 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. The NOT function syntax is: NOT(logical) where logical is a value entered manually or included into the cell you make reference to. To apply the NOT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Logical function group from the list, click the NOT function, enter the required argument, press the Enter button. The result will be displayed in the selected cell. For example: There is an argument: logical = A1<100, where A1 is 12. This logical expression is TRUE. So the function returns FALSE. If we change the A1 value from 12 to 112, the function returns TRUE:" + "body": "The NOT function is one of the logical functions. It is 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. Syntax NOT(logical) The NOT function has the following argument: Argument Description logical A value that can be evaluated to TRUE or FALSE. Notes How to apply the NOT function. Examples There is an argument: logical = A1<100, where A1 is 12. This logical expression is TRUE. So the function returns FALSE. If we change the A1 value from 12 to 112, the function returns TRUE:" }, { "id": "Functions/now.htm", "title": "NOW Function", - "body": "The NOW function is one of the date and time functions. It is used to add the current date and time to your spreadsheet in the following format MM/dd/yy hh:mm. This function does not require an argument. The NOW function syntax is: NOW() To apply the NOW function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the NOW function, press the Enter button. The result will be displayed in the selected cell." + "body": "The NOW function is one of the date and time functions. It is used to add the current date and time to your spreadsheet in the following format MM/dd/yy hh:mm. This function does not require an argument. Syntax NOW() Notes How to apply the NOW function. Examples The figure below displays the result returned by the NOW function." }, { "id": "Functions/nper.htm", "title": "NPER Function", - "body": "The NPER function is one of the financial functions. It is used to calculate the number of periods for an investment based on a specified interest rate and a constant payment schedule. The NPER function syntax is: NPER(rate, pmt, pv [, [fv] [,[type]]]) where rate is the interest rate. pmt is a payment amount. pv is the present value of the payments. fv is the future value of an investment. It is an optional argument. If it is omitted, the function will assume fv to be 0. type is the period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If it is 1, the payments are due at the beginning of the period. Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. The numeric values can be entered manually or included into the cells you make reference to. To apply the NPER function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the NPER function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The NPER function is one of the financial functions. It is used to calculate the number of periods for an investment based on a specified interest rate and a constant payment schedule. Syntax NPER(rate, pmt, pv, [fv], [type]) The NPER function has the following arguments: Argument Description rate The interest rate. pmt A payment amount. pv A present value of the payments. fv The future value of an investment. It is an optional argument. If it is omitted, the function will assume fv to be 0. type A period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period. Notes Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. How to apply the NPER function. Examples The figure below displays the result returned by the NPER function." }, { "id": "Functions/npv.htm", "title": "NPV Function", - "body": "The NPV function is one of the financial functions. It is used to calculate the net present value of an investment based on a specified discount rate. The NPV function syntax is: NPV(rate, argument-list) where rate is the discount rate. argument-list is the list of the future payments. The numeric values can be entered manually or included into the cells you make reference to. To apply the NPV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the NPV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The NPV function is one of the financial functions. It is used to calculate the net present value of an investment based on a specified discount rate. Syntax NPV(rate, value1, [value2], ...) The NPV function has the following arguments: Argument Description rate The discount rate. value1/2/n Up to 255 arguments representing future payments (negative values) and income (positive values). Notes How to apply the NPV function. Examples The figure below displays the result returned by the NPV function." }, { "id": "Functions/numbervalue.htm", "title": "NUMBERVALUE Function", - "body": "The NUMBERVALUE function is one of the text and data functions. Is used to convert text to a number, in a locale-independent way. If the converted text is not a number, the function will return a #VALUE! error. The NUMBERVALUE function syntax is: NUMBERVALUE(text [, [decimal-separator] [, [group-separator]]) where text is text data that represents a number. decimal-separator is the character used to separate the integer and fractional part of the result. It is an optional argument. If it is omitted, the current locale is used. group-separator is the character used to separate groupings of numbers, such as thousands from hundreds and millions from thousands. It is an optional argument. If it is omitted, the current locale is used. The values can be entered manually or included into the cell you make reference to. To apply the NUMBERVALUE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the NUMBERVALUE function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The NUMBERVALUE function is one of the text and data functions. Is used to convert text to a number, in a locale-independent way. If the converted text is not a number, the function will return a #VALUE! error. Syntax NUMBERVALUE(text, [decimal_separator], [group_separator]) The NUMBERVALUE function has the following arguments: Argument Description text The text data that represents a number. decimal_separator The character used to separate the integer and fractional part of the result. It is an optional argument. If it is omitted, the current locale is used. group_separator The character used to separate groupings of numbers, such as thousands from hundreds and millions from thousands. It is an optional argument. If it is omitted, the current locale is used. Notes How to apply the NUMBERVALUE function. Examples The figure below displays the result returned by the NUMBERVALUE function." }, { "id": "Functions/oct2bin.htm", "title": "OCT2BIN Function", - "body": "The OCT2BIN function is one of the engineering functions. It is used to convert an octal number to a binary number. The OCT2BIN function syntax is: OCT2BIN(number [, num-hex-digits]) where number is an octal number entered manually or included into the cell you make reference to. num-hex-digits is the number of digits to display. If omitted, the function will use the minimum number. Note: if the argument is not recognised as an octal number, or contains more than 10 characters, or the resulting binary number requires more digits than you specified, or the specified num-hex-digits number is less than or equal to 0, the function will return the #NUM! error. To apply the OCT2BIN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the OCT2BIN function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The OCT2BIN function is one of the engineering functions. It is used to convert an octal number to a binary number. Syntax OCT2BIN(number, [places]) The OCT2BIN function has the following arguments: Argument Description number An octal number. places The number of digits to display. If omitted, the function will use the minimum number. Notes If the argument is not recognised as an octal number, or contains more than 10 characters, or the resulting binary number requires more digits than you specified, or the specified places number is less than or equal to 0, the function will return the #NUM! error. How to apply the OCT2BIN function. Examples The figure below displays the result returned by the OCT2BIN function." }, { "id": "Functions/oct2dec.htm", "title": "OCT2DEC Function", - "body": "The OCT2DEC function is one of the engineering functions. It is used to convert an octal number to a decimal number. The OCT2DEC function syntax is: OCT2DEC(number) where number is an octal number entered manually or included into the cell you make reference to. Note: if the argument is not recognised as an octal number, or contains more than 10 characters, the function will return the #NUM! error. To apply the OCT2DEC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the OCT2DEC function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The OCT2DEC function is one of the engineering functions. It is used to convert an octal number to a decimal number. Syntax OCT2DEC(number) The OCT2DEC function has the following argument: Argument Description number An octal number. Notes If the argument is not recognised as an octal number, or contains more than 10 characters, the function will return the #NUM! error. How to apply the OCT2DEC function. Examples The figure below displays the result returned by the OCT2DEC function." }, { "id": "Functions/oct2hex.htm", "title": "OCT2HEX Function", - "body": "The OCT2HEX function is one of the engineering functions. It is used to convert an octal number to a hexadecimal number. The OCT2HEX function syntax is: OCT2HEX(number [, num-hex-digits]) where number is an octal number entered manually or included into the cell you make reference to. num-hex-digits is the number of digits to display. If omitted, the function will use the minimum number. Note: if the argument is not recognised as an octal number, or contains more than 10 characters, or the resulting hexadecimal number requires more digits than you specified, or the specified num-hex-digits number is less than or equal to 0, the function will return the #NUM! error. To apply the OCT2HEX function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Engineering function group from the list, click the OCT2HEX function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The OCT2HEX function is one of the engineering functions. It is used to convert an octal number to a hexadecimal number. Syntax OCT2HEX(number, [places]) The OCT2HEX function has the following arguments: Argument Description number An octal number. places The number of digits to display. If omitted, the function will use the minimum number. Notes If the argument is not recognised as an octal number, or contains more than 10 characters, or the resulting hexadecimal number requires more digits than you specified, or the specified places number is less than or equal to 0, the function will return the #NUM! error. How to apply the OCT2HEX function. Examples The figure below displays the result returned by the OCT2HEX function." }, { "id": "Functions/odd.htm", "title": "ODD Function", - "body": "The ODD function is one of the math and trigonometry functions. It is used to round the number up to the nearest odd integer. The ODD function syntax is: ODD(x) where x is a number you wish to round up, a numeric value entered manually or included into the cell you make reference to. To apply the ODD function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the ODD function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ODD function is one of the math and trigonometry functions. It is used to round the number up to the nearest odd integer. Syntax ODD(number) The ODD function has the following argument: Argument Description number A number you wish to round up. Notes How to apply the ODD function. Examples The figure below displays the result returned by the ODD function." }, { "id": "Functions/oddfprice.htm", "title": "ODDFPRICE Function", - "body": "The ODDFPRICE function is one of the financial functions. It is 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). The ODDFPRICE function syntax is: ODDFPRICE(settlement, maturity, issue, first-coupon, rate, yld, redemption, frequency[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. issue is the issue date of the security. first-coupon is the first coupon date. This date must be after the settlement date but before the maturity date. rate is the security interest rate. yld is the annual yield of the security. redemption is the redemption value of the security, per $100 par value. frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the ODDFPRICE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the ODDFPRICE function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The ODDFPRICE function is one of the financial functions. It is 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). Syntax ODDFPRICE(settlement, maturity, issue, first_coupon, rate, yld, redemption, frequency, [basis]) The ODDFPRICE function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. issue The issue date of the security. first_coupon The first coupon date. This date must be after the settlement date but before the maturity date. rate The security interest rate. yld The annual yield of the security. redemption The redemption value of the security, per $100 par value. frequency The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the ODDFPRICE function. Examples The figure below displays the result returned by the ODDFPRICE function." }, { "id": "Functions/oddfyield.htm", "title": "ODDFYIELD Function", - "body": "The ODDFYIELD function is one of the financial functions. It is 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). The ODDFYIELD function syntax is: ODDFYIELD(settlement, maturity, issue, first-coupon, rate, pr, redemption, frequency[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. issue is the issue date of the security. first-coupon is the first coupon date. This date must be after the settlement date but before the maturity date. rate is the security interest rate. pr is the purchase price of the security, per $100 par value. redemption is the redemption value of the security, per $100 par value. frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the ODDFYIELD function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the ODDFYIELD function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The ODDFYIELD function is one of the financial functions. It is 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). Syntax ODDFYIELD(settlement, maturity, issue, first_coupon, rate, pr, redemption, frequency, [basis]) The ODDFYIELD function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. issue The issue date of the security. first_coupon The first coupon date. This date must be after the settlement date but before the maturity date. rate The security interest rate. pr The purchase price of the security, per $100 par value. redemption The redemption value of the security, per $100 par value. frequency The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the ODDFYIELD function. Examples The figure below displays the result returned by the ODDFYIELD function." }, { "id": "Functions/oddlprice.htm", "title": "ODDLPRICE Function", - "body": "The ODDLPRICE function is one of the financial functions. It is 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). The ODDLPRICE function syntax is: ODDLPRICE(settlement, maturity, last-interest, rate, yld, redemption, frequency[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. last-interest is the last coupon date. This date must be before the settlement date. rate is the security interest rate. yld is the annual yield of the security. redemption is the redemption value of the security, per $100 par value. frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the ODDLPRICE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the ODDLPRICE function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The ODDLPRICE function is one of the financial functions. It is 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). Syntax ODDLPRICE(settlement, maturity, last_interest, rate, yld, redemption, frequency, [basis]) The ODDLPRICE function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. last_interest The last coupon date. This date must be before the settlement date. rate The security interest rate. yld The annual yield of the security. redemption The redemption value of the security, per $100 par value. frequency The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the ODDLPRICE function. Examples The figure below displays the result returned by the ODDLPRICE function." }, { "id": "Functions/oddlyield.htm", "title": "ODDLYIELD Function", - "body": "The ODDLYIELD function is one of the financial functions. It is 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). The ODDLYIELD function syntax is: ODDLYIELD(settlement, maturity, last-interest, rate, pr, redemption, frequency[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. last-interest is the last coupon date. This date must be before the settlement date. rate is the security interest rate. pr is the purchase price of the security, per $100 par value. redemption is the redemption value of the security, per $100 par value. frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the ODDLYIELD function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the ODDLYIELD function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The ODDLYIELD function is one of the financial functions. It is 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). Syntax ODDLYIELD(settlement, maturity, last_interest, rate, pr, redemption, frequency, [basis]) The ODDLYIELD function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. last_interest The last coupon date. This date must be before the settlement date. rate The security interest rate. pr The purchase price of the security, per $100 par value. redemption The redemption value of the security, per $100 par value. frequency The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the ODDLYIELD function. Examples The figure below displays the result returned by the ODDLYIELD function." }, { "id": "Functions/offset.htm", "title": "OFFSET Function", - "body": "The OFFSET function is one of the lookup and reference functions. It is 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. The OFFSET function syntax is: OFFSET(reference, rows, cols[, [height] [, [width]]]) where reference is a reference to an initial cell or range of cells. rows is a number of rows, up or down, that you want the upper-left cell in the returned reference to refer to. Positive numbers mean the result will shift below the initial cell. Negative values mean it will shift above the initial cell. cols is a number of columns, to the left or right, that you want the upper-left cell in the returned reference to refer to. Positive numbers mean the result will shift to the right of the initial cell. Negative values mean it will shift to the left of the initial cell. height is a number of rows in the returned reference. The value must be a positive number. It's an optional argument. If it is omitted, the function will assume it to be equal to the initial range height. width is a number of columns in the returned reference. The value must be a positive number. It's an optional argument. If it is omitted, the function will assume it to be equal to the initial range width. To apply the OFFSET function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the OFFSET function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The OFFSET function is one of the lookup and reference functions. It is 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. Syntax OFFSET(reference, rows, cols, [height], [width]) The OFFSET function has the following arguments: Argument Description reference A reference to an initial cell or range of cells. rows A number of rows, up or down, that you want the upper-left cell in the returned reference to refer to. Positive numbers mean the result will shift below the initial cell. Negative values mean it will shift above the initial cell. cols A number of columns, to the left or right, that you want the upper-left cell in the returned reference to refer to. Positive numbers mean the result will shift to the right of the initial cell. Negative values mean it will shift to the left of the initial cell. height A number of rows in the returned reference. The value must be a positive number. It's an optional argument. If it is omitted, the function will assume it to be equal to the initial range height. width A number of columns in the returned reference. The value must be a positive number. It's an optional argument. If it is omitted, the function will assume it to be equal to the initial range width. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the OFFSET function. Examples The figure below displays the result returned by the OFFSET function." }, { "id": "Functions/or.htm", "title": "OR Function", - "body": "The OR function is one of the logical functions. It is used to check if the logical value you enter is TRUE or FALSE. The function returns FALSE if all the arguments are FALSE. The OR function syntax is: OR(logical1, logical2, ...) where logical1 is a value entered manually or included into the cell you make reference to. To apply the OR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Logical function group from the list, click the OR function, enter the required arguments separating them by commas, Note: you can enter up to 255 logical values. press the Enter button. The result will be displayed in the selected cell. The function returns TRUE if at least one of the argument is TRUE. For example: There are three arguments: logical1 = A1<10, logical2 = 34<10, logical3 = 50<10, where A1 is 12. All these logical expressions are FALSE. So the function returns FALSE. If we change the A1 value from 12 to 2, the function returns TRUE:" + "body": "The OR function is one of the logical functions. It is used to check if the logical value you enter is TRUE or FALSE. The function returns FALSE if all the arguments are FALSE. Syntax OR(logical1, [logical2], ...) The OR function has the following arguments: Argument Description logical1/2/n A condition that you want to check if it is TRUE or FALSE Notes You can enter up to 255 logical values. How to apply the OR function. The function returns TRUE if at least one of the argument is TRUE. Examples There are three arguments: logical1 = A1<10, logical2 = 34<10, logical3 = 50<10, where A1 is 12. All these logical expressions are FALSE. So the function returns FALSE. If we change the A1 value from 12 to 2, the function returns TRUE:" }, { "id": "Functions/pduration.htm", "title": "PDURATION Function", - "body": "The PDURATION function is one of the financial functions. It is used to calculate the number of periods required by an investment to reach a specified value. The PDURATION function syntax is: PDURATION(rate, pv, fv) where rate is the interest rate per period. pv is the present value of the investment. fv is the desired future value of the investment. Note: all arguments must be represented by positive numbers. The values can be entered manually or included into the cell you make reference to. To apply the PDURATION function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the PDURATION function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The PDURATION function is one of the financial functions. It is used to calculate the number of periods required by an investment to reach a specified value. Syntax PDURATION(rate, pv, fv) The PDURATION function has the following arguments: Argument Description rate The interest rate per period. pv The present value of the investment. fv The desired future value of the investment. Notes All arguments must be represented by positive numbers. How to apply the PDURATION function. Examples The figure below displays the result returned by the PDURATION function." }, { "id": "Functions/pearson.htm", "title": "PEARSON Function", - "body": "The PEARSON function is one of the statistical functions. It is used to return the Pearson product moment correlation coefficient. The PEARSON function syntax is: PEARSON(array-1, array-2) where array-1 and array-2 are the selected ranges of cells with the same number of elements. Note: if array-1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. To apply the PEARSON function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the PEARSON function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The PEARSON function is one of the statistical functions. It is used to return the Pearson product moment correlation coefficient. Syntax PEARSON(array1, array2) The PEARSON function has the following argument: Argument Description array1/2 The selected ranges of cells with the same number of elements. Notes If array1/2 contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. How to apply the PEARSON function. Examples The figure below displays the result returned by the PEARSON function." }, { "id": "Functions/percentile-exc.htm", "title": "PERCENTILE.EXC Function", - "body": "The PERCENTILE.EXC function is one of the statistical functions. It is used to return the k-th percentile of values in a range, where k is in the range 0..1, exclusive. The PERCENTILE.EXC function syntax is: PERCENTILE.EXC(array, k) where array is the selected range of cells for which you want to calculate the k-th percentile. k is the percentile value, a numeric value greater than 0 but less than 1, entered manually or included into the cell you make reference to. To apply the PERCENTILE.EXC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the PERCENTILE.EXC function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The PERCENTILE.EXC function is one of the statistical functions. It is used to return the k-th percentile of values in a range, where k is in the range 0..1, exclusive. Syntax PERCENTILE.EXC(array, k) The PERCENTILE.EXC function has the following arguments: Argument Description array The selected range of cells for which you want to calculate the k-th percentile. k The percentile value, a numeric value greater than 0 but less than 1. Notes How to apply the PERCENTILE.EXC function. Examples The figure below displays the result returned by the PERCENTILE.EXC function." }, { "id": "Functions/percentile-inc.htm", "title": "PERCENTILE.INC Function", - "body": "The PERCENTILE.INC function is one of the statistical functions. It is used to return the k-th percentile of values in a range, where k is in the range 0..1, inclusive. The PERCENTILE.INC function syntax is: PERCENTILE.INC(array, k) where array is the selected range of cells for which you want to calculate the k-th percentile. k is the percentile value, a numeric value greater than or equal to 0 but less than or equal to 1, entered manually or included into the cell you make reference to. To apply the PERCENTILE.INC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the PERCENTILE.INC function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The PERCENTILE.INC function is one of the statistical functions. It is used to return the k-th percentile of values in a range, where k is in the range 0..1, inclusive. Syntax PERCENTILE.INC(array, k) The PERCENTILE.INC function has the following arguments: Argument Description array The selected range of cells for which you want to calculate the k-th percentile. k The percentile value, a numeric value greater than or equal to 0 but less than or equal to 1. Notes How to apply the PERCENTILE.INC function. Examples The figure below displays the result returned by the PERCENTILE.INC function." }, { "id": "Functions/percentile.htm", "title": "PERCENTILE Function", - "body": "The PERCENTILE function is one of the statistical functions. It is used to analyze the range of data and return the k-th percentile. The PERCENTILE function syntax is: PERCENTILE(array, k) where array is the selected range of cells for which you want to calculate the k-th percentile. k is the percentile value, a numeric value greater than or equal to 0 but less than or equal to 1, entered manually or included into the cell you make reference to. To apply the PERCENTILE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the PERCENTILE function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The PERCENTILE function is one of the statistical functions. It is used to analyze the range of data and return the k-th percentile. Syntax PERCENTILE(array, k) The PERCENTILE function has the following arguments: Argument Description array The selected range of cells for which you want to calculate the k-th percentile. k The percentile value, a numeric value greater than or equal to 0 but less than or equal to 1. Notes How to apply the PERCENTILE function. Examples The figure below displays the result returned by the PERCENTILE function." }, { "id": "Functions/percentrank-exc.htm", "title": "PERCENTRANK.EXC Function", - "body": "The PERCENTRANK.EXC function is one of the statistical functions. It is used to return the rank of a value in a data set as a percentage (0..1, exclusive) of the data set. The PERCENTRANK.EXC function syntax is: PERCENTRANK.EXC(array, x[, significance]) where array is the selected range of cells containing the numeric values. x is the value you want to find the rank for, a numeric value entered manually or included into the cell you make reference to. significance is the number of significant digits to return the rank for. It is an optional argument. If it is omitted, the function will assume significance to be 3. To apply the PERCENTRANK.EXC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the PERCENTRANK.EXC function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The PERCENTRANK.EXC function is one of the statistical functions. It is used to return the rank of a value in a data set as a percentage (0..1, exclusive) of the data set. Syntax PERCENTRANK.EXC(array, x, [significance]) The PERCENTRANK.EXC function has the following arguments: Argument Description array The selected range of cells containing the numeric values. x The value you want to find the rank for, a numeric value. significance The number of significant digits to return the rank for. It is an optional argument. If it is omitted, the function will assume significance to be 3. Notes How to apply the PERCENTRANK.EXC function. Examples The figure below displays the result returned by the PERCENTRANK.EXC function." }, { "id": "Functions/percentrank-inc.htm", "title": "PERCENTRANK.INC Function", - "body": "The PERCENTRANK.INC function is one of the statistical functions. It is used to return the rank of a value in a data set as a percentage (0..1, inclusive) of the data set. The PERCENTRANK.INC function syntax is: PERCENTRANK.INC(array, x[, significance]) where array is the selected range of cells containing the numeric values. x is the value you want to find the rank for, a numeric value entered manually or included into the cell you make reference to. significance is the number of significant digits to return the rank for. It is an optional argument. If it is omitted, the function will assume significance to be 3. To apply the PERCENTRANK.INC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the PERCENTRANK.INC function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The PERCENTRANK.INC function is one of the statistical functions. It is used to return the rank of a value in a data set as a percentage (0..1, inclusive) of the data set. Syntax PERCENTRANK.INC(array, x, [significance]) The PERCENTRANK.INC function has the following arguments: Argument Description array The selected range of cells containing the numeric values. x The value you want to find the rank for, a numeric value. significance The number of significant digits to return the rank for. It is an optional argument. If it is omitted, the function will assume significance to be 3. Notes How to apply the PERCENTRANK.INC function. Examples The figure below displays the result returned by the PERCENTRANK.INC function." }, { "id": "Functions/percentrank.htm", "title": "PERCENTRANK Function", - "body": "The PERCENTRANK function is one of the statistical functions. It is used to return the rank of a value in a set of values as a percentage of the set. The PERCENTRANK function syntax is: PERCENTRANK(array, x[, significance]) where array is the selected range of cells containing the numeric values. x is the value you want to find the rank for, a numeric value entered manually or included into the cell you make reference to. significance is the number of significant digits to return the rank for. It is an optional argument. If it is omitted, the function will assume significance to be 3. To apply the PERCENTRANK function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the PERCENTRANK function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The PERCENTRANK function is one of the statistical functions. It is used to return the rank of a value in a set of values as a percentage of the set. Syntax PERCENTRANK(array, x, [significance]) The PERCENTRANK function has the following arguments: Argument Description array The selected range of cells containing the numeric values. x The value you want to find the rank for, a numeric value. significance The number of significant digits to return the rank for. It is an optional argument. If it is omitted, the function will assume significance to be 3. Notes How to apply the PERCENTRANK function. Examples The figure below displays the result returned by the PERCENTRANK function." }, { "id": "Functions/permut.htm", "title": "PERMUT Function", - "body": "The PERMUT function is one of the statistical functions. It is used to return the number of permutations for a specified number of items. The PERMUT function syntax is: PERMUT(number, number-chosen) where number is a number of items. number-chosen is a number of items in one permutation. The numeric values can be entered manually or included into the cell you make reference to. To apply the PERMUT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the PERMUT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The PERMUT function is one of the statistical functions. It is used to return the number of permutations for a specified number of items. Syntax PERMUT(number, number_chosen) The PERMUT function has the following arguments: Argument Description number A number of items. number_chosen A number of items in one permutation. Notes How to apply the PERMUT function. Examples The figure below displays the result returned by the PERMUT function." }, { "id": "Functions/permutationa.htm", "title": "PERMUTATIONA Function", - "body": "The PERMUTATIONA function is one of the statistical functions. It is used to return the number of permutations for a given number of objects (with repetitions) that can be selected from the total objects. The PERMUTATIONA function syntax is: PERMUTATIONA(number, number-chosen) where number is a number of items in the set, a numeric value greater than or equal to 0. number-chosen is a number of items in one permutation, a numeric value greater than or equal to 0 and less than number. The numeric values can be entered manually or included into the cell you make reference to. To apply the PERMUTATIONA function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the PERMUTATIONA function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The PERMUTATIONA function is one of the statistical functions. It is used to return the number of permutations for a given number of objects (with repetitions) that can be selected from the total objects. Syntax PERMUTATIONA(number, number_chosenn) The PERMUTATIONA function has the following arguments: Argument Description number A number of items in the set, a numeric value greater than or equal to 0. number_chosen A number of items in one permutation, a numeric value greater than or equal to 0 and less than number. Notes How to apply the PERMUTATIONA function. Examples The figure below displays the result returned by the PERMUTATIONA function." }, { "id": "Functions/phi.htm", "title": "PHI Function", - "body": "The PHI function is one of the statistical functions. It is used to return the value of the density function for a standard normal distribution. The PHI function syntax is: PHI(x) where x is the value you want to calculate the density function for, any numeric value. The numeric values can be entered manually or included into the cell you make reference to. To apply the PHI function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the PHI function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The PHI function is one of the statistical functions. It is used to return the value of the density function for a standard normal distribution. Syntax PHI(x) The PHI function has the following arguments: Argument Description x The value you want to calculate the density function for, any numeric value. Notes How to apply the PHI function. Examples The figure below displays the result returned by the PHI function." }, { "id": "Functions/pi.htm", "title": "PI Function", - "body": "The PI function is one of the math and trigonometry functions. The function returns the mathematical constant pi, equal to 3.14159265358979. It does not require any argument. The PI function syntax is: PI() To apply the PI function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the PI function, press the Enter button. The result will be displayed in the selected cell." + "body": "The PI function is one of the math and trigonometry functions. The function returns the mathematical constant pi, equal to 3.14159265358979. It does not require any argument. Syntax PI() Notes How to apply the PI function. Examples The figure below displays the result returned by the PI function." }, { "id": "Functions/pmt.htm", "title": "PMT Function", - "body": "The PMT function is one of the financial functions. It is used to calculate the payment amount for a loan based on a specified interest rate and a constant payment schedule. The PMT function syntax is: PMT(rate, nper, pv [, [fv] [,[type]]]) where rate is the interest rate. nper is the number of payments. pv is the present value. fv is the future value outstanding after all the payments are made. It is an optional argument. If it is omitted, the function will assume fv to be 0. type is the period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period. Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments. The numeric values can be entered manually or included into the cells you make reference to. To apply the PMT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the PMT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The PMT function is one of the financial functions. It is used to calculate the payment amount for a loan based on a specified interest rate and a constant payment schedule. Syntax PMT(rate, nper, pv, [fv], [type) The PMT function has the following arguments: Argument Description rate The interest rate. nper The number of payments. pv The present value. fv The future value outstanding after all the payments are made. It is an optional argument. If it is omitted, the function will assume fv to be 0. type A period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period. Notes Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments. How to apply the PMT function. Examples The figure below displays the result returned by the PMT function." }, { "id": "Functions/poisson-dist.htm", "title": "POISSON.DIST Function", - "body": "The POISSON.DIST function is one of the statistical functions. It is used to return the Poisson distribution; a common application of the Poisson distribution is predicting the number of events over a specific time, such as the number of cars arriving at a toll plaza in 1 minute. The POISSON.DIST function syntax is: POISSON.DIST(x, mean, cumulative) where x is the number of events, a numeric value greater than 0. mean is the expected numeric value greater than 0. cumulative is the form of the function, a logical value: TRUE or FALSE. If cumulative is TRUE, the function will return the cumulative Poisson probability; if FALSE, it will return the Poisson probability mass function. The values can be entered manually or included into the cell you make reference to. To apply the POISSON.DIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the POISSON.DIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The POISSON.DIST function is one of the statistical functions. It is used to return the Poisson distribution; a common application of the Poisson distribution is predicting the number of events over a specific time, such as the number of cars arriving at a toll plaza in 1 minute. Syntax POISSON.DIST(x, mean, cumulative) The POISSON.DIST function has the following arguments: Argument Description x The number of events, a numeric value greater than 0. mean The expected numeric value greater than 0. cumulative The form of the function, a logical value: TRUE or FALSE. If cumulative is TRUE, the function will return the cumulative Poisson probability; if FALSE, it will return the Poisson probability mass function. Notes How to apply the POISSON.DIST function. Examples The figure below displays the result returned by the POISSON.DIST function." }, { "id": "Functions/poisson.htm", "title": "POISSON Function", - "body": "The POISSON function is one of the statistical functions. It is used to return the Poisson distribution. The POISSON function syntax is: POISSON(x, mean, cumulative-flag) where x is the number of events, a numeric value greater than 0. mean is the expected numeric value greater than 0. cumulative-flag is the form of the function, a logical value: TRUE or FALSE. If cumulative-flag is TRUE, the function will return the cumulative Poisson probability; if FALSE, it will return the Poisson probability mass function. The values can be entered manually or included into the cell you make reference to. To apply the POISSON function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the POISSON function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The POISSON function is one of the statistical functions. It is used to return the Poisson distribution. Syntax POISSON(x, mean, cumulative) The POISSON function has the following arguments: Argument Description x The number of events, a numeric value greater than 0. mean The expected numeric value greater than 0. cumulative The form of the function, a logical value: TRUE or FALSE. If cumulative is TRUE, the function will return the cumulative Poisson probability; if FALSE, it will return the Poisson probability mass function. Notes How to apply the POISSON function. Examples The figure below displays the result returned by the POISSON function." }, { "id": "Functions/power.htm", "title": "POWER Function", - "body": "The POWER function is one of the math and trigonometry functions. It is used to return the result of a number raised to the desired power. The POWER function syntax is: POWER(x, y) where x is a number you wish to raise. y is a power you wish to raise the number to. The numeric values can be entered manually or included into the cell you make reference to. To apply the POWER function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the POWER function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The POWER function is one of the math and trigonometry functions. It is used to return the result of a number raised to the desired power. Syntax POWER(number, power) The POWER function has the following arguments: Argument Description number A number you wish to raise. power A power you wish to raise the number to. Notes How to apply the POWER function. Examples The figure below displays the result returned by the POWER function." }, { "id": "Functions/ppmt.htm", "title": "PPMT Function", - "body": "The PPMT function is one of the financial functions. It is used to calculate the principal payment for an investment based on a specified interest rate and a constant payment schedule. The PPMT function syntax is: PPMT(rate, per, nper, pv [, [fv] [,[type]]]) where rate is the interest rate for the investment. per is the period you want to find the principal payment for. The value must be from 1 to nper. nper is a number of payments. pv is a present value of the payments. fv is a future value (i.e. a cash balance remaining after the last payment is made). It is an optional argument. If it is omitted, the function will assume fv to be 0. type is a period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period. Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments. The numeric values can be entered manually or included into the cell you make reference to. To apply the PPMT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the PPMT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The PPMT function is one of the financial functions. It is used to calculate the principal payment for an investment based on a specified interest rate and a constant payment schedule. Syntax PPMT(rate, per, nper, pv, [fv] ,[type]) The PPMT function has the following arguments: Argument Description rate The interest rate for the investment. per The period you want to find the principal payment for. The value must be from 1 to nper. nper The number of payments. pv The present value of the payments. fv The future value (i.e. a cash balance remaining after the last payment is made). It is an optional argument. If it is omitted, the function will assume fv to be 0. type A period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period. Notes Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments. How to apply the PPMT function. Examples The figure below displays the result returned by the PPMT function." }, { "id": "Functions/price.htm", "title": "PRICE Function", - "body": "The PRICE function is one of the financial functions. It is used to calculate the price per $100 par value for a security that pays periodic interest. The PRICE function syntax is: PRICE(settlement, maturity, rate, yld, redemption, frequency[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. rate is the annual coupon rate of the security. yld is the annual yield of the security. redemption is the redemption value of the security, per $100 par value. frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the PRICE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the PRICE function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The PRICE function is one of the financial functions. It is used to calculate the price per $100 par value for a security that pays periodic interest. Syntax PRICE(settlement, maturity, rate, yld, redemption, frequency, [basis]) The PRICE function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. rate The annual coupon rate of the security. yld The annual yield of the security. redemption The redemption value of the security, per $100 par value. frequency The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the PRICE function. Examples The figure below displays the result returned by the PRICE function." }, { "id": "Functions/pricedisc.htm", "title": "PRICEDISC Function", - "body": "The PRICEDISC function is one of the financial functions. It is used to calculate the price per $100 par value for a discounted security. The PRICEDISC function syntax is: PRICEDISC(settlement, maturity, discount, redemption[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. discount is the security discount rate. redemption is the redemption value of the security, per $100 par value. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the PRICEDISC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the PRICEDISC function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The PRICEDISC function is one of the financial functions. It is used to calculate the price per $100 par value for a discounted security. Syntax PRICEDISC(settlement, maturity, discount, redemption, [basis]) The PRICEDISC function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. discount The security discount rate. redemption The redemption value of the security, per $100 par value. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the PRICEDISC function. Examples The figure below displays the result returned by the PRICEDISC function." }, { "id": "Functions/pricemat.htm", "title": "PRICEMAT Function", - "body": "The PRICEMAT function is one of the financial functions. It is used to calculate the price per $100 par value for a security that pays interest at maturity. The PRICEMAT function syntax is: PRICEMAT(settlement, maturity, issue, rate, yld[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. issue is the issue date of the security. rate is the security interest rate at the issue date. yld is the annual yield of the security. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the PRICEMAT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the PRICEMAT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The PRICEMAT function is one of the financial functions. It is used to calculate the price per $100 par value for a security that pays interest at maturity. Syntax PRICEMAT(settlement, maturity, issue, rate, yld, [basis]) The PRICEMAT function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. issue The issue date of the security. rate The security interest rate at the issue date. yld The annual yield of the security. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the PRICEMAT function. Examples The figure below displays the result returned by the PRICEMAT function." }, { "id": "Functions/prob.htm", "title": "PROB Function", - "body": "The PROB function is one of the statistical functions. It is used to return the probability that values in a range are between lower and upper limits. The PROB function syntax is: PROB(x-range, probability-range, lower-limit[, upper-limit]) where x-range is the selected range of cells containing numeric values you want to associate the probabilities with. probability-range is a set of probabilities associated with values in x-range, the selected range of cells containing numeric values greater than 0 but less than 1. The sum of the values in probability-range should be equal to 1, otherwise the function will return the #NUM! error. Note: x-range should contain the same number of elements as probability-range. lower-limit is the lower bound of the value, a numeric value entered manually or included into the cell you make reference to. upper-limit is the upper bound of the value, a numeric value entered manually or included into the cell you make reference to. It is an optional argument. If it is omitted, the function will return the probability equal to lower-limit. To apply the PROB function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the PROB function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The PROB function is one of the statistical functions. It is used to return the probability that values in a range are between lower and upper limits. Syntax PROB(x_range, prob_range, [lower_limit], [upper_limit]) The PROB function has the following arguments: Argument Description x_range The selected range of cells containing numeric values you want to associate the probabilities with. prob_range A set of probabilities associated with values in x_range, the selected range of cells containing numeric values greater than 0 but less than 1. The sum of the values in prob_range should be equal to 1, otherwise the function will return the #NUM! error. lower_limit The lower bound of the value, a numeric value entered manually or included into the cell you make reference to. upper_limit The upper bound of the value, a numeric value entered manually or included into the cell you make reference to. It is an optional argument. If it is omitted, the function will return the probability equal to lower_limit. Notes x_range should contain the same number of elements as prob_range. How to apply the PROB function. Examples The figure below displays the result returned by the PROB function." }, { "id": "Functions/product.htm", "title": "PRODUCT Function", - "body": "The PRODUCT function is one of the math and trigonometry functions. It is used to multiply all the numbers in the selected range of cells and return the product. The PRODUCT function syntax is: PRODUCT(argument-list) where argument-list is a set of numeric values entered manually or included into the cells you make reference to. To apply the PRODUCT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the PRODUCT function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The PRODUCT function is one of the math and trigonometry functions. It is used to multiply all the numbers in the selected range of cells and return the product. Syntax PRODUCT(number1, [number2], ...) The PRODUCT function has the following arguments: Argument Description number1/2/n Up to 255 numeric values that you want to multiply. Notes How to apply the PRODUCT function. Examples The figure below displays the result returned by the PRODUCT function." }, { "id": "Functions/proper.htm", "title": "PROPER Function", - "body": "The PROPER function is one of the text and data functions. Is used to convert the first character of each word to uppercase and all the remaining characters to lowercase. The PROPER function syntax is: PROPER(text) where text is data entered manually or included into the cell you make reference to. To apply the PROPER function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the PROPER function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The PROPER function is one of the text and data functions. Is used to convert the first character of each word to uppercase and all the remaining characters to lowercase. Syntax PROPER(text) The PROPER function has the following argument: Argument Description text The text that you want to partially capitalize. Notes How to apply the PROPER function. Examples The figure below displays the result returned by the PROPER function." }, { "id": "Functions/pv.htm", "title": "PV Function", - "body": "The PV function is one of the financial functions. It is used to calculate the present value of an investment based on a specified interest rate and a constant payment schedule. The PV function syntax is: PV(rate, nper, pmt [, [fv] [,[type]]]) where rate is the interest rate. nper is the number of payments. pmt is the payment amount. fv is the future value. It is an optional argument. If it is omitted, the function will assume fv to be 0. type is the period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period. Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments. The numeric values can be entered manually or included into the cell you make reference to. To apply the PV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the PV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The PV function is one of the financial functions. It is used to calculate the present value of an investment based on a specified interest rate and a constant payment schedule. Syntax PV(rate, nper, pmt, [fv], [type]) The PV function has the following arguments: Argument Description rate The interest rate. nper The number of payments. pmt The payment amount. fv The future value. It is an optional argument. If it is omitted, the function will assume fv to be 0. type A period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period. Notes Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments. How to apply the PV function. Examples The figure below displays the result returned by the PV function." }, { "id": "Functions/quartile-exc.htm", "title": "QUARTILE.EXC Function", - "body": "The QUARTILE.EXC function is one of the statistical functions. It is used to return the quartile of the data set, based on percentile values from 0..1, exclusive. The QUARTILE.EXC function syntax is: QUARTILE.EXC(array, quart) where array is the selected range of cells you want to analyse, quart is the quartile value that you wish to return, a numeric value entered manually or included into the cell you make reference to. The quartile value can be one of the following: Numeric value Quartile 1 First quartile (25th percentile) 2 Second quartile (50th percentile) 3 Third quartile (75th percentile) To apply the QUARTILE.EXC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the QUARTILE.EXC function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The QUARTILE.EXC function is one of the statistical functions. It is used to return the quartile of the data set, based on percentile values from 0..1, exclusive. Syntax QUARTILE.EXC(array, quart) The QUARTILE.EXC function has the following arguments: Argument Description array The selected range of cells you want to analyse. quart The quartile value that you wish to return, a numeric value. The possible values are listed in the table below. The quart argument can be one of the following: Numeric value Quartile 1 First quartile (25th percentile) 2 Second quartile (50th percentile) 3 Third quartile (75th percentile) Notes How to apply the QUARTILE.EXC function. Examples The figure below displays the result returned by the QUARTILE.EXC function." }, { "id": "Functions/quartile-inc.htm", "title": "QUARTILE.INC Function", - "body": "The QUARTILE.INC function is one of the statistical functions. It is used to return the quartile of the data set, based on percentile values from 0..1, inclusive. The QUARTILE.INC function syntax is: QUARTILE.INC(array, quart) where array is the selected range of cells you want to analyse, quart is the quartile value that you wish to return, a numeric value entered manually or included into the cell you make reference to. The quartile value can be one of the following: Numeric value Quartile 0 Smallest value in the range of data 1 First quartile (25th percentile) 2 Second quartile (50th percentile) 3 Third quartile (75th percentile) 4 Largest value in the data set To apply the QUARTILE.INC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the QUARTILE.INC function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The QUARTILE.INC function is one of the statistical functions. It is used to return the quartile of the data set, based on percentile values from 0..1, inclusive. Syntax QUARTILE.INC(array, quart) The QUARTILE.INC function has the following arguments: Argument Description array The selected range of cells you want to analyse. quart The quartile value that you wish to return, a numeric value. The possible values are listed in the table below. The quart argument can be one of the following: Numeric value Quartile 0 Smallest value in the range of data 1 First quartile (25th percentile) 2 Second quartile (50th percentile) 3 Third quartile (75th percentile) 4 Largest value in the data set Notes How to apply the QUARTILE.INC function. Examples The figure below displays the result returned by the QUARTILE.INC function." }, { "id": "Functions/quartile.htm", "title": "QUARTILE Function", - "body": "The QUARTILE function is one of the statistical functions. It is used to analyze the range of data and return the quartile. The QUARTILE function syntax is: QUARTILE(array , result-category) where array is the selected range of cells you want to analyse, result-category is the quartile value that you wish to return, a numeric value entered manually or included into the cell you make reference to. The quartile value can be one of the following: Numeric value Quartile 0 Smallest value in the range of data 1 First quartile (25th percentile) 2 Second quartile (50th percentile) 3 Third quartile (75th percentile) 4 Largest value in the data set To apply the QUARTILE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the QUARTILE function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The QUARTILE function is one of the statistical functions. It is used to analyze the range of data and return the quartile. Syntax QUARTILE(array, quart) The QUARTILE function has the following arguments: Argument Description array The selected range of cells you want to analyse. quart The quartile value that you wish to return, a numeric value. The possible values are listed in the table below. The quart argument can be one of the following: Numeric value Quartile 0 Smallest value in the range of data 1 First quartile (25th percentile) 2 Second quartile (50th percentile) 3 Third quartile (75th percentile) 4 Largest value in the data set Notes How to apply the QUARTILE function. Examples The figure below displays the result returned by the QUARTILE function." }, { "id": "Functions/quotient.htm", "title": "QUOTIENT Function", - "body": "The QUOTIENT function is one of the math and trigonometry functions. It is used to return the integer portion of a division. The QUOTIENT function syntax is: QUOTIENT(dividend, divisor) where dividend and divisor are numeric values entered manually or included into the cells you make reference to. To apply the QUOTIENT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the QUOTIENT function, enter the required arguments separated by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The QUOTIENT function is one of the math and trigonometry functions. It is used to return the integer portion of a division. Syntax QUOTIENT(numerator, denominator) The QUOTIENT function has the following argument: Argument Description numerator The dividend, a numeric value. denominator The divisor, a numeric value. Notes How to apply the QUOTIENT function. Examples The figure below displays the result returned by the QUOTIENT function." }, { "id": "Functions/radians.htm", "title": "RADIANS Function", - "body": "The RADIANS function is one of the math and trigonometry functions. It is used to convert degrees into radians. The RADIANS function syntax is: RADIANS(angle) where angle is a numeric value (degrees) entered manually or included into the cell you make reference to. To apply the RADIANS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the RADIANS function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The RADIANS function is one of the math and trigonometry functions. It is used to convert degrees into radians. Syntax RADIANS(angle) The RADIANS function has the following argument: Argument Description angle A numeric value (degrees). Notes How to apply the RADIANS function. Examples The figure below displays the result returned by the RADIANS function." }, { "id": "Functions/rand.htm", "title": "RAND Function", - "body": "The RAND function is one of the 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. The RAND function syntax is: RAND() To apply the RAND function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the RAND function, press the Enter button. The result will be displayed in the selected cell." + "body": "The RAND function is one of the 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. Syntax RAND() Notes How to apply the RAND function. Examples The figure below displays the result returned by the RAND function. To generate a random real number between a and b, use the following formula replacing a and b with your own values: =RAND()*(b-a)+a" }, { "id": "Functions/randarray.htm", "title": "RANDARRAY Function", - "body": "The RANDARRAY function is one of the math and trigonometry functions. It is used to return an array of random numbers and can be configured to fill a certain number of rows and columns, set a range for values, or return whole/decimal numbers. The RANDARRAY function syntax is: RANDARRAY([rows],[columns],[min],[max],[whole_number]) where rows is an optional argument indicating the number of rows to be returned. If the argument is not given, the function will return a value between 0 and 1. columns is an optional argument indicating the number of columns to be returned. If the argument is not given, the function will return a value between 0 and 1. min is an optional argument indicating the minimum number to be returned. If the argument is not given, the function will default to 0 and 1. max is an optional argument indicating the maximum number to be returned. If the argument is not given, the function will default to 0 and 1. whole_number is an optional TRUE or FALSE argument. If TRUE, the function will return a whole number; FALSE will return a decimal one. To apply the RANDARRAY function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the RANDARRAY function, enter the arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The RANDARRAY function is one of the math and trigonometry functions. It is used to return an array of random numbers and can be configured to fill a certain number of rows and columns, set a range for values, or return whole/decimal numbers. Syntax RANDARRAY([rows], [columns], [min], [max], [whole_number]) The RANDARRAY function has the following arguments: Argument Description rows An optional argument indicating the number of rows to be returned. If the argument is not given, the function will return a value between 0 and 1. columns An optional argument indicating the number of columns to be returned. If the argument is not given, the function will return a value between 0 and 1. min An optional argument indicating the minimum number to be returned. If the argument is not given, the function will default to 0 and 1. max An optional argument indicating the maximum number to be returned. If the argument is not given, the function will default to 0 and 1. whole_number An optional TRUE or FALSE argument. If TRUE, the function will return a whole number; FALSE will return a decimal one. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the RANDARRAY function. Examples The figure below displays the result returned by the RANDARRAY function." }, { "id": "Functions/randbetween.htm", "title": "RANDBETWEEN Function", - "body": "The RANDBETWEEN function is one of the 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. The RANDBETWEEN function syntax is: RANDBETWEEN(lower-bound, upper-bound) where lower-bound is the smallest integer value. upper-bound is the largest integer value. The numeric values can be entered manually or included into the cells you make reference to. Note: if lower-bound is a greater than upper-bound, the function will return #NUM! error. To apply the RANDBETWEEN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the RANDBETWEEN function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The RANDBETWEEN function is one of the 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. Syntax RANDBETWEEN(bottom, top) The RANDBETWEEN function has the following arguments: Argument Description bottom The smallest integer value. top The largest integer valuew. Notes If bottom is a greater than top, the function will return #NUM! error. How to apply the RANDBETWEEN function. Examples The figure below displays the result returned by the RANDBETWEEN function." }, { "id": "Functions/rank-avg.htm", "title": "RANK.AVG Function", - "body": "The RANK.AVG function is one of the statistical functions. It is used to return the rank of a number in a list of numbers. The rank of a number is its size relative to other values in a list (if you were to sort the list, the rank of the number would be its position). If more than one value has the same rank, the average rank is returned. The RANK.AVG function syntax is: RANK.AVG(number, ref[, order]) where number is the value you want to find the rank for. ref is the selected range of cells containing the specified number. order is the numeric value that specifyes how to order the ref array. It is an optional argument. If it is 0 or omitted, the function ranks number as if ref were a list sorted in descending order. Аny other numeric value is treated as the value 1 and the function ranks number as if ref were a list sorted in ascending order. To apply the RANK.AVG function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the RANK.AVG function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The RANK.AVG function is one of the statistical functions. It is used to return the rank of a number in a list of numbers. The rank of a number is its size relative to other values in a list (if you were to sort the list, the rank of the number would be its position). If more than one value has the same rank, the average rank is returned. Syntax RANK.AVG(number, ref, [order]) The RANK.AVG function has the following arguments: Argument Description number The value you want to find the rank for. ref The selected range of cells containing the specified number. order The numeric value that specifyes how to order the ref array. It is an optional argument. If it is 0 or omitted, the function ranks number as if ref were a list sorted in descending order. Any other numeric value is treated as the value 1 and the function ranks number as if ref were a list sorted in ascending order. Notes How to apply the RANK.AVG function. Examples The figure below displays the result returned by the RANK.AVG function." }, { "id": "Functions/rank-eq.htm", "title": "RANK.EQ Function", - "body": "The RANK.EQ function is one of the statistical functions. It is used to return the rank of a number in a list of numbers. The rank of a number is its size relative to other values in a list (if you were to sort the list, the rank of the number would be its position). If more than one value has the same rank, the top rank of that set of values is returned. The RANK.EQ function syntax is: RANK.EQ(number, ref[, order]) where number is the value you want to find the rank for. ref is the selected range of cells containing the specified number. order is the numeric value that specifyes how to order the ref array. It is an optional argument. If it is 0 or omitted, the function ranks number as if ref were a list sorted in descending order. Аny other numeric value is treated as the value 1 and the function ranks number as if ref were a list sorted in ascending order. To apply the RANK.EQ function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the RANK.EQ function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The RANK.EQ function is one of the statistical functions. It is used to return the rank of a number in a list of numbers. The rank of a number is its size relative to other values in a list (if you were to sort the list, the rank of the number would be its position). If more than one value has the same rank, the top rank of that set of values is returned. Syntax RANK.EQ(number, ref, [order]) The RANK.EQ function has the following arguments: Argument Description number The value you want to find the rank for. ref The selected range of cells containing the specified number. order The numeric value that specifyes how to order the ref array. It is an optional argument. If it is 0 or omitted, the function ranks number as if ref were a list sorted in descending order. Any other numeric value is treated as the value 1 and the function ranks number as if ref were a list sorted in ascending order. Notes How to apply the RANK.EQ function. Examples The figure below displays the result returned by the RANK.EQ function." }, { "id": "Functions/rank.htm", "title": "RANK Function", - "body": "The RANK function is one of the statistical functions. It is used to return the rank of a number in a list of numbers. The rank of a number is its size relative to other values in a list (if you were to sort the list, the rank of the number would be its position). The RANK function syntax is: RANK(number, ref[, order]) where number is the value you want to find the rank for. ref is the selected range of cells containing the specified number. order is the numeric value that specifyes how to order the ref array. It is an optional argument. If it is 0 or omitted, the function ranks number as if ref were a list sorted in descending order. Аny other numeric value is treated as the value 1 and the function ranks number as if ref were a list sorted in ascending order. To apply the RANK function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the RANK function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The RANK function is one of the statistical functions. It is used to return the rank of a number in a list of numbers. The rank of a number is its size relative to other values in a list (if you were to sort the list, the rank of the number would be its position). Syntax RANK(number, ref, [order]) The RANK function has the following arguments: Argument Description number The value you want to find the rank for. ref The selected range of cells containing the specified number. order The numeric value that specifyes how to order the ref array. It is an optional argument. If it is 0 or omitted, the function ranks number as if ref were a list sorted in descending order. Any other numeric value is treated as the value 1 and the function ranks number as if ref were a list sorted in ascending order. Notes How to apply the RANK function. Examples The figure below displays the result returned by the RANK function." }, { "id": "Functions/rate.htm", "title": "RATE Function", - "body": "The RATE function is one of the financial functions. It is used to calculate the interest rate for an investment based on a constant payment schedule. The RATE function syntax is: RATE(nper, pmt, pv [, [[fv] [,[[type] [,[guess]]]]]]) where nper is a number of payments. pmt is a payment amount. pv is a present value of the payments. fv is a future value (i.e. a cash balance remaining after the last payment is made). It is an optional argument. If it is omitted, the function will assume fv to be 0. type is a period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period. guess is an estimate at what the rate will be. It is an optional argument. If it is omitted, the function will assume guess to be 10%. Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for guess and nper must be consistent: use N%/12 for guess and N*12 for nper in case of monthly payments, N%/4 for guess and N*4 for nper in case of quarterly payments, N% for guess and N for nper in case of annual payments. The numeric values can be entered manually or included into the cell you make reference to. To apply the RATE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the RATE function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The RATE function is one of the financial functions. It is used to calculate the interest rate for an investment based on a constant payment schedule. Syntax RATE(nper, pmt, pv, [fv], [type], [guess]) The RATE function has the following arguments: Argument Description nper The number of payments. pmt The payment amount. pv A present value of the payments. fv A future value (i.e. a cash balance remaining after the last payment is made). It is an optional argument. If it is omitted, the function will assume fv to be 0. type A period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period. guess An estimate at what the rate will be. It is an optional argument. If it is omitted, the function will assume guess to be 10%. Notes Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for guess and nper must be consistent: use N%/12 for guess and N*12 for nper in case of monthly payments, N%/4 for guess and N*4 for nper in case of quarterly payments, N% for guess and N for nper in case of annual payments. How to apply the RATE function. Examples The figure below displays the result returned by the RATE function." }, { "id": "Functions/received.htm", "title": "RECEIVED Function", - "body": "The RECEIVED function is one of the financial functions. It is used to calculate the amount received at maturity for a fully invested security. The RECEIVED function syntax is: RECEIVED(settlement, maturity, investment, discount[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. investment is the amount paid for the security. discount is the security discount rate. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The numeric values can be entered manually or included into the cell you make reference to. To apply the RECEIVED function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the RECEIVED function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The RECEIVED function is one of the financial functions. It is used to calculate the amount received at maturity for a fully invested security. Syntax RECEIVED(settlement, maturity, investment, discount, [basis]) The RECEIVED function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. investment The amount paid for the security. discount The security discount rate. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the RECEIVED function. Examples The figure below displays the result returned by the RECEIVED function." }, { "id": "Functions/replace.htm", "title": "REPLACE/REPLACEB Function", - "body": "The REPLACE/REPLACEB function is one of the text and data functions. Is 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. The REPLACE function is intended for languages that use the single-byte character set (SBCS), while REPLACEB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. The REPLACE/REPLACEB function syntax is: REPLACE(string-1, start-pos, number-chars, string-2) REPLACEB(string-1, start-pos, number-chars, string-2) where string-1 is the original text to be replaced. start-pos is the beginning of the set to be replaced. number-chars is the number of characters to be replaced. string-2 is the new text. The values can be entered manually or included into the cells you make reference to. To apply the REPLACE/REPLACEB function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the REPLACE/REPLACEB function, enter the required arguments separating them by comma, Note: the REPLACE function is case-sensitive. press the Enter button. The result will be displayed in the selected cell." + "body": "The REPLACE/REPLACEB function is one of the text and data functions. Is 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. The REPLACE function is intended for languages that use the single-byte character set (SBCS), while REPLACEB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. Syntax REPLACE(old_text, start_num, num_chars, new_text) The REPLACE function has the following arguments: Argument Description old_text The original text to be replaced. start_num The beginning of the set to be replaced. num_chars The number of characters to be replaced. new_text The new text. REPLACEB(old_text, start_num, num_bytes, new_text) The REPLACEB function has the following arguments: Argument Description old_text The original text to be replaced. start_num The beginning of the set to be replaced. num_bytes The number of characters to be replaced, based on bytes. new_text The new text. Notes The REPLACE function is case-sensitive. How to apply the REPLACE/REPLACEB function. Examples The figure below displays the result returned by the REPLACE function." }, { "id": "Functions/replaceb.htm", "title": "REPLACE/REPLACEB Function", - "body": "The REPLACE/REPLACEB function is one of the text and data functions. Is 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. The REPLACE function is intended for languages that use the single-byte character set (SBCS), while REPLACEB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. The REPLACE/REPLACEB function syntax is: REPLACE(string-1, start-pos, number-chars, string-2) REPLACEB(string-1, start-pos, number-chars, string-2) where string-1 is the original text to be replaced. start-pos is the beginning of the set to be replaced. number-chars is the number of characters to be replaced. string-2 is the new text. The values can be entered manually or included into the cells you make reference to. To apply the REPLACE/REPLACEB function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the REPLACE/REPLACEB function, enter the required arguments separating them by comma, Note: the REPLACE function is case-sensitive. press the Enter button. The result will be displayed in the selected cell." + "body": "The REPLACE/REPLACEB function is one of the text and data functions. Is 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. The REPLACE function is intended for languages that use the single-byte character set (SBCS), while REPLACEB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. Syntax REPLACE(old_text, start_num, num_chars, new_text) The REPLACE function has the following arguments: Argument Description old_text The original text to be replaced. start_num The beginning of the set to be replaced. num_chars The number of characters to be replaced. new_text The new text. REPLACEB(old_text, start_num, num_bytes, new_text) The REPLACEB function has the following arguments: Argument Description old_text The original text to be replaced. start_num The beginning of the set to be replaced. num_bytes The number of characters to be replaced, based on bytes. new_text The new text. Notes The REPLACE function is case-sensitive. Examples The figure below displays the result returned by the REPLACE function." }, { "id": "Functions/rept.htm", "title": "REPT Function", - "body": "The REPT function is one of the text and data functions. Is used to repeat the data in the selected cell as many time as you wish. The REPT function syntax is: REPT(text, number_of_times) where text is data to be repeated. number_of_times is a number of times you wish to repeat the data you entered. The values can be entered manually or included into the cell you make reference to. To apply the REPT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the REPT function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The REPT function is one of the text and data functions. Is used to repeat the data in the selected cell as many time as you wish. Syntax REPT(text, number_time) The REPT function has the following arguments: Argument Description text The data to be repeated. number_time A number of times you wish to repeat the data you entered. Notes How to apply the REPT function. Examples The figure below displays the result returned by the REPT function." }, { "id": "Functions/right.htm", "title": "RIGHT/RIGHTB Function", - "body": "The RIGHT/RIGHTB function is one of the text and data functions. Is used to extract a substring from a string starting from the right-most character, based on the specified number of characters. The RIGHT function is intended for languages that use the single-byte character set (SBCS), while RIGHTB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. The RIGHT/RIGHTB function syntax is: RIGHT(string [, number-chars]) RIGHTB(string [, number-chars]) where string is a string you need to extract the substring from, number-chars is a number of the substring characters. It is an optional argument. If it is omitted, the funcion will assume it to be 1. The data can be entered manually or included into the cells you make reference to. To apply the RIGHT/RIGHTB function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the RIGHT/RIGHTB function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The RIGHT/RIGHTB function is one of the text and data functions. Is used to extract a substring from a string starting from the right-most character, based on the specified number of characters. The RIGHT function is intended for languages that use the single-byte character set (SBCS), while RIGHTB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. Syntax RIGHT(text, [num_chars]) The RIGHT function has the following arguments: Argument Description text A string you need to extract the substring from. num_chars A number of the substring characters. It must be greater than or equal to 0. It is an optional argument. If it is omitted, the function will assume it to be 1. RIGHTB(text, [num_bytes]) The RIGHTB function has the following arguments: Argument Description text A string you need to extract the substring from. num_bytes A number of the substring characters, based on bytes. It is an optional argument. Notes How to apply the RIGHT/RIGHTB function. Examples The figure below displays the result returned by the RIGHT function." }, { "id": "Functions/rightb.htm", "title": "RIGHT/RIGHTB Function", - "body": "The RIGHT/RIGHTB function is one of the text and data functions. Is used to extract a substring from a string starting from the right-most character, based on the specified number of characters. The RIGHT function is intended for languages that use the single-byte character set (SBCS), while RIGHTB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. The RIGHT/RIGHTB function syntax is: RIGHT(string [, number-chars]) RIGHTB(string [, number-chars]) where string is a string you need to extract the substring from, number-chars is a number of the substring characters. It is an optional argument. If it is omitted, the funcion will assume it to be 1. The data can be entered manually or included into the cells you make reference to. To apply the RIGHT/RIGHTB function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the RIGHT/RIGHTB function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The RIGHT/RIGHTB function is one of the text and data functions. Is used to extract a substring from a string starting from the right-most character, based on the specified number of characters. The RIGHT function is intended for languages that use the single-byte character set (SBCS), while RIGHTB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. Syntax RIGHT(text, [num_chars]) The RIGHT function has the following arguments: Argument Description text A string you need to extract the substring from. num_chars A number of the substring characters. It must be greater than or equal to 0. It is an optional argument. If it is omitted, the function will assume it to be 1. RIGHTB(text, [num_bytes]) The RIGHTB function has the following arguments: Argument Description text A string you need to extract the substring from. num_bytes A number of the substring characters, based on bytes. It is an optional argument. Notes How to apply the RIGHT/RIGHTB function. Examples The figure below displays the result returned by the RIGHT function." }, { "id": "Functions/roman.htm", "title": "ROMAN Function", - "body": "The ROMAN function is one of the math and trigonometry functions. The function is used to convert a number to a roman numeral. The ROMAN function syntax is: ROMAN(number, [form]) where number is a numeric value greater than or equal to 1 and less than 3999 entered manually or included into the cell you make reference to. form is a roman numeral type that can be one of the following: Value Type 0 Classic 1 More concise 2 More concise 3 More concise 4 Simplified TRUE Classic FALSE Simplified To apply the ROMAN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the ROMAN function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The ROMAN function is one of the math and trigonometry functions. The function is used to convert a number to a roman numeral. Syntax ROMAN(number, [form]) The ROMAN function has the following arguments: Argument Description number A numeric value greater than or equal to 1 and less than 3999. form A roman numeral type. It is an optional argument. The possible values are listed in the table below. The form argument can be one of the following: Value Type 0 Classic 1 More concise 2 More concise 3 More concise 4 Simplified TRUE Classic FALSE Simplified Notes How to apply the ROMAN function. Examples The figure below displays the result returned by the ROMAN function." }, { "id": "Functions/round.htm", "title": "ROUND Function", - "body": "The ROUND function is one of the math and trigonometry functions. It is used to round the number to the desired number of digits. The ROUND function syntax is: ROUND(x, num_digits) where x is the number you wish to round. num_digits is the number of digits you wish to round to. The numeric values can be entered manually or included into the cells you make reference to. To apply the ROUND function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the ROUND function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The ROUND function is one of the math and trigonometry functions. It is used to round the number to the desired number of digits. Syntax ROUND(number, num_digits) The ROUND function has the following arguments: Argument Description number The number you wish to round. num_digits The number of digits you wish to round to. Notes How to apply the ROUND function. Examples The figure below displays the result returned by the ROUND function." }, { "id": "Functions/rounddown.htm", "title": "ROUNDDOWN Function", - "body": "The ROUNDDOWN function is one of the math and trigonometry functions. It is used to round the number down to the desired number of digits. The ROUNDDOWN function syntax is: ROUNDDOWN(x, num_digits) where x is the number you wish to round down. num_digits is the number of digits you wish to round down to. The numeric values can be entered manually or included into the cells you make reference to. To apply the ROUNDDOWN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the ROUNDDOWN function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The ROUNDDOWN function is one of the math and trigonometry functions. It is used to round the number down to the desired number of digits. Syntax ROUNDDOWN(number, num_digits) The ROUNDDOWN function has the following arguments: Argument Description number The number you wish to round down. num_digits The number of digits you wish to round down to. Notes How to apply the ROUNDDOWN function. Examples The figure below displays the result returned by the ROUNDDOWN function." }, { "id": "Functions/roundup.htm", "title": "ROUNDUP Function", - "body": "The ROUNDUP function is one of the math and trigonometry functions. It is used to round the number up to the desired number of digits. The ROUNDUP function syntax is: ROUNDUP(x, num_digits) where x is the number you wish to round up. num_digits is the number of digits you wish to round up to. The numeric values can be entered manually or included into the cells you make reference to. To apply the ROUNDUP function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the ROUNDUP function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The ROUNDUP function is one of the math and trigonometry functions. It is used to round the number up to the desired number of digits. Syntax ROUNDUP(number, num_digits) The ROUNDUP function has the following arguments: Argument Description number The number you wish to round up. num_digits The number of digits you wish to round up to. Notes How to apply the ROUNDUP function. Examples The figure below displays the result returned by the ROUNDUP function." }, { "id": "Functions/row.htm", "title": "ROW Function", - "body": "The ROW function is one of the lookup and reference functions. It is used to return the row number of a cell reference. The ROW function syntax is: ROW([reference]) where reference is a reference to a cell. Note: reference is an optional argument. If the it is omitted, the function will return the row number of a cell in which the ROW function is entered. To apply the ROW function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the ROW function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ROW function is one of the lookup and reference functions. It is used to return the row number of a cell reference. Syntax ROW([reference]) The ROW function has the following argument: Argument Description reference A reference to a cell. Notes reference is an optional argument. If the it is omitted, the function will return the row number of a cell in which the ROW function is entered. Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the ROW function. Examples The figure below displays the result returned by the ROW function." }, { "id": "Functions/rows.htm", "title": "ROWS Function", - "body": "The ROWS function is one of the lookup and reference functions. It is used to return the number of rows in a cell reference. The ROWS function syntax is: ROWS(array) where array is a reference to a range of cells. To apply the ROWS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the ROWS function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The ROWS function is one of the lookup and reference functions. It is used to return the number of rows in a cell reference. Syntax ROWS(array) The ROWS function has the following argument: Argument Description array A reference to a range of cells. Notes How to apply the ROWS function. Examples The figure below displays the result returned by the ROWS function." }, { "id": "Functions/rri.htm", "title": "RRI Function", - "body": "The RRI function is one of the financial functions. It is used to return an equivalent interest rate for the growth of an investment. The RRI function syntax is: RRI(nper, pv, fv) where nper is a number of periods for the investment. pv is a present value of the investment. fv is a future value of the investment. The numeric values can be entered manually or included into the cell you make reference to. To apply the RRI function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the RRI function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The RRI function is one of the financial functions. It is used to return an equivalent interest rate for the growth of an investment. Syntax RRI(nper, pv, fv) The RRI function has the following arguments: Argument Description nper A number of periods for the investment. pv A present value of the investment. fv A future value of the investment. Notes How to apply the RRI function. Examples The figure below displays the result returned by the RRI function." }, { "id": "Functions/rsq.htm", "title": "RSQ Function", - "body": "The RSQ function is one of the statistical functions. It is used to return the square of the Pearson product moment correlation coefficient. The RSQ function syntax is: RSQ(array-1 , array-2) where array-1 and array-2 are the selected ranges of cells with the same number of elements. Note: if array-1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. To apply the RSQ function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the RSQ function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The RSQ function is one of the statistical functions. It is used to return the square of the Pearson product moment correlation coefficient. Syntax RSQ(known_y's, known_x's) The RSQ function has the following arguments: Argument Description known_y's The dependent data range. known_x's The independent data range with the same number of elements as known_y's contains. Notes If known_y's or known_x's contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. How to apply the RSQ function. Examples The figure below displays the result returned by the RSQ function." }, { "id": "Functions/search.htm", "title": "SEARCH/SEARCHB Function", - "body": "The SEARCH/SEARCHB function is one of the text and data functions. Is used to return the location of the specified substring in a string. The SEARCH function is intended for languages that use the single-byte character set (SBCS), while SEARCHB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. The SEARCH/SEARCHB function syntax is: SEARCH(string-1, string-2 [,start-pos]) SEARCHB(string-1, string-2 [,start-pos]) where string-1 is the substring to find. string-2 is the string to search within. start-pos is the position to start searching from. It is an optional argument. If it is omitted, the function will perform the search from the beginning of string-2. The data can be entered manually or included into the cells you make reference to. Note: if the function does not find the matches, it will return a #VALUE! error. To apply the SEARCH/SEARCHB function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the SEARCH/SEARCHB function, enter the required arguments separating them by comma, Note: the SEARCH/SEARCHB function is NOT case-sensitive. press the Enter button. The result will be displayed in the selected cell." + "body": "The SEARCH/SEARCHB function is one of the text and data functions. Is used to return the location of the specified substring in a string. The SEARCH function is intended for languages that use the single-byte character set (SBCS), while SEARCHB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. Syntax SEARCH(find_text, within_text, start_num) SEARCHB(find_text, within_text, start_num) The SEARCH/SEARCHB function has the following arguments: Argument Description find_text The substring to find. within_text The string to search within. start_num The position to start searching from. It is an optional argument. If it is omitted, the function will perform the search from the beginning of within_text. Notes The SEARCH/SEARCHB function is NOT case-sensitive. If the function does not find the matches, it will return a #VALUE! error. How to apply the SEARCH/SEARCHB function. Examples The figure below displays the result returned by the SEARCH function." }, { "id": "Functions/searchb.htm", "title": "SEARCH/SEARCHB Function", - "body": "The SEARCH/SEARCHB function is one of the text and data functions. Is used to return the location of the specified substring in a string. The SEARCH function is intended for languages that use the single-byte character set (SBCS), while SEARCHB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. The SEARCH/SEARCHB function syntax is: SEARCH(string-1, string-2 [,start-pos]) SEARCHB(string-1, string-2 [,start-pos]) where string-1 is the substring to find. string-2 is the string to search within. start-pos is the position to start searching from. It is an optional argument. If it is omitted, the function will perform the search from the beginning of string-2. The data can be entered manually or included into the cells you make reference to. Note: if the function does not find the matches, it will return a #VALUE! error. To apply the SEARCH/SEARCHB function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the SEARCH/SEARCHB function, enter the required arguments separating them by comma, Note: the SEARCH/SEARCHB function is NOT case-sensitive. press the Enter button. The result will be displayed in the selected cell." + "body": "The SEARCH/SEARCHB function is one of the text and data functions. Is used to return the location of the specified substring in a string. The SEARCH function is intended for languages that use the single-byte character set (SBCS), while SEARCHB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. Syntax SEARCH(find_text, within_text, start_num) SEARCHB(find_text, within_text, start_num) The SEARCH/SEARCHB function has the following arguments: Argument Description find_text The substring to find. within_text The string to search within. start_num The position to start searching from. It is an optional argument. If it is omitted, the function will perform the search from the beginning of within_text. Notes The SEARCH/SEARCHB function is NOT case-sensitive. If the function does not find the matches, it will return a #VALUE! error. How to apply the SEARCH/SEARCHB function. Examples The figure below displays the result returned by the SEARCH function." }, { "id": "Functions/sec.htm", "title": "SEC Function", - "body": "The SEC function is one of the math and trigonometry functions. It is used to return the secant of an angle specified in radians. The SEC function syntax is: SEC(x) where x is the angle in radians that you wish to calculate the secant of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27. To apply the SEC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the SEC function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The SEC function is one of the math and trigonometry functions. It is used to return the secant of an angle specified in radians. Syntax SEC(number) The SEC function has the following argument: Argument Description number The angle in radians that you wish to calculate the secant of. Its absolute value must be less than 2^27. Notes How to apply the SEC function. Examples The figure below displays the result returned by the SEC function." }, { "id": "Functions/sech.htm", "title": "SECH Function", - "body": "The SECH function is one of the math and trigonometry functions. It is used to return the hyperbolic secant of an angle specified in radians. The SECH function syntax is: SECH(x) where x is the angle in radians that you wish to calculate the hyperbolic secant of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27. To apply the SECH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the SECH function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The SECH function is one of the math and trigonometry functions. It is used to return the hyperbolic secant of an angle specified in radians. Syntax SECH(number) The SECH function has the following argument: Argument Description number The angle in radians that you wish to calculate the hyperbolic secant of. Its absolute value must be less than 2^27. Notes How to apply the SECH function. Examples The figure below displays the result returned by the SECH function." }, { "id": "Functions/second.htm", "title": "SECOND Function", - "body": "The SECOND function is one of the date and time functions. It returns the second (a number from 0 to 59) of the time value. The SECOND function syntax is: SECOND( time-value ) where time-value is a value entered manually or included into the cell you make reference to. Note: the time-value may be expressed as a string value (e.g. \"13:39:15\"), a decimal number (e.g. 0.56 corresponds to 13:26:24) , or the result of a formula (e.g. the result of the NOW function - 9/26/12 13:39) To apply the SECOND function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the SECOND function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The SECOND function is one of the date and time functions. It returns the second (a number from 0 to 59) of the time value. Syntax SECOND(serial_number) The SECOND function has the following argument: Argument Description serial_number The time that contains the second you want to find. Notes The serial_number may be expressed as a string value (e.g. \"13:39:15\"), a decimal number (e.g. 0.56 corresponds to 13:26:24) , or the result of a formula (e.g. the result of the NOW function - 9/26/12 13:39) How to apply the SECOND function. Examples The figure below displays the result returned by the SECOND function." }, { "id": "Functions/sequence.htm", "title": "SEQUENCE Function", - "body": "The SEQUENCE function is one of the math and trigonometry functions. It is used to generate an array of sequential numbers. Please note that this is an array formula. To learn more, please read the Insert array formulas article. The SEQUENCE function syntax is: SEQUENCE(rows,[columns],[start],[step]) where rows is used to set the number of rows to return. columns is used to set the number of columns to return. start is used to set the first number in the sequence. step is used to control the increment for each subsequent value in the array. To apply the SEQUENCE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the SEQUENCE function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The SEQUENCE function is one of the math and trigonometry functions. It is used to generate an array of sequential numbers. Syntax SEQUENCE(rows, [columns], [start], [step]) The SEQUENCE function has the following arguments: Argument Description rows Is used to set the number of rows to return. columns Is used to set the number of columns to return. start Is used to set the first number in the sequence. step Is used to control the increment for each subsequent value in the array. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the SEQUENCE function. Examples The figure below displays the result returned by the SEQUENCE function." }, { "id": "Functions/seriessum.htm", "title": "SERIESSUM Function", - "body": "The SERIESSUM function is one of the math and trigonometry functions. It is used to return the sum of a power series. The SERIESSUM function syntax is: SERIESSUM(input-value, intial-power, step, coefficients) where input-value is the input value to the power series. intial-power is the initial power to which you want to raise input-value. step is the step by which you want to increase intial-power for each term in the series. coefficients are coefficients by which each successive power of input-value is multiplied. The number of coefficients determines the number of terms in the power series. The numeric values can be entered manually or included into the cell you make reference to. To apply the SERIESSUM function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the SERIESSUM function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The SERIESSUM function is one of the math and trigonometry functions. It is used to return the sum of a power series. Syntax SERIESSUM(x, n, m, coefficients) The SERIESSUM function has the following arguments: Argument Description x The input value to the power series. n The initial power to which you want to raise x. m The step by which you want to increase n for each term in the series. coefficients Coefficients by which each successive power of x is multiplied. The number of coefficients determines the number of terms in the power series. Notes How to apply the SERIESSUM function. Examples The figure below displays the result returned by the SERIESSUM function." }, { "id": "Functions/sheet.htm", "title": "SHEET Function", - "body": "The SHEET function is one of the information functions. It is used to return the sheet number of the reference sheet. The SHEET function syntax is: SHEET(value) where value is the name of a sheet or a reference for which you want the sheet number. If value is omitted, the current sheet number is returned. To apply the SHEET function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Information function group from the list, click the SHEET function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The SHEET function is one of the information functions. It is used to return the sheet number of the reference sheet. Syntax SHEET([value]) The SHEET function has the following argument: Argument Description value The name of a sheet or a reference for which you want the sheet number. It is an optional argument. If value is omitted, the current sheet number is returned. Notes How to apply the SHEET function. Examples The figure below displays the result returned by the SHEET function." }, { "id": "Functions/sheets.htm", "title": "SHEETS Function", - "body": "The SHEETS function is one of the information functions. It is used to return the number of sheets in a reference. The SHEETS function syntax is: SHEETS(reference) where reference is a reference for which you want to find out the number of sheets it contains. If reference is omitted, the number of sheets in the current workbook is returned. To apply the SHEETS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Information function group from the list, click the SHEETS function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The SHEETS function is one of the information functions. It is used to return the number of sheets in a reference. Syntax SHEETS([reference]) The SHEETS function has the following argument: Argument Description reference A reference for which you want to find out the number of sheets it contains. It is an optional argument. If reference is omitted, the number of sheets in the current workbook is returned. Notes How to apply the SHEETS function. Examples The figure below displays the result returned by the SHEETS function." }, { "id": "Functions/sign.htm", "title": "SIGN Function", - "body": "The SIGN function is one of the math and trigonometry functions. It is 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. The SIGN function syntax is: SIGN(x) where x is a numeric value entered manually or included into the cell you make reference to. To apply the SIGN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the SIGN function, enter the required argument, press the Enter button. The result will be displayed in the selected cell. For example: The required argument is A1, where A1 is 12. The number is positive, so the function returns 1. If we change the A1 value from 12 to -12, the function returns -1:" + "body": "The SIGN function is one of the math and trigonometry functions. It is 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. Syntax SIGN(number) The SIGN function has the following argument: Argument Description number A numeric value for which you want to get the sign. Notes How to apply the SIGN function. Examples The required argument is A1, where A1 is 12. The number is positive, so the function returns 1. If we change the A1 value from 12 to -12, the function returns -1:" }, { "id": "Functions/sin.htm", "title": "SIN Function", - "body": "The SIN function is one of the math and trigonometry functions. It is used to return the sine of an angle. The SIN function syntax is: SIN(x) where x is a numeric value entered manually or included into the cell you make reference to. To apply the SIN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the SIN function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The SIN function is one of the math and trigonometry functions. It is used to return the sine of an angle. Syntax SIN(number) The SIN function has the following argument: Argument Description number A numeric value for which you want to get the sine. Notes How to apply the SIN function. Examples The figure below displays the result returned by the SIN function." }, { "id": "Functions/sinh.htm", "title": "SINH Function", - "body": "The SINH function is one of the math and trigonometry functions. It is used to return the hyperbolic sine of a number. The SINH function syntax is: SINH(x) where x is any numeric value entered manually or included into the cell you make reference to. To apply the SINH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the SINH function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The SINH function is one of the math and trigonometry functions. It is used to return the hyperbolic sine of a number. Syntax SINH(number) The SINH function has the following argument: Argument Description number A numeric value for which you want to get the hyperbolic sine. Notes How to apply the SINH function. Examples The figure below displays the result returned by the SINH function." }, { "id": "Functions/skew-p.htm", "title": "SKEW.P Function", - "body": "The SKEW.P function is one of the statistical functions. It is used to return the skewness of a distribution based on a population: a characterization of the degree of asymmetry of a distribution around its mean. The SKEW.P function syntax is: SKEW.P(number-1 [, number 2], ...) where number-1(2) is up to 254 numeric values entered manually or included into the cells you make reference to. Note: if a reference argument contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. To apply the SKEW.P function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the SKEW.P function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The SKEW.P function is one of the statistical functions. It is used to return the skewness of a distribution based on a population: a characterization of the degree of asymmetry of a distribution around its mean. Syntax SKEW.P(number1, [number2], ...) The SKEW.P function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to get the skewness of a distribution. Notes If a reference argument contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. How to apply the SKEW.P function. Examples The figure below displays the result returned by the SKEW.P function." }, { "id": "Functions/skew.htm", "title": "SKEW Function", - "body": "The SKEW function is one of the statistical functions. It is used to analyze the range of data and return the skewness of a distribution of the argument list. The SKEW function syntax is: SKEW(argument-list) where argument-list is up to 30 numeric values entered manually or included into the cells you make reference to. To apply the SKEW function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the SKEW function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The SKEW function is one of the statistical functions. It is used to analyze the range of data and return the skewness of a distribution of the argument list. Syntax SKEW(number1, [number2], ...) The SKEW function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to get the skewness of a distribution. Notes How to apply the SKEW function. Examples The figure below displays the result returned by the SKEW function." }, { "id": "Functions/sln.htm", "title": "SLN Function", - "body": "The SLN function is one of the financial functions. It is used to calculate the depreciation of an asset for one accounting period using the straight-line depreciation method. The SLN function syntax is: SLN(cost, salvage, life) where cost is the cost of the asset. salvage is the salvage value of the asset at the end of its lifetime. life is the total number of the periods within the asset lifetime. The numeric values can be entered manually or included into the cell you make reference to. To apply the SLN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the SLN function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The SLN function is one of the financial functions. It is used to calculate the depreciation of an asset for one accounting period using the straight-line depreciation method. Syntax SLN(cost, salvage, life) The SLN function has the following arguments: Argument Description cost The cost of the asset. salvage The salvage value of the asset at the end of its lifetime. life The total number of the periods within the asset lifetime. Notes How to apply the SLN function. Examples The figure below displays the result returned by the SLN function." }, { "id": "Functions/slope.htm", "title": "SLOPE Function", - "body": "The SLOPE function is one of the statistical functions. It is used to return the slope of the linear regression line through data in two arrays. The SLOPE function syntax is: SLOPE(array-1 , array-2) where array-1 and array-2 are the selected ranges of cells with the same number of elements. Note: if array-1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. To apply the SLOPE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the SLOPE function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The SLOPE function is one of the statistical functions. It is used to return the slope of the linear regression line through data in two arrays. Syntax SLOPE(known_y's, known_x's) The SLOPE function has the following arguments: Argument Description known_y's The dependent data range. known_x's The independent data range with the same number of elements as known_y's contains. Notes If known_y's or known_x's contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. How to apply the SLOPE function. Examples The figure below displays the result returned by the SLOPE function." }, { "id": "Functions/small.htm", "title": "SMALL Function", - "body": "The SMALL function is one of the statistical functions. It is used to analyze the range of data and find the k-th smallest value. The SMALL function syntax is: SMALL(array , k) where array is the selected range of cells. k is the position of the number from the smallest value, a numeric value entered manually or included into the cell you make reference to. To apply the SMALL function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the SMALL function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The SMALL function is one of the statistical functions. It is used to analyze the range of data and find the k-th smallest value. Syntax SMALL(array , k) The SMALL function has the following arguments: Argument Description array The selected range of cells you want to analyze. k The position of the number from the smallest value, a numeric value greater than 0. Notes How to apply the SMALL function. Examples The figure below displays the result returned by the SMALL function." }, { "id": "Functions/sort.htm", "title": "SORT Function", - "body": "The SORT function is a lookup and reference function. It is used to sort a range of data or an array and to return the sorted array. Please note that this is an array formula. To learn more, please read the Insert array formulas article. The SORT function syntax is: =SORT(array,[sort_index],[sort_order],[by_col]) where array is the range of data to sort. [sort_index] is an optional argument. A number identifying the column or the row to sort by. [sort_order] is an optional argument. A number determining the sorting order: 1 or omitted for ascending order (by default), -1 for descending order, [by_col] is an optional argument. A value indicating the sorting direction: FALSE or omitted for sorting by rows when your data is organized vertically. TRUE for sorting by columns when your data is organized horizontally. To apply the SORT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the SORT function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The SORT function is one of the lookup and reference functions. It is used to sort a range of data or an array and to return the sorted array. Syntax SORT(array, [sort_index], [sort_order], [by_col]) The SORT function has the following arguments: Argument Description array The range of data to sort. sort_index An optional argument. A number identifying the column or the row to sort by. sort_order An optional argument. A number determining the sorting order: 1 or omitted for ascending order (by default), -1 for descending order. by_col An optional argument. A value indicating the sorting direction: FALSE or omitted for sorting by rows when your data is organized vertically. TRUE for sorting by columns when your data is organized horizontally. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the SORT function. Examples The figure below displays the result returned by the SORT function." }, { "id": "Functions/sortby.htm", @@ -1963,457 +1958,457 @@ var indexes = { "id": "Functions/sqrt.htm", "title": "SQRT Function", - "body": "The SQRT function is one of the math and trigonometry functions. It is used to return the square root of a number. The SQRT function syntax is: SQRT(x) where x is a numeric value entered manually or included into the cell you make reference to. Note: if the x value is negative, the function returns the #NUM! error. To apply the SQRT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the SQRT function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The SQRT function is one of the math and trigonometry functions. It is used to return the square root of a number. Syntax SQRT(number) The SQRT function has the following argument: Argument Description number A numeric value for which you want to get the square root. Notes If the number value is negative, the function returns the #NUM! error. How to apply the SQRT function. Examples The figure below displays the result returned by the SQRT function." }, { "id": "Functions/sqrtpi.htm", "title": "SQRTPI Function", - "body": "The SQRTPI function is one of the math and trigonometry functions. It is used to return the square root of the pi constant (3.14159265358979) multiplied by the specified number. The SQRTPI function syntax is: SQRTPI(x) where x is the number you wish to multiply the pi constant by, a numeric value entered manually or included into the cell you make reference to. Note: if the x value is negative, the function returns the #NUM! error. To apply the SQRTPI function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the SQRTPI function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The SQRTPI function is one of the math and trigonometry functions. It is used to return the square root of the pi constant (3.14159265358979) multiplied by the specified number. Syntax SQRTPI(number) The SQRTPI function has the following argument: Argument Description number The number you wish to multiply the pi constant by. Notes If the number value is negative, the function returns the #NUM! error. How to apply the SQRTPI function. Examples The figure below displays the result returned by the SQRTPI function." }, { "id": "Functions/standardize.htm", "title": "STANDARDIZE Function", - "body": "The STANDARDIZE function is one of the statistical functions. It is used to return a normalized value from a distribution characterized by the specified parameters. The STANDARDIZE function syntax is: STANDARDIZE(x, mean, standard-deviation) where x is the value you want to normalize. mean is the arithmetic mean of the distribution. standard-deviation is the standard deviation of the distribution, greater than 0. The numeric values can be entered manually or included into the cells you make reference to. To apply the STANDARDIZE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the STANDARDIZE function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The STANDARDIZE function is one of the statistical functions. It is used to return a normalized value from a distribution characterized by the specified parameters. Syntax STANDARDIZE(x, mean, standard_dev) The STANDARDIZE function has the following arguments: Argument Description x The value you want to normalize. mean The arithmetic mean of the distribution. standard_dev The standard deviation of the distribution, greater than 0. Notes How to apply the STANDARDIZE function. Examples The figure below displays the result returned by the STANDARDIZE function." }, { "id": "Functions/stdev-p.htm", "title": "STDEV.P Function", - "body": "The STDEV.P function is one of the statistical functions. It is used to calculate standard deviation based on the entire population given as arguments (ignores logical values and text). The STDEV.P function syntax is: STDEV.P(number1 [, number2], ...) where number-1(2) is up to 254 numeric values entered manually or included into the cells you make reference to. Note: if a reference argument contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. To apply the STDEV.P function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the STDEV.P function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The STDEV.P function is one of the statistical functions. It is used to calculate standard deviation based on the entire population given as arguments (ignores logical values and text). Syntax STDEV.P(number1, [number2], ...) The STDEV.P function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to calculate the standard deviation. Notes If a reference argument contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. How to apply the STDEV.P function. Examples The figure below displays the result returned by the STDEV.P function." }, { "id": "Functions/stdev-s.htm", "title": "STDEV.S Function", - "body": "The STDEV.S function is one of the statistical functions. It is used to estimate standard deviation based on a sample (ignores logical values and text in the sample). The STDEV.S function syntax is: STDEV.S(number1 [, number2], ...) where number-1(2) is up to 255 numeric values entered manually or included into the cells you make reference to. Note: if a reference argument contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. To apply the STDEV.S function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the STDEV.S function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The STDEV.S function is one of the statistical functions. It is used to estimate standard deviation based on a sample (ignores logical values and text in the sample). Syntax STDEV.S(number1, [number2], ...) The STDEV.S function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to calculate the standard deviation. Notes If a reference argument contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. How to apply the STDEV.S function. Examples The figure below displays the result returned by the STDEV.S function." }, { "id": "Functions/stdev.htm", "title": "STDEV Function", - "body": "The STDEV function is one of the statistical functions. It is used to analyze the range of data and return the standard deviation of a population based on a set of numbers. The STDEV function syntax is: STDEV(argument-list) where argument-list is up to 255 numeric values entered manually or included into the cells you make reference to. Note: if a reference argument contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. To apply the STDEV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the STDEV function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The STDEV function is one of the statistical functions. It is used to analyze the range of data and return the standard deviation of a population based on a set of numbers. Syntax STDEV(number1, [number2], ...) The STDEV function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to calculate the standard deviation. Notes If a reference argument contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values. How to apply the STDEV function. Examples The figure below displays the result returned by the STDEV function." }, { "id": "Functions/stdeva.htm", "title": "STDEVA Function", - "body": "The STDEVA function is one of the statistical functions. It is 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. The STDEVA function syntax is: STDEVA(argument-list) where argument-list is up to 255 values entered manually or included into the cells you make reference to. To apply the STDEVA function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the STDEVA function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The STDEVA function is one of the statistical functions. It is 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. Syntax STDEVA(value1, [value2], ...) The STDEVA function has the following arguments: Argument Description value1/2/n Up to 255 values for which you want to calculate the standard deviation. Notes How to apply the STDEVA function. Examples The figure below displays the result returned by the STDEVA function." }, { "id": "Functions/stdevp.htm", "title": "STDEVP Function", - "body": "The STDEVP function is one of the statistical functions. It is used to analyze the range of data and return the standard deviation of an entire population. The STDEVP function syntax is: STDEVP(argument-list) where argument-list is up to 255 numeric values entered manually or included into the cells you make reference to. To apply the STDEVP function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the STDEVP function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The STDEVP function is one of the statistical functions. It is used to analyze the range of data and return the standard deviation of an entire population. Syntax STDEVP(number1, [number2], ...) The STDEVP function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to calculate the standard deviation. Notes How to apply the STDEVP function. Examples The figure below displays the result returned by the STDEVP function." }, { "id": "Functions/stdevpa.htm", "title": "STDEVPA Function", - "body": "The STDEVPA function is one of the statistical functions. It is used to analyze the range of data and return the standard deviation of an entire population. The STDEVPA function syntax is: STDEVPA(argument-list) where argument-list is up to 255 numeric values entered manually or included into the cells you make reference to. Note: text and FALSE values are counted as 0, TRUE values are counted as 1, empty cells are ignored. To apply the STDEVPA function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the STDEVPA function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The STDEVPA function is one of the statistical functions. It is used to analyze the range of data and return the standard deviation of an entire population. Syntax STDEVPA(value1, [value2], ...) The STDEVPA function has the following arguments: Argument Description value1/2/n Up to 255 values for which you want to calculate the standard deviation. Notes Text and FALSE values are counted as 0, TRUE values are counted as 1, empty cells are ignored. How to apply the STDEVPA function. Examples The figure below displays the result returned by the STDEVPA function." }, { "id": "Functions/steyx.htm", "title": "STEYX Function", - "body": "The STEYX function is one of the statistical functions. It is used to return the standard error of the predicted y-value for each x in the regression line. The STEYX function syntax is: STEYX(known-ys, known-xs) where known-ys is an array of the dependent variables. known-xs is an array of the independent variables. The data values can be entered manually or included into the cells you make reference to. Empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers. Note: the known-ys and known-xs must contain the same number of data values otherwise the function will return the #N/A error value. To apply the STEYX function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the STEYX function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The STEYX function is one of the statistical functions. It is used to return the standard error of the predicted y-value for each x in the regression line. Syntax STEYX(known_y's, known_x's) The STEYX function has the following arguments: Argument Description known_y's An array of the dependent variables. known_x's An array of the independent variables with the same number of elements as known_y's contains. Notes Empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers. The known_y's and known_x's must contain the same number of data values otherwise the function will return the #N/A error value. How to apply the STEYX function. Examples The figure below displays the result returned by the STEYX function." }, { "id": "Functions/substitute.htm", "title": "SUBSTITUTE Function", - "body": "The SUBSTITUTE function is one of the text and data functions. Is used to replace a set of characters with a new one. The SUBSTITUTE function syntax is: SUBSTITUTE(string, old-string, new-string [, occurence]) where string is the string to perform the substitution within. old-string is the string to replace. new-string is the string to replace with. occurence is the number of occurences to repleace. It is an optional argument, if omitted, the function will replace all the occurences within string. The data can be entered manually or included into the cells you make reference to. To apply the SUBSTITUTE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the SUBSTITUTE function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The SUBSTITUTE function is one of the text and data functions. Is used to replace a set of characters with a new one. Syntax SUBSTITUTE(text, old_text, new_text, [instance_num]) The SUBSTITUTE function has the following arguments: Argument Description text The string to perform the substitution within. old_text The string to replace. new_text The string to replace with. instance_num The number of occurences to repleace. It is an optional argument, if omitted, the function will replace all the occurences within text. Notes How to apply the SUBSTITUTE function. Examples The figure below displays the result returned by the SUBSTITUTE function." }, { "id": "Functions/subtotal.htm", "title": "SUBTOTAL Function", - "body": "The SUBTOTAL function is one of the math and trigonometry functions. The function is used to return a subtotal in a list or database. The SUBTOTAL function syntax is: SUBTOTAL(function-number, argument-list) where function-number is a numeric value that specifies which function to use for the subtotal. The possible values are listed in the table below. For the function-number arguments 1 to 11, the SUBTOTAL function includes values of the rows that have been hidden manually. For the function-number arguments 101 to 111, the SUBTOTAL function ignores values of the rows that have been hidden manually. Values hidden by the filter are always excluded. argument-list is a reference to the cell range containing the values for which you want the subtotal. function-number (includes hidden values) function-number (excludes hidden values) Function 1 101 AVERAGE 2 102 COUNT 3 103 COUNTA 4 104 MAX 5 105 MIN 6 106 PRODUCT 7 107 STDEV 8 108 STDEVP 9 109 SUM 10 110 VAR 11 111 VARP To apply the SUBTOTAL function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the SUBTOTAL function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell. The figure below displays the result returned by the SUBTOTAL function when several rows are hidden." + "body": "The SUBTOTAL function is one of the math and trigonometry functions. The function is used to return a subtotal in a list or database. Syntax SUBTOTAL(function_num, ref1, [ref2], ...) The SUBTOTAL function has the following arguments: Argument Description function_num A numeric value that specifies which function to use for the subtotal. The possible values are listed in the table below. For the function_num arguments 1 to 11, the SUBTOTAL function includes values of the rows that have been hidden manually. For the function_num arguments 101 to 111, the SUBTOTAL function ignores values of the rows that have been hidden manually. Values hidden by the filter are always excluded. ref1/2/n Up to 255 references to the cell range containing the values for which you want the subtotal. The function_num argument can be one of the following: function-number (includes hidden values) function-number (excludes hidden values) Function 1 101 AVERAGE 2 102 COUNT 3 103 COUNTA 4 104 MAX 5 105 MIN 6 106 PRODUCT 7 107 STDEV 8 108 STDEVP 9 109 SUM 10 110 VAR 11 111 VARP Notes How to apply the SUBTOTAL function. Examples The figure below displays the result returned by the SUBTOTAL function. The figure below displays the result returned by the SUBTOTAL function when several rows are hidden." }, { "id": "Functions/sum.htm", "title": "SUM Function", - "body": "The SUM function is one of the math and trigonometry functions. It is used to add all the numbers in the selected range of cells and return the result. The SUM function syntax is: SUM(argument-list) where argument-list is a set of numeric values entered manually or included into the cells you make reference to. How to use SUM To apply the SUM function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar and select the SUM function of the Math and trigonometry function group, enter the required arguments separating them by commas or select the range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The SUM function is one of the math and trigonometry functions. It is used to add all the numbers in the selected range of cells and return the result. Syntax SUM(number1, [number2], ...) The SUM function has the following arguments: Argument Description number1/2/n Up to 255 numeric values that you want to add. Notes How to apply the SUM function. Examples The figure below displays the result returned by the SUM function." }, { "id": "Functions/sumif.htm", "title": "SUMIF Function", - "body": "The SUMIF function is one of the math and trigonometry functions. It is used to add all the numbers in the selected range of cells based on the specified criterion and return the result. The SUMIF function syntax is: SUMIF(cell-range, selection-criteria [, sum-range]) where cell-range is the selected range of cells to apply the criterion to. selection-criteria is the criterion used to determine the cells to sum, a value entered manually or included into the cell you make reference to. sum-range is the range of cells to sum. It is an optional argument, if omitted, the function will sum the numbers of cell-range. You can use wildcard characters when specifying criteria. The question mark \"?\" can replace any single character and the asterisk \"*\" can be used instead of any number of characters. How to use SUMIF To apply the SUMIF function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the SUMIF function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The SUMIF function is one of the math and trigonometry functions. It is used to add all the numbers in the selected range of cells based on the specified criterion and return the result. Syntax SUMIF(range, criteria, [sum_range]) The SUMIF function has the following arguments: Argument Description range The selected range of cells to apply the criterion to. criteria The criterion used to determine the cells to sum, a value entered manually or included into the cell you make reference to. sum_range The range of cells to sum. It is an optional argument, if omitted, the function will sum the numbers of range. Notes You can use wildcard characters when specifying criteria. The question mark \"?\" can replace any single character and the asterisk \"*\" can be used instead of any number of characters. How to apply the SUMIF function. Examples The figure below displays the result returned by the SUMIF function." }, { "id": "Functions/sumifs.htm", "title": "SUMIFS Function", - "body": "The SUMIFS function is one of the math and trigonometry functions. It is used to add all the numbers in the selected range of cells based on multiple criteria and return the result. The SUMIFS function syntax is: SUMIFS(sum-range, criteria-range1, criteria1, [criteria-range2, criteria2], ...) where sum-range is the range of cells to sum. criteria-range1 is the first selected range of cells to apply the criteria1 to. criteria1 is the first condition that must be met. It is applied to the criteria-range1 and used to determine the cells in the sum-range to sum. It can be a value entered manually or included into the cell you make reference to. criteria-range2, criteria2, ... are additional ranges of cells and their corresponding criteria. These arguments are optional. You can use wildcard characters when specifying criteria. The question mark \"?\" can replace any single character and the asterisk \"*\" can be used instead of any number of characters. How to use SUMIFS To apply the SUMIFS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the SUMIFS function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The SUMIFS function is one of the math and trigonometry functions. It is used to add all the numbers in the selected range of cells based on multiple criteria and return the result. Syntax SUMIFS(sum_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...) The SUMIFS function has the following arguments: Argument Description sum_range The range of cells to sum. criteria_range1 The first selected range of cells to apply the criteria1 to. criteria1 The first condition that must be met. It is applied to the criteria_range1 and used to determine the cells in the sum_range to sum. It can be a value entered manually or included into the cell you make reference to. criteria-range2, criteria2, ... Additional ranges of cells and their corresponding criteria. These arguments are optional. Notes You can use wildcard characters when specifying criteria. The question mark \"?\" can replace any single character and the asterisk \"*\" can be used instead of any number of characters. How to apply the SUMIFS function. Examples The figure below displays the result returned by the SUMIFS function." }, { "id": "Functions/sumproduct.htm", "title": "SUMPRODUCT Function", - "body": "The SUMPRODUCT function is one of the math and trigonometry functions. It is used to multiply the values in the selected ranges of cells or arrays and return the sum of the products. The SUMPRODUCT function syntax is: SUMPRODUCT(argument-lists) where argument-lists are numeric values included into the cell you make reference to. You can enter up to 30 ranges of cells or arrays. Note: if the argument-list contains non-numeric values, the function will treat them as 0. To apply the SUMPRODUCT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the SUMPRODUCT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The SUMPRODUCT function is one of the math and trigonometry functions. It is used to multiply the values in the selected ranges of cells or arrays and return the sum of the products. Syntax SUMPRODUCT(array1, [array2], [array3], ...) The SUMPRODUCT function has the following arguments: Argument Description array1/2/3/n Up to 255 ranges of cells or arrays containing numeric values. Notes If the array1/2/3/n contains non-numeric values, the function will treat them as 0. How to apply the SUMPRODUCT function. Examples The figure below displays the result returned by the SUMPRODUCT function." }, { "id": "Functions/sumsq.htm", "title": "SUMSQ Function", - "body": "The SUMSQ function is one of the math and trigonometry functions. It is used to add the squares of numbers and return the result. The SUMSQ function syntax is: SUMSQ(argument-list) where argument-list is up to 30 numeric values entered manually or included into the cell you make reference to. To apply the SUMSQ function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the SUMSQ function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The SUMSQ function is one of the math and trigonometry functions. It is used to add the squares of numbers and return the result. Syntax SUMSQ(number1, [number2], ...) The SUMSQ function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to calculate the sum of the squares. Notes How to apply the SUMSQ function. Examples The figure below displays the result returned by the SUMSQ function." }, { "id": "Functions/sumx2my2.htm", "title": "SUMX2MY2 Function", - "body": "The SUMX2MY2 function is one of the math and trigonometry functions. It is used to sum the difference of squares between two arrays. The SUMX2MY2 function syntax is: SUMX2MY2(array-1, array-2) where array-1 and array-2 are the ranges of cells with the same number of columns and rows. To apply the SUMX2MY2 function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the SUMX2MY2 function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The SUMX2MY2 function is one of the math and trigonometry functions. It is used to sum the difference of squares between two arrays. Syntax SUMX2MY2(array_x, array_y) The SUMX2MY2 function has the following arguments: Argument Description array_x The first range of cells. array_y The second range of cells with the same number of columns and rows as array_x contains. Notes How to apply the SUMX2MY2 function. Examples The figure below displays the result returned by the SUMX2MY2 function." }, { "id": "Functions/sumx2py2.htm", "title": "SUMX2PY2 Function", - "body": "The SUMX2PY2 function is one of the math and trigonometry functions. It is used to sum the squares of numbers in the selected arrays and return the sum of the results. The SUMX2PY2 function syntax is: SUMX2PY2(array-1, array-2) where array-1 and array-2 are the selected ranges of cells with the same number of columns and rows. To apply the SUMX2PY2 function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the SUMX2PY2 function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The SUMX2PY2 function is one of the math and trigonometry functions. It is used to sum the squares of numbers in the selected arrays and return the sum of the results. Syntax SUMX2PY2(array_x, array_y) The SUMX2PY2 function has the following arguments: Argument Description array_x The first range of cells. array_y The second range of cells with the same number of columns and rows as array_x contains. Notes How to apply the SUMX2PY2 function. Examples The figure below displays the result returned by the SUMX2PY2 function." }, { "id": "Functions/sumxmy2.htm", "title": "SUMXMY2 Function", - "body": "The SUMXMY2 function is one of the math and trigonometry functions. It is used to return the sum of the squares of the differences between corresponding items in the arrays. The SUMXMY2 function syntax is: SUMXMY2(array-1, array-2) where array-1 and array-2 are the selected ranges of cells with the same number of columns and rows. To apply the SUMXMY2 function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the SUMXMY2 function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The SUMXMY2 function is one of the math and trigonometry functions. It is used to return the sum of the squares of the differences between corresponding items in the arrays. Syntax SUMXMY2(array_x, array_y) The SUMXMY2 function has the following arguments: Argument Description array_x The first range of cells. array_y The second range of cells with the same number of columns and rows as array_x contains. Notes How to apply the SUMXMY2 function. Examples The figure below displays the result returned by the SUMXMY2 function." }, { "id": "Functions/switch.htm", "title": "SWITCH Function", - "body": "The SWITCH function is one of the logical functions. It is used to evaluate one value (called the expression) against a list of values, and returns the result corresponding to the first matching value. If there is no match, an optional default value may be returned. The SWITCH function syntax is: SWITCH(expression, value1, result1 [, [default or value2] [, [result2]], ...[default or value3, result3]]) where expression is the value that will be compared against value1 ...value126. value1 ...value126 is the value that will be compared against expression. result1 ...result126 is the result to be returned if the value1 ...value126 matches to the expression. default is the result to be returned if there are no matches. If the default argument is not specified and there are no matches, the function returns the #N/A error. Note: you can enter up to 254 arguments i.e. up to 126 pairs of values and results. To apply the SWITCH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Logical function group from the list, click the SWITCH function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The SWITCH function is one of the logical functions. It is used to evaluate one value (called the expression) against a list of values, and returns the result corresponding to the first matching value. If there is no match, an optional default value may be returned. Syntax SWITCH(expression, value1, result1, [default_or_value2, result2], ...) The SWITCH function has the following arguments: Argument Description expression The value that will be compared against value1 ...value126. value1 ...value126 The value that will be compared against expression. result1 ...result126 The result to be returned if the value1 ...value126 matches to the expression. default The result to be returned if there are no matches. If the default argument is not specified and there are no matches, the function returns the #N/A error. Notes You can enter up to 254 arguments i.e. up to 126 pairs of values and results. How to apply the SWITCH function. Examples The figure below displays the result returned by the SWITCH function." }, { "id": "Functions/syd.htm", "title": "SYD Function", - "body": "The SYD function is one of the financial functions. It is used to calculate the depreciation of an asset for a specified accounting period using the sum of the years' digits method. The SYD function syntax is: SYD(cost, salvage, life, per) where cost is the cost of the asset. salvage is the salvage value of the asset at the end of its lifetime. life is the total number of the periods within the asset lifetime. per is the period you wish to calculate depreciation for. The value must be expressed in the same units as life. The numeric values can be entered manually or included into the cell you make reference to. To apply the SYD function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the SYD function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The SYD function is one of the financial functions. It is used to calculate the depreciation of an asset for a specified accounting period using the sum of the years' digits method. Syntax SYD(cost, salvage, life, per) The SYD function has the following arguments: Argument Description cost The cost of the asset. salvage The salvage value of the asset at the end of its lifetime. life The total number of the periods within the asset lifetime. per The period you wish to calculate depreciation for. The value must be expressed in the same units as life. Notes How to apply the SYD function. Examples The figure below displays the result returned by the SYD function." }, { "id": "Functions/t-dist-2t.htm", "title": "T.DIST.2T Function", - "body": "The T.DIST.2T function is one of the statistical functions. Returns the two-tailed Student's t-distribution. The Student's t-distribution is used in the hypothesis testing of small sample data sets. Use this function in place of a table of critical values for the t-distribution. The T.DIST.2T function syntax is: T.DIST.2T(x, deg-freedom) where x is the value at which the function should be calculated. A numeric value greater than 0. deg-freedom is the number of degrees of freedom, an integer greater than or equal to 1. The values can be entered manually or included into the cells you make reference to. To apply the T.DIST.2T function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the T.DIST.2T function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The T.DIST.2T function is one of the statistical functions. Returns the two-tailed Student's t-distribution. The Student's t-distribution is used in the hypothesis testing of small sample data sets. Use this function in place of a table of critical values for the t-distribution. Syntax T.DIST.2T(x, deg_freedom) The T.DIST.2T function has the following arguments: Argument Description x The value at which the function should be calculated. A numeric value greater than 0. deg_freedom The number of degrees of freedom, an integer greater than or equal to 1. Notes How to apply the T.DIST.2T function. Examples The figure below displays the result returned by the T.DIST.2T function." }, { "id": "Functions/t-dist-rt.htm", "title": "T.DIST.RT Function", - "body": "The T.DIST.RT function is one of the statistical functions. Returns the right-tailed Student's t-distribution. The t-distribution is used in the hypothesis testing of small sample data sets. Use this function in place of a table of critical values for the t-distribution. The T.DIST.RT function syntax is: T.DIST.RT(x, deg-freedom) where x is the value at which the function should be calculated. deg-freedom is the number of degrees of freedom, an integer greater than or equal to 1. The values can be entered manually or included into the cells you make reference to. To apply the T.DIST.RT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the T.DIST.RT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The T.DIST.RT function is one of the statistical functions. Returns the right-tailed Student's t-distribution. The t-distribution is used in the hypothesis testing of small sample data sets. Use this function in place of a table of critical values for the t-distribution. Syntax T.DIST.RT(x, deg_freedom) The T.DIST.RT function has the following arguments: Argument Description x The value at which the function should be calculated. deg_freedom The number of degrees of freedom, an integer greater than or equal to 1. Notes How to apply the T.DIST.RT function. Examples The figure below displays the result returned by the T.DIST.RT function." }, { "id": "Functions/t-dist.htm", "title": "T.DIST Function", - "body": "The T.DIST function is one of the statistical functions. Returns the Student's left-tailed t-distribution. The t-distribution is used in the hypothesis testing of small sample data sets. Use this function in place of a table of critical values for the t-distribution. The T.DIST function syntax is: T.DIST(x, deg-freedom, cumulative) where x is the value at which the function should be calculated. deg-freedom is the number of degrees of freedom, an integer greater than or equal to 1. cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function. The values can be entered manually or included into the cells you make reference to. To apply the T.DIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the T.DIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The T.DIST function is one of the statistical functions. Returns the Student's left-tailed t-distribution. The t-distribution is used in the hypothesis testing of small sample data sets. Use this function in place of a table of critical values for the t-distribution. Syntax T.DIST(x, deg_freedom, cumulative) The T.DIST function has the following arguments: Argument Description x The value at which the function should be calculated. deg_freedom The number of degrees of freedom, an integer greater than or equal to 1. cumulative A logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function. Notes How to apply the T.DIST function. Examples The figure below displays the result returned by the T.DIST function." }, { "id": "Functions/t-inv-2t.htm", "title": "T.INV.2T Function", - "body": "The T.INV.2T function is one of the statistical functions. Returns the two-tailed inverse of the Student's t-distribution. The T.INV.2T function syntax is: T.INV.2T(probability, deg-freedom) where probability is the probability associated with the Student's t-distribution. A numeric value greater than 0 but less than or equal to 1. deg-freedom is the number of degrees of freedom, an integer greater than or equal to 1. The values can be entered manually or included into the cells you make reference to. To apply the T.INV.2T function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the T.INV.2T function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The T.INV.2T function is one of the statistical functions. Returns the two-tailed inverse of the Student's t-distribution. Syntax T.INV.2T(probability, deg_freedom) The T.INV.2T function has the following arguments: Argument Description probability The probability associated with the Student's t-distribution. A numeric value greater than 0 but less than 1. deg_freedom The number of degrees of freedom, an integer greater than or equal to 1. Notes How to apply the T.INV.2T function. Examples The figure below displays the result returned by the T.INV.2T function." }, { "id": "Functions/t-inv.htm", "title": "T.INV Function", - "body": "The T.INV function is one of the statistical functions. Returns the left-tailed inverse of the Student's t-distribution. The T.INV function syntax is: T.INV(probability, deg-freedom) where probability is the probability associated with the Student's t-distribution. A numeric value greater than 0 but less than 1. deg-freedom is the number of degrees of freedom, an integer greater than or equal to 1. The values can be entered manually or included into the cells you make reference to. To apply the T.INV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the T.INV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The T.INV function is one of the statistical functions. Returns the left-tailed inverse of the Student's t-distribution. Syntax T.INV(probability, deg_freedom) The T.INV function has the following arguments: Argument Description probability The probability associated with the Student's t-distribution. A numeric value greater than 0 but less than 1. deg_freedom The number of degrees of freedom, an integer greater than or equal to 1. Notes How to apply the T.INV function. Examples The figure below displays the result returned by the T.INV function." }, { "id": "Functions/t-test.htm", "title": "T.TEST Function", - "body": "The T.TEST function is one of the statistical functions. It is used to return the probability associated with a Student's t-Test. Use T.TEST to determine whether two samples are likely to have come from the same two underlying populations that have the same mean. The T.TEST function syntax is: T.TEST(array1, array2, tails, type) where array1 is the first range of numeric values. array2 is the second range of numeric values. tails is the number of distribution tails. If it is 1, the function uses the one-tailed distribution. If it is 2, the function uses the two-tailed distribution. type is a numeric value that specifies the kind of t-Test to be performed. The value can be one of the following: Numeric value The kind of t-Test 1 Paired 2 Two-sample equal variance (homoscedastic) 3 Two-sample unequal variance (heteroscedastic) The values can be entered manually or included into the cell you make reference to. To apply the T.TEST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the T.TEST function, enter the required arguments separating by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The T.TEST function is one of the statistical functions. It is used to return the probability associated with a Student's t-Test. Use T.TEST to determine whether two samples are likely to have come from the same two underlying populations that have the same mean. Syntax T.TEST(array1, array2, tails, type) The T.TEST function has the following arguments: Argument Description array1 The first range of numeric values. array2 The second range of numeric values. tails The number of distribution tails. If it is 1, the function uses the one-tailed distribution. If it is 2, the function uses the two-tailed distribution. type A numeric value that specifies the kind of t-Test to be performed. The possible values are listed in the table below. The type argument can be one of the following: Numeric value The kind of t-Test 1 Paired 2 Two-sample equal variance (homoscedastic) 3 Two-sample unequal variance (heteroscedastic) Notes How to apply the T.TEST function. Examples The figure below displays the result returned by the T.TEST function." }, { "id": "Functions/t.htm", "title": "T Function", - "body": "The T function is one of the text and data functions. Is 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. The T function syntax is: T(value) where value is data entered manually or included into the cell you make reference to. To apply the T function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the T function, enter the required argument, press the Enter button. The result will be displayed in the selected cell. For example: There is an argument: value = A1, where A1 is date and time. So the function returns date and time. If we change the A1 data from text to numerical value, the function returns blank result." + "body": "The T function is one of the text and data functions. Is 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. Syntax T(value) The T function has the following argument: Argument Description value The value you want to test. Notes How to apply the T function. Examples There is an argument: value = A1, where A1 is date and time. So the function returns date and time. If we change the A1 data from text to numerical value, the function returns blank result." }, { "id": "Functions/take.htm", "title": "TAKE Function", - "body": "The TAKE function is one of the lookup and reference functions. It is used to return rows or columns from array start or end. Please note that this is an array formula. To learn more, please read the Insert array formulas article. The TAKE function syntax is: TAKE(array, rows, [columns]) where array is used to set the array from which to take rows or columns. rows is used to set the number of rows to take. A negative value takes from the end of the array. columns is used to set the number of columns to take. A negative value takes from the end of the array. To apply the TAKE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the TAKE function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The TAKE function is one of the lookup and reference functions. It is used to return rows or columns from array start or end. Syntax TAKE(array, rows, [columns]) The TAKE function has the following arguments: Argument Description array Is used to set the array from which to take rows or columns. rows Is used to set the number of rows to take. A negative value takes from the end of the array. columns Is used to set the number of columns to take. A negative value takes from the end of the array. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the TAKE function. Examples The figure below displays the result returned by the TAKE function." }, { "id": "Functions/tan.htm", "title": "TAN Function", - "body": "The TAN function is one of the math and trigonometry functions. It is used to return the tangent of an angle. The TAN function syntax is: TAN(x) where x is the angle in radians that you wish to calculate the tangent of. A numeric value entered manually or included into the cell you make reference to. It is a required argument. To apply the TAN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the TAN function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The TAN function is one of the math and trigonometry functions. It is used to return the tangent of an angle. Syntax TAN(number) The TAN function has the following argument: Argument Description number The angle in radians that you wish to calculate the tangent of. Notes How to apply the TAN function. Examples The figure below displays the result returned by the TAN function." }, { "id": "Functions/tanh.htm", "title": "TANH Function", - "body": "The TANH function is one of the math and trigonometry functions. It is used to return the hyperbolic tangent of a number. The TANH function syntax is: TANH(x) where x is a numeric value entered manually or included into the cell you make reference to. To apply the TANH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the TANH function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The TANH function is one of the math and trigonometry functions. It is used to return the hyperbolic tangent of a number. Syntax TANH(number) The TANH function has the following argument: Argument Description number A numeric value for which you want to get the hyperbolic tangent. Notes How to apply the TANH function. Examples The figure below displays the result returned by the TANH function." }, { "id": "Functions/tbilleq.htm", "title": "TBILLEQ Function", - "body": "The TBILLEQ function is one of the financial functions. It is used to calculate the bond-equivalent yield of a Treasury bill. The TBILLEQ function syntax is: TBILLEQ(settlement, maturity, discount) where settlement is the date when the Treasury bill is purchased. maturity is the date when the Treasury bill expires. This date must be within one year of the settlement date. discount is the discount rate of the Treasury bill. Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the TBILLEQ function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the TBILLEQ function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The TBILLEQ function is one of the financial functions. It is used to calculate the bond-equivalent yield of a Treasury bill. Syntax TBILLEQ(settlement, maturity, discount) The TBILLEQ function has the following arguments: Argument Description settlement The date when the Treasury bill is purchased. maturity The date when the Treasury bill expires. This date must be within one year of the settlement date. discount The discount rate of the Treasury bill. Notes Dates must be entered by using the DATE function. How to apply the TBILLEQ function. Examples The figure below displays the result returned by the TBILLEQ function." }, { "id": "Functions/tbillprice.htm", "title": "TBILLPRICE Function", - "body": "The TBILLPRICE function is one of the financial functions. It is used to calculate the price per $100 par value for a Treasury bill. The TBILLPRICE function syntax is: TBILLPRICE(settlement, maturity, discount) where settlement is the date when the Treasury bill is purchased. maturity is the date when the Treasury bill expires. This date must be within one year of the settlement date. discount is the discount rate of the Treasury bill. Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the TBILLPRICE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the TBILLPRICE function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The TBILLPRICE function is one of the financial functions. It is used to calculate the price per $100 par value for a Treasury bill. Syntax TBILLPRICE(settlement, maturity, discount) The TBILLPRICE function has the following arguments: Argument Description settlement The date when the Treasury bill is purchased. maturity The date when the Treasury bill expires. This date must be within one year of the settlement date. discount The discount rate of the Treasury bill. Notes Dates must be entered by using the DATE function. How to apply the TBILLPRICE function. Examples The figure below displays the result returned by the TBILLPRICE function." }, { "id": "Functions/tbillyield.htm", "title": "TBILLYIELD Function", - "body": "The TBILLYIELD function is one of the financial functions. It is used to calculate the yield of a Treasury bill. The TBILLYIELD function syntax is: TBILLYIELD(settlement, maturity, pr) where settlement is the date when the Treasury bill is purchased. maturity is the date when the Treasury bill expires. This date must be within one year of the settlement date. pr is the purchase price of the Treasury bill, per $100 par value. Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the TBILLYIELD function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the TBILLYIELD function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The TBILLYIELD function is one of the financial functions. It is used to calculate the yield of a Treasury bill. Syntax TBILLYIELD(settlement, maturity, pr) The TBILLYIELD function has the following arguments: Argument Description settlement The date when the Treasury bill is purchased. maturity The date when the Treasury bill expires. This date must be within one year of the settlement date. pr The purchase price of the Treasury bill, per $100 par value. Notes Dates must be entered by using the DATE function. How to apply the TBILLYIELD function. Examples The figure below displays the result returned by the TBILLYIELD function." }, { "id": "Functions/tdist.htm", "title": "TDIST Function", - "body": "The TDIST function is one of the statistical functions. Returns the Percentage Points (probability) for the Student t-distribution where a numeric value (x) is a calculated value of t for which the Percentage Points are to be computed. The t-distribution is used in the hypothesis testing of small sample data sets. Use this function in place of a table of critical values for the t-distribution. The TDIST function syntax is: TDIST(x, deg-freedom, tails) where x is the value at which the function should be calculated. A numeric value greater than 0. deg-freedom is the number of degrees of freedom, an integer greater than or equal to 1. tails is a numeric value that specifies the number of distribution tails to return. If it is set to 1, the function returns the one-tailed distribution. If it is set to 2, the function returns the two-tailed distribution. The values can be entered manually or included into the cells you make reference to. To apply the TDIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the TDIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The TDIST function is one of the statistical functions. Returns the Percentage Points (probability) for the Student t-distribution where a numeric value (x) is a calculated value of t for which the Percentage Points are to be computed. The t-distribution is used in the hypothesis testing of small sample data sets. Use this function in place of a table of critical values for the t-distribution. Syntax TDIST(x, deg_freedom, tails) The TDIST function has the following arguments: Argument Description x The value at which the function should be calculated. A numeric value greater than 0. deg_freedom The number of degrees of freedom, an integer greater than or equal to 1. tails A numeric value that specifies the number of distribution tails to return. If it is set to 1, the function returns the one-tailed distribution. If it is set to 2, the function returns the two-tailed distribution. Notes How to apply the TDIST function. Examples The figure below displays the result returned by the TDIST function." }, { "id": "Functions/text.htm", "title": "TEXT Function", - "body": "The TEXT function is one of the text and data functions. Is used to convert a value to a text in the specified format. The TEXT function syntax is: TEXT(value, format) where value is a value to convert to text. format is a format to display the results in. The data can be entered manually or included into the cells you make reference to. To apply the TEXT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the TEXT function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The TEXT function is one of the text and data functions. Is used to convert a value to a text in the specified format. Syntax TEXT(value, format_text) The TEXT function has the following arguments: Argument Description value A value to convert to text. format_text A format to display the results in. Notes How to apply the TEXT function. Examples The figure below displays the result returned by the TEXT function." }, { "id": "Functions/textafter.htm", "title": "TEXTAFTER Function", - "body": "The TEXTAFTER function is one of the text and data functions. It is used to return text occurring after delimiting characters. The TEXTAFTER function syntax is: TEXTAFTER(text,delimiter,[instance_num], [match_mode], [match_end], [if_not_found]) where text is the text the search is conducted within. Wildcard characters are not allowed. If text is an empty string, the function returns empty text. delimiter is the text that marks the point after which the function extracts the text. instance_num is an optional argument. The instance of the delimiter after which the function extracts the text. By default, instance_num equals 1. A negative number will start the text search from the end. match_mode is an optional argument. It is used to determine whether the text search is case-sensitive. The default is case-sensitive. The following values are used: 0 for case sensitive, 1 for case insensitive. match_end is an optional argument. It treats the end of text as a delimiter. By default, the text is an exact match. The following values are used: 0 for not matching the delimiter against the end of the text, 1 for matching the delimiter against the end of the text. if_not_found is an optional argument. It sets a value that is returned if no match is found. To apply the TEXTAFTER function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the TEXTAFTER function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The TEXTAFTER function is one of the text and data functions. It is used to return text occurring after delimiting characters. Syntax TEXTAFTER(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found]) The TEXTAFTER function has the following argument: Argument Description text The text the search is conducted within. Wildcard characters are not allowed. If text is an empty string, the function returns empty text. delimiter The text that marks the point after which the function extracts the text. instance_num An optional argument. The instance of the delimiter after which the function extracts the text. By default, instance_num equals 1. A negative number will start the text search from the end. match_mode An optional argument. It is used to determine whether the text search is case-sensitive. The default is case-sensitive. The following values are used: 0 for case sensitive, 1 for case insensitive. match_end An optional argument. It treats the end of text as a delimiter. By default, the text is an exact match. The following values are used: 0 for not matching the delimiter against the end of the text, 1 for matching the delimiter against the end of the text. if_not_found An optional argument. It sets a value that is returned if no match is found. Notes How to apply the TEXTAFTER function. Examples The figure below displays the result returned by the TEXTAFTER function." }, { "id": "Functions/textbefore.htm", "title": "TEXTBEFORE Function", - "body": "The TEXTBEFORE function is one of the text and data functions. It is used to return text occurring before delimiting characters. The TEXTBEFORE function syntax is: TEXTBEFORE(text,delimiter,[instance_num], [match_mode], [match_end], [if_not_found]) where text is the text the search is conducted within. Wildcard characters are not allowed. If text is an empty string, the function returns empty text. delimiter is the text that marks the point before which the function extracts the text. instance_num is an optional argument. The instance of the delimiter before which the function extracts the text. By default, instance_num equals 1. A negative number will start the text search from the end. match_mode is an optional argument. It is used to determine whether the text search is case-sensitive. The default is case-sensitive. The following values are used: 0 for case sensitive, 1 for case insensitive. match_end is an optional argument. It treats the end of text as a delimiter. By default, the text is an exact match. The following values are used: 0 for not matching the delimiter against the end of the text, 1 for matching the delimiter against the end of the text. if_not_found is an optional argument. It sets a value that is returned if no match is found. To apply the TEXTBEFORE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the TEXTBEFORE function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The TEXTBEFORE function is one of the text and data functions. It is used to return text occurring before delimiting characters. Syntax TEXTBEFORE(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found]) The TEXTBEFORE function has the following argument: Argument Description text The text the search is conducted within. Wildcard characters are not allowed. If text is an empty string, the function returns empty text. delimiter The text that marks the point before which the function extracts the text. instance_num An optional argument. The instance of the delimiter before which the function extracts the text. By default, instance_num equals 1. A negative number will start the text search from the end. match_mode An optional argument. It is used to determine whether the text search is case-sensitive. The default is case-sensitive. The following values are used: 0 for case sensitive, 1 for case insensitive. match_end An optional argument. It treats the end of text as a delimiter. By default, the text is an exact match. The following values are used: 0 for not matching the delimiter against the end of the text, 1 for matching the delimiter against the end of the text. if_not_found An optional argument. It sets a value that is returned if no match is found. Notes How to apply the TEXTBEFORE function. Examples The figure below displays the result returned by the TEXTBEFORE function." }, { "id": "Functions/textjoin.htm", "title": "TEXTJOIN Function", - "body": "The TEXTJOIN function is one of the text and data functions. Is used to combine the text from multiple ranges and/or strings, and includes a delimiter you specify between each text value that will be combined; if the delimiter is an empty text string, this function will effectively concatenate the ranges. This function is similar to the CONCAT function, but the difference is that the CONCAT function cannot accept a delimiter. The TEXTJOIN function syntax is: TEXTJOIN(delimiter, ignore_empty, text1 [, text2], …) where delimiter is the delimiter to be inserted between the text values. Can be specified as a text string enclosed by double quotes (e.g. \",\" (comma), \" \" (space), \"\\\" (backslash) etc.) or as a reference to a cell or range of cells. ignore_empty is a logical value that specifies whether empty cells should be ignored. When the value is set to TRUE, empty cells are ignored. text1(2) is up to 252 data values. Each value can be a text string or a reference to a range of cells. To apply the TEXTJOIN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the TEXTJOIN function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The TEXTJOIN function is one of the text and data functions. Is used to combine the text from multiple ranges and/or strings, and includes a delimiter you specify between each text value that will be combined; if the delimiter is an empty text string, this function will effectively concatenate the ranges. This function is similar to the CONCAT function, but the difference is that the CONCAT function cannot accept a delimiter. Syntax TEXTJOIN(delimiter, ignore_empty, text1, [text2], ...) The TEXTJOIN function has the following argument: Argument Description delimiter The delimiter to be inserted between the text values. Can be specified as a text string enclosed by double quotes (e.g. \",\" (comma), \" \" (space), \"\\\" (backslash) etc.) or as a reference to a cell or range of cells. ignore_empty A logical value that specifies whether empty cells should be ignored. When the value is set to TRUE, empty cells are ignored. text1/2/n Up to 253 data values. Each value can be a text string or a reference to a range of cells. Notes How to apply the TEXTJOIN function. Examples The figure below displays the result returned by the TEXTJOIN function." }, { "id": "Functions/textsplit.htm", "title": "TEXTSPLIT Function", - "body": "The TEXTSPLIT function is one of the text and data functions. It is used to split text strings through column and row delimiters. Please note that this is an array formula. To learn more, please read the Insert array formulas article. The TEXTSPLIT function syntax is: TEXTSPLIT(text,col_delimiter,[row_delimiter],[ignore_empty], [match_mode], [pad_with]) where text is used to set the text you want to split. col_delimiter is an optional argument. It is used to set the text that marks the point where to split the text across columns. row_delimiter is an optional argument. It is used to set the text that marks the point where to split the text down rows. ignore_empty is an optional argument. It is used to specify FALSE to create an empty cell when two delimiters are consecutive. Defaults to TRUE, which creates an empty cell. match_mode is an optional argument. It is used to search the text for a delimiter match. By default, a case-sensitive match is done. pad_with is used to set the value with which to pad the result. Defaults to #N/A. To apply the TEXTSPLIT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the TEXTSPLIT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The TEXTSPLIT function is one of the text and data functions. It is used to split text strings through column and row delimiters. Syntax TEXTSPLIT(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with]) The TEXTSPLIT function has the following argument: Argument Description text The text you want to split. col_delimiter An optional argument. It is used to set the text that marks the point where to split the text across columns. row_delimiter An optional argument. It is used to set the text that marks the point where to split the text down rows. ignore_empty An optional argument. It is used to specify FALSE to create an empty cell when two delimiters are consecutive. Defaults to TRUE, which creates an empty cell. match_mode An optional argument. It is used to search the text for a delimiter match. By default, a case-sensitive match is done. pad_with Is used to set the value with which to pad the result. Defaults to #N/A. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the TEXTSPLIT function. Examples The figure below displays the result returned by the TEXTSPLIT function." }, { "id": "Functions/time.htm", "title": "TIME Function", - "body": "The TIME function is one of the date and time functions. It is used to add a particular time in the selected format (hh:mm tt by default). The TIME function syntax is: TIME(hour, minute, second) where hour is a number from 0 to 23. minute is a number from 0 to 59. second is a number from 0 to 59. The numeric values can be entered manually or included into the cell you make reference to. To apply the TIME function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the TIME function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The TIME function is one of the date and time functions. It is used to add a particular time in the selected format (hh:mm tt by default). Syntax TIME(hour, minute, second) The TIME function has the following arguments: Argument Description hour A number from 0 to 23. minute A number from 0 to 59. second A number from 0 to 59. Notes How to apply the TIME function. Examples The figure below displays the result returned by the TIME function." }, { "id": "Functions/timevalue.htm", "title": "TIMEVALUE Function", - "body": "The TIMEVALUE function is one of the date and time functions. It is used to return the serial number of a time. The TIMEVALUE function syntax is: TIMEVALUE(date-time-string) where date-time-string is a value entered manually or included into the cell you make reference to. To apply the TIMEVALUE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the TIMEVALUE function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The TIMEVALUE function is one of the date and time functions. It is used to return the serial number of a time. Syntax TIMEVALUE(time_text) The TIMEVALUE function has the following argument: Argument Description time_text A text string that represents a time, e.g. \"4:30 PM\" or \"16:30\". Notes How to apply the TIMEVALUE function. Examples The figure below displays the result returned by the TIMEVALUE function." }, { "id": "Functions/tinv.htm", "title": "TINV Function", - "body": "The TINV function is one of the statistical functions. Returns the two-tailed inverse of the Student's t-distribution. The TINV function syntax is: TINV(probability, deg-freedom) where probability is the probability associated with the two-tailed Student's t-distribution. A numeric value greater than 0 but less than or equal to 1. deg-freedom is the number of degrees of freedom, an integer greater than or equal to 1. The values can be entered manually or included into the cells you make reference to. To apply the TINV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the TINV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The TINV function is one of the statistical functions. Returns the two-tailed inverse of the Student's t-distribution. Syntax TINV(probability, deg_freedom) The TINV function has the following arguments: Argument Description probability The probability associated with the two-tailed Student's t-distribution. A numeric value greater than 0 but less than or equal to 1. deg_freedom The number of degrees of freedom, an integer greater than or equal to 1. Notes How to apply the TINV function. Examples The figure below displays the result returned by the TINV function." }, { "id": "Functions/tocol.htm", "title": "TOCOL Function", - "body": "The TOCOL function is one of the lookup and reference functions. It is used to return the array as one row. Please note that this is an array formula. To learn more, please read the Insert array formulas article. The TOCOL function syntax is: TOCOL (array, [ignore], [scan_by_column]) where array is the array or reference to return as a column. ignore is used to set whether to ignore certain types of values. Defaults to ignoring no values. The following values are used: 0 to keep all values (default); 1 to ignore blanks; 2 to ignore errors; 3 to ignore blanks and errors. scan_by_column is used to scan the array by column. By default, array scanning is conducted by row. Scanning determines whether the values are arranged in rows or columns. To apply the TOCOL function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the TOCOL function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The TOCOL function is one of the lookup and reference functions. It is used to return the array as one column. Syntax TOCOL (array, [ignore], [scan_by_column]) The TOCOL function has the following arguments: Argument Description array The array or reference to return as a column. ignore Is used to set whether to ignore certain types of values. Defaults to ignoring no values. The following values are used: 0 to keep all values (default); 1 to ignore blanks; 2 to ignore errors; 3 to ignore blanks and errors. scan_by_column Is used to scan the array by column. By default, array scanning is conducted by row. Scanning determines whether the values are arranged in rows or columns. A logical value (TRUE or FALSE). Notes If scan_by_column is omitted or FALSE, the array is scanned by row. If it is TRUE, the array is scanned by column. Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the TOCOL function. Examples The figure below displays the result returned by the TOCOL function." }, { "id": "Functions/today.htm", "title": "TODAY Function", - "body": "The TODAY function is one of the date and time functions. It is used to add the current day in the following format MM/dd/yy. This function does not require an argument. The TODAY function syntax is: TODAY() To apply the TODAY function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the TODAY function, press the Enter button. The result will be displayed in the selected cell." + "body": "The TODAY function is one of the date and time functions. It is used to add the current day in the following format MM/dd/yy. This function does not require an argument. Syntax TODAY() Notes How to apply the TODAY function. Examples The figure below displays the result returned by the TODAY function." }, { "id": "Functions/torow.htm", "title": "TOROW Function", - "body": "The TOROW function is one of the lookup and reference functions. It is used to return the array as one row. Please note that this is an array formula. To learn more, please read the Insert array formulas article. The TOROW function syntax is: TOROW (array, [ignore], [scan_by_column]) where array is the array or reference to return as a row. ignore is used to set whether to ignore certain types of values. Defaults to ignoring no values. The following values are used: 0 to keep all values (default); 1 to ignore blanks; 2 to ignore errors; 3 to ignore blanks and errors. scan_by_column is used to scan the array by column. By default, array scanning is conducted by row. Scanning determines whether the values are arranged in rows or columns. To apply the TOROW function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the TOROW function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The TOROW function is one of the lookup and reference functions. It is used to return the array as one row. Syntax TOROW (array, [ignore], [scan_by_column]) The TOROW function has the following arguments: Argument Description array The array or reference to return as a row. ignore Is used to set whether to ignore certain types of values. Defaults to ignoring no values. The following values are used: 0 to keep all values (default); 1 to ignore blanks; 2 to ignore errors; 3 to ignore blanks and errors. scan_by_column Is used to scan the array by column. By default, array scanning is conducted by row. Scanning determines whether the values are arranged in rows or columns. A logical value (TRUE or FALSE). Notes If scan_by_column is omitted or FALSE, the array is scanned by row. If it is TRUE, the array is scanned by column. Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the TOROW function. Examples The figure below displays the result returned by the TOROW function." }, { "id": "Functions/transpose.htm", "title": "TRANSPOSE Function", - "body": "The TRANSPOSE function is one of the lookup and reference functions. It is used to return the first element of an array. The TRANSPOSE function syntax is: TRANSPOSE(array) where array is a reference to a range of cells. To apply the TRANSPOSE function, select a cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the TRANSPOSE function, select a range of cells with the mouse or enter it manually, like this A1:B2, press the Enter key. The result will be displayed in the selected range of cells." + "body": "The TRANSPOSE function is one of the lookup and reference functions. It is used to convert columns into rows and rows into columns. Syntax TRANSPOSE(array) The TRANSPOSE function has the following arguments: Argument Description array A reference to a range of cells. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the TRANSPOSE function. Examples The figure below displays the result returned by the TRANSPOSE function." }, { "id": "Functions/trend.htm", "title": "TREND Function", - "body": "The TREND function is one of the statistical functions. It is used to calculate a linear trend line and returns values along it using the method of least squares. The TREND function syntax is: TREND(known_y’s, [known_x’s], [new_x’s], [const]) where known_y’s is the set of y-values you already know in the y = mx + b equation. known_x’s is the optional set of x-values you might know in the y = mx + b equation. new_x’s is the optional set of x-values you want y-values to be returned to. const is an optional argument. It is a TRUE or FALSE value where TRUE or lack of the argument forces b to be calculated normally and FALSE sets b to 0 in the y = mx + b equation and m-values correspond with the y = mx equation. To apply the TREND function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the TREND function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The TREND function is one of the statistical functions. It is used to calculate a linear trend line and returns values along it using the method of least squares. Syntax TREND(known_y’s, [known_x’s], [new_x’s], [const]) The TREND function has the following arguments: Argument Description known_y’s The set of y-values you already know in the y = mx + b equation. known_x’s The optional set of x-values you might know in the y = mx + b equation. new_x’s The optional set of x-values you want y-values to be returned to. const An optional argument. It is a TRUE or FALSE value where TRUE or lack of the argument forces b to be calculated normally and FALSE sets b to 0 in the y = mx + b equation and m-values correspond with the y = mx equation. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the TREND function. Examples The figure below displays the result returned by the TREND function." }, { "id": "Functions/trim.htm", "title": "TRIM Function", - "body": "The TRIM function is one of the text and data functions. Is used to remove the leading and trailing spaces from a string. The TRIM function syntax is: TRIM(string) where string is a text value entered manually or included into the cell you make reference to. To apply the TRIM function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the TRIM function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The TRIM function is one of the text and data functions. Is used to remove the leading and trailing spaces from a string. Syntax TRIM(text) The TRIM function has the following argument: Argument Description text A text value from which you want to remove spaces. Notes How to apply the TRIM function. Examples The figure below displays the result returned by the TRIM function." }, { "id": "Functions/trimmean.htm", "title": "TRIMMEAN Function", - "body": "The TRIMMEAN function is one of the statistical functions. It is used to return the mean of the interior of a data set. TRIMMEAN calculates the mean taken by excluding a percentage of data points from the top and bottom tails of a data set. The TRIMMEAN function syntax is: TRIMMEAN(array, percent) where array is the range of numeric values to trim and average. percent is a total percent of data points to exclude from the calculation. A numeric value greater than or equal to 0 but less than 1. The number of excluded data points is rounded down to the nearest multiple of 2. E.g., if array contains 30 values and percent is 0.1, 10 percent of 30 points is 3. This value is rounded down to 2, so 1 point is trimmed from each tail of the data set: 1 from the top and 1 from the bottom of the set. The values can be entered manually or included into the cell you make reference to. To apply the TRIMMEAN function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the TRIMMEAN function, enter the required arguments separating by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The TRIMMEAN function is one of the statistical functions. It is used to return the mean of the interior of a data set. TRIMMEAN calculates the mean taken by excluding a percentage of data points from the top and bottom tails of a data set. Syntax TRIMMEAN(array, percent) The TRIMMEAN function has the following arguments: Argument Description array The range of numeric values to trim and average. percent A total percent of data points to exclude from the calculation. A numeric value greater than or equal to 0 but less than 1. The number of excluded data points is rounded down to the nearest multiple of 2. E.g., if array contains 30 values and percent is 0.1, 10 percent of 30 points is 3. This value is rounded down to 2, so 1 point is trimmed from each tail of the data set: 1 from the top and 1 from the bottom of the set. Notes How to apply the TRIMMEAN function. Examples The figure below displays the result returned by the TRIMMEAN function." }, { "id": "Functions/true.htm", "title": "TRUE Function", - "body": "The TRUE function is one of the logical functions. The function returns TRUE and does not require any argument. The TRUE function syntax is: TRUE() To apply the TRUE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Logical function group from the list, click the TRUE function, press the Enter button. The result will be displayed in the selected cell." + "body": "The TRUE function is one of the logical functions. The function returns TRUE and does not require any argument. Syntax TRUE() Notes How to apply the TRUE function. Examples The figure below displays the result returned by the TRUE function." }, { "id": "Functions/trunc.htm", "title": "TRUNC Function", - "body": "The TRUNC function is one of the math and trigonometry functions. It is used to return a number truncated to a specified number of digits. The TRUNC function syntax is: TRUNC(x [,number-digits]) where x is a number to truncate. number-digits is a number of decimal places to display. It is an optional argument. If omitted, the function will assume it to be 0. The numeric values can be entered manually or included into the cell you make reference to. To apply the TRUNC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the TRUNC function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The TRUNC function is one of the math and trigonometry functions. It is used to return a number truncated to a specified number of digits. Syntax TRUNC(number, [num_digits]) The TRUNC function has the following arguments: Argument Description number A number to truncate. num_digits A number of decimal places to display. It is an optional argument. If omitted, the function will assume it to be 0. Notes How to apply the TRUNC function. Examples The figure below displays the result returned by the TRUNC function." }, { "id": "Functions/ttest.htm", "title": "TTEST Function", - "body": "The TTEST function is one of the statistical functions. It is used to return the probability associated with a Student's t-Test. Use TTEST to determine whether two samples are likely to have come from the same two underlying populations that have the same mean. The TTEST function syntax is: TTEST(array1, array2, tails, type) where array1 is the first range of numeric values. array2 is the second range of numeric values. tails is the number of distribution tails. If it is 1, the function uses the one-tailed distribution. If it is 2, the function uses the two-tailed distribution. type is a numeric value that specifies the kind of t-Test to be performed. The value can be one of the following: Numeric value The kind of t-Test 1 Paired 2 Two-sample equal variance (homoscedastic) 3 Two-sample unequal variance (heteroscedastic) The values can be entered manually or included into the cell you make reference to. To apply the TTEST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the TTEST function, enter the required arguments separating by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The TTEST function is one of the statistical functions. It is used to return the probability associated with a Student's t-Test. Use TTEST to determine whether two samples are likely to have come from the same two underlying populations that have the same mean. Syntax TTEST(array1, array2, tails, type) The TTEST function has the following arguments: Argument Description array1 The first range of numeric values. array2 The second range of numeric values. tails The number of distribution tails. If it is 1, the function uses the one-tailed distribution. If it is 2, the function uses the two-tailed distribution. type A numeric value that specifies the kind of t-Test to be performed. The possible values are listed in the table below. The type argument can be one of the following: Numeric value The kind of t-Test 1 Paired 2 Two-sample equal variance (homoscedastic) 3 Two-sample unequal variance (heteroscedastic) Notes How to apply the TTEST function. Examples The figure below displays the result returned by the TTEST function." }, { "id": "Functions/type.htm", "title": "TYPE Function", - "body": "The TYPE function is one of the information functions. It is used to determine the type of the resulting or displayed value. The TYPE function syntax is: TYPE(value) where value is a value to test entered manually or included into the cell you make reference to. Below you will find the possible values and the result that TYPE returns: Value Result number 1 text 2 logical value 4 error value 16 array 64 To apply the TYPE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Information function group from the list, click the TYPE function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The TYPE function is one of the information functions. It is used to determine the type of the resulting or displayed value. Syntax TYPE(value) The TYPE function has the following argument: Argument Description value A value to test. The possible values are listed in the table below. The value argument can be one of the following: Value Result number 1 text 2 logical value 4 error value 16 array 64 Notes How to apply the TYPE function. Examples The figure below displays the result returned by the TYPE function." }, { "id": "Functions/unichar.htm", "title": "UNICHAR Function", - "body": "The UNICHAR function is one of the text and data functions. Is used to return the Unicode character that is referenced by the given numeric value. The UNICHAR function syntax is: UNICHAR(number) where number is the Unicode number that represents the character. It can be entered manually or included into the cell you make reference to. To apply the UNICHAR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the UNICHAR function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The UNICHAR function is one of the text and data functions. Is used to return the Unicode character that is referenced by the given numeric value. Syntax UNICHAR(number) The UNICHAR function has the following argument: Argument Description number The Unicode number that represents the character. Notes How to apply the UNICHAR function. Examples The figure below displays the result returned by the UNICHAR function." }, { "id": "Functions/unicode.htm", "title": "UNICODE Function", - "body": "The UNICODE function is one of the text and data functions. Is used to return the number (code point) corresponding to the first character of the text. The UNICODE function syntax is: UNICODE(text) where text is the text string beginning with the character you want to get the Unicode value for. It can be entered manually or included into the cell you make reference to. To apply the UNICODE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the UNICODE function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The UNICODE function is one of the text and data functions. Is used to return the number (code point) corresponding to the first character of the text. Syntax UNICODE(text) The UNICODE function has the following argument: Argument Description text The text string beginning with the character you want to get the Unicode value for. Notes How to apply the UNICODE function. Examples The figure below displays the result returned by the UNICODE function." }, { "id": "Functions/unique.htm", "title": "UNIQUE Function", - "body": "The UNIQUE function is one of the reference functions. It is used to return a list of unique values from the specified range. The UNIQUE function syntax is: UNIQUE(array,[by_col],[exactly_once]) where array is the range from which to extract unique values. by_col is the optional TRUE or FALSE value indicating the method of comparison: TRUE for columns and FALSE for rows. exactly_once is the optional TRUE or FALSE value indicating the returning method: TRUE for values occurring once and FALSE for all unique values. To apply the UNIQUE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Look up and reference function group from the list, click the UNIQUE function, enter the required argument, press the Enter button. The result will be displayed in the selected cell. To return a range of values, select a required range of cells, enter the formula, and press the Ctrl+Shift+Enter key combination." + "body": "The UNIQUE function is one of the lookup and reference functions. It is used to return a list of unique values from the specified range. Syntax UNIQUE(array, [by_col], [exactly_once]) The UNIQUE function has the following arguments: Argument Description array The range from which to extract unique values. by_col The optional TRUE or FALSE value indicating the method of comparison: TRUE for columns and FALSE for rows. exactly_once The optional TRUE or FALSE value indicating the returning method: TRUE for values occurring once and FALSE for all unique values. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the UNIQUE function. Examples The figure below displays the result returned by the UNIQUE function." }, { "id": "Functions/upper.htm", "title": "UPPER Function", - "body": "The UPPER function is one of the text and data functions. Is used to convert lowercase letters to uppercase in the selected cell. The UPPER function syntax is: UPPER(text) where text is a text data included into the cell you make reference to. To apply the UPPER function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the UPPER function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The UPPER function is one of the text and data functions. Is used to convert lowercase letters to uppercase in the selected cell. Syntax UPPER(text) The UPPER function has the following argument: Argument Description text The text you want to convert to uppercase. Notes How to apply the UPPER function. Examples The figure below displays the result returned by the UPPER function." }, { "id": "Functions/value.htm", "title": "VALUE Function", - "body": "The VALUE function is one of the text and data functions. Is 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. The VALUE function syntax is: VALUE(string) where string is text data that represents a number entered manually or included into the cell you make reference to. To apply the VALUE function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the VALUE function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The VALUE function is one of the text and data functions. Is 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. Syntax VALUE(text) The VALUE function has the following argument: Argument Description text Text data that represents a number. Notes How to apply the VALUE function. Examples The figure below displays the result returned by the VALUE function." }, { "id": "Functions/var-p.htm", "title": "VAR.P Function", - "body": "The VAR.P function is one of the statistical functions. It is used to calculate variance based on the entire population (ignores logical values and text in the population). The VAR.P function syntax is: VAR.P(number1 [, number2], ...) where number1(2) is up to 254 numerical values entered manually or included into the cells you make reference to. Note: empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers. To apply the VAR.P function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the VAR.P function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The VAR.P function is one of the statistical functions. It is used to calculate variance based on the entire population (ignores logical values and text in the population). Syntax VAR.P(number1, [number2], ...) The VAR.P function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to calculate the variance. Notes Empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers. How to apply the VAR.P function. Examples The figure below displays the result returned by the VAR.P function." }, { "id": "Functions/var-s.htm", "title": "VAR.S Function", - "body": "The VAR.S function is one of the statistical functions. It is used to estimate variance based on a sample (ignores logical values and text in the sample). The VAR.S function syntax is: VAR.S(number1 [, number2], ...) where number1(2) is up to 254 numerical values entered manually or included into the cells you make reference to. Note: empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers. To apply the VAR.S function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the VAR.S function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The VAR.S function is one of the statistical functions. It is used to estimate variance based on a sample (ignores logical values and text in the sample). Syntax VAR.S(number1, [number2], ...) The VAR.S function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to calculate the variance. Notes Empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers. How to apply the VAR.S function. Examples The figure below displays the result returned by the VAR.S function." }, { "id": "Functions/var.htm", "title": "VAR Function", - "body": "The VAR function is one of the statistical functions. It is used to analyze the set of values and calculate the sample variance. The VAR function syntax is: VAR(argument-list) where argument-list is a set of numerical values entered manually or included into the cells you make reference to. Note: empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers. To apply the VAR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the VAR function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The VAR function is one of the statistical functions. It is used to analyze the set of values and calculate the sample variance. Syntax VAR(number1, [number2], ...) The VAR function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to calculate the variance. Notes Empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers. How to apply the VAR function. Examples The figure below displays the result returned by the VAR function." }, { "id": "Functions/vara.htm", "title": "VARA Function", - "body": "The VARA function is one of the statistical functions. It is used to analyze the set of values and calculate the sample variance. The VARA function syntax is: VARA(argument-list) where argument-list is a set of values entered manually or included into the cells you make reference to. Note: text and FALSE values are counted as 0, TRUE values are counted as 1, empty cells are ignored. To apply the VARA function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the VARA function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The VARA function is one of the statistical functions. It is used to analyze the set of values and calculate the sample variance. Syntax VARA(value1, [value2], ...) The VARA function has the following arguments: Argument Description value1/2/n Up to 255 values for which you want to calculate the variance. Notes Text and FALSE values are counted as 0, TRUE values are counted as 1, empty cells are ignored. How to apply the VARA function. Examples The figure below displays the result returned by the VARA function." }, { "id": "Functions/varp.htm", "title": "VARP Function", - "body": "The VARP function is one of the statistical functions. It is used to analyze the set of values and calculate the variance of an entire population. The VARP function syntax is: VARP(argument-list) where argument-list is a set of numerical values entered manually or included into the cells you make reference to. Note: empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers. To apply the VARP function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the VARP function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The VARP function is one of the statistical functions. It is used to analyze the set of values and calculate the variance of an entire population. Syntax VARP(number1, [number2], ...) The VARP function has the following arguments: Argument Description number1/2/n Up to 255 numeric values for which you want to calculate the variance. Notes Empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers. How to apply the VARP function. Examples The figure below displays the result returned by the VARP function." }, { "id": "Functions/varpa.htm", "title": "VARPA Function", - "body": "The VARPA function is one of the statistical functions. It is used to analyze the set of values and return the variance of an entire population. The VARPA function syntax is: VARPA(argument-list) where argument-list is a set of values entered manually or included into the cells you make reference to. Note: text and FALSE values are counted as 0, TRUE values are counted as 1, empty cells are ignored. To apply the VARPA function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the VARPA function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The VARPA function is one of the statistical functions. It is used to analyze the set of values and return the variance of an entire population. Syntax VARPA(value1, [value2], ...) The VARPA function has the following arguments: Argument Description value1/2/n Up to 255 values for which you want to calculate the variance. Notes Text and FALSE values are counted as 0, TRUE values are counted as 1, empty cells are ignored. How to apply the VARPA function. Examples The figure below displays the result returned by the VARPA function." }, { "id": "Functions/vdb.htm", "title": "VDB Function", - "body": "The VDB function is one of the financial functions. It is used to calculate the depreciation of an asset for a specified or partial accounting period using the variable declining balance method. The VDB function syntax is: VDB(cost, salvage, life, start-period, end-period[, [[factor][, [no-switch-flag]]]]]) where cost is the cost of the asset. salvage is the salvage value of the asset at the end of its lifetime. life is the total number of the periods within the asset lifetime. start-period is a starting period you wish to calculate depreciation for. The value must be expressed in the same units as life. end-period is an ending period you wish to calculate depreciation for. The value must be expressed in the same units as life. factor is the rate at which the balance declines. It is an optional argument. If it is omitted, the function will assume factor to be 2. no-switch-flag is the optional argument that specifies whether to use straight-line depreciation when depreciation is greater than the declining balance calculation. If it is set to FALSE or omitted, the function uses the straight-line depreciation method. If it is set to TRUE, the function uses the declining balance method. Note: all the numeric values must be positive numbers. The values can be entered manually or included into the cell you make reference to. To apply the VDB function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the VDB function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The VDB function is one of the financial functions. It is used to calculate the depreciation of an asset for a specified or partial accounting period using the variable declining balance method. Syntax VDB(cost, salvage, life, start_period, end_period, [factor], [no_switch]) The VDB function has the following arguments: Argument Description cost The cost of the asset. salvage The salvage value of the asset at the end of its lifetime. life The total number of the periods within the asset lifetime. start_period A starting period you wish to calculate depreciation for. The value must be expressed in the same units as life. end_period An ending period you wish to calculate depreciation for. The value must be expressed in the same units as life. factor The rate at which the balance declines. It is an optional argument. If it is omitted, the function will assume factor to be 2. no_switch The optional argument that specifies whether to use straight-line depreciation when depreciation is greater than the declining balance calculation. If it is set to FALSE or omitted, the function uses the straight-line depreciation method. If it is set to TRUE, the function uses the declining balance method. Notes All the numeric values must be positive numbers. How to apply the VDB function. Examples The figure below displays the result returned by the VDB function." }, { "id": "Functions/vlookup.htm", "title": "VLOOKUP Function", - "body": "The VLOOKUP function is one of the lookup and reference functions. It is 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. The VLOOKUP function syntax is: VLOOKUP (lookup-value, table-array, col-index-num[, [range-lookup-flag]]) where lookup-value is a value to search for. table-array is two or more columns containing data sorted in ascending order. col-index-num is a column number in the table-array, a numeric value greater than or equal to 1 but less than the number of columns in the table-array range-lookup-flag is a logical value TRUE or FALSE. It is an optional argument. Enter FALSE to find an exact match. Enter TRUE or omit this argument to find an approximate match, in this case if there is not a value that strictly matches the lookup-value, then the function will choose the next largest value less than the lookup-value. Note: if the range-lookup-flag is set to FALSE, but no exact match is found, then the function will return the #N/A error. To apply the VLOOKUP function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the VLOOKUP function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The VLOOKUP function is one of the lookup and reference functions. It is 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. Syntax VLOOKUP (lookup_value, table_array, col_index_num, [range_lookup]) The VLOOKUP function has the following arguments: Argument Description lookup_value A value to search for. table_array Two or more columns containing data sorted in ascending order. col_index_num A column number in the table_array, a numeric value greater than or equal to 1 but less than the number of columns in the table_array. range_lookup A logical value TRUE or FALSE. It is an optional argument. Enter FALSE to find an exact match. Enter TRUE or omit this argument to find an approximate match, in this case if there is not a value that strictly matches the lookup_value, then the function will choose the next largest value less than the lookup_value. Notes If the range_lookup is set to FALSE, but no exact match is found, then the function will return the #N/A error. How to apply the VLOOKUP function. Examples The figure below displays the result returned by the VLOOKUP function." }, { "id": "Functions/vstack.htm", "title": "VSTACK Function", - "body": "The VSTACK function is one of the lookup and reference functions. It is used to vertically stack arrays into one array. Please note that this is an array formula. To learn more, please read the Insert array formulas article. The VSTACK function syntax is: VSTACK (array1, [array2], ...) where array is used to set the arrays to append. To apply the VSTACK function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the VSTACK function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The VSTACK function is one of the lookup and reference functions. It is used to vertically stack arrays into one array. Syntax VSTACK (array1, [array2], ...) The VSTACK function has the following arguments: Argument Description array1/2/n Is used to set the arrays to append. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the VSTACK function. Examples The figure below displays the result returned by the VSTACK function." }, { "id": "Functions/weekday.htm", "title": "WEEKDAY Function", - "body": "The WEEKDAY function is one of the date and time functions. It is used to determine which day of the week the specified date is. The WEEKDAY function syntax is: WEEKDAY(serial-value [,weekday-start-flag]) where serial-value is a number representing the date of the day you are trying to find, entered using the Date function or other date and time function. weekday-start-flag is a numeric value used to determine the type of the value to be returned. It can be one of the following: Numeric value Explanation 1 or omitted Returns a number from 1 (Sunday) to 7 (Saturday) 2 Returns a number from 1 (Monday) to 7 (Sunday). 3 Returns a number from 0 (Monday) to 6 (Sunday). select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the WEEKDAY function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The WEEKDAY function is one of the date and time functions. It is used to determine which day of the week the specified date is. Syntax WEEKDAY(serial_number, [return_type]) The WEEKDAY function has the following arguments: Argument Description serial_number A number representing the date of the day you are trying to find, entered using the DATE function or other date and time function. return_type A numeric value used to determine the type of the value to be returned. The possible values are listed in the table below. The return_type argument can be one of the following: Numeric value Explanation 1 or omitted Returns a number from 1 (Sunday) to 7 (Saturday) 2 Returns a number from 1 (Monday) to 7 (Sunday). 3 Returns a number from 0 (Monday) to 6 (Sunday). Notes How to apply the WEEKDAY function. Examples The figure below displays the result returned by the WEEKDAY function." }, { "id": "Functions/weeknum.htm", "title": "WEEKNUM Function", - "body": "The WEEKNUM function is one of the date and time functions. It used to return the number of the week the specified date falls within the year. The WEEKNUM function syntax is: WEEKNUM(serial_number, [return_type]) where serial_number is a number representing the date within the week, entered using the Date function or other date and time function. return_type is a numeric value used to determine on which day the week begins. It can be one of the following: Numeric value Week begins on System 1 or omitted Sunday 1 2 Monday 1 11 Monday 1 12 Tuesday 1 13 Wednesday 1 14 Thursday 1 15 Friday 1 16 Saturday 1 17 Sunday 1 21 Monday 2 When return_type is set to 1-17, System 1 is used. This means that the first week in a year is the week that contains January 1. When return_type is set to 21, System 2 is used. This means that the first week in a year is the week that contains the first Thursday of the year. System 2 is commonly used in Europe according to the ISO 8601 standard. To apply the WEEKNUM function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the WEEKNUM function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The WEEKNUM function is one of the date and time functions. It used to return the number of the week the specified date falls within the year. Syntax WEEKNUM(serial_number, [return_type]) The WEEKNUM function has the following arguments: Argument Description serial_number A number representing the date within the week, entered using the DATE function or other date and time function. return_type A numeric value used to determine on which day the week begins. The possible values are listed in the table below. The return_type argument can be one of the following: Numeric value Week begins on System 1 or omitted Sunday 1 2 Monday 1 11 Monday 1 12 Tuesday 1 13 Wednesday 1 14 Thursday 1 15 Friday 1 16 Saturday 1 17 Sunday 1 21 Monday 2 Notes When return_type is set to 1-17, System 1 is used. This means that the first week in a year is the week that contains January 1. When return_type is set to 21, System 2 is used. This means that the first week in a year is the week that contains the first Thursday of the year. System 2 is commonly used in Europe according to the ISO 8601 standard. How to apply the WEEKNUM function. Examples The figure below displays the result returned by the WEEKNUM function." }, { "id": "Functions/weibull-dist.htm", "title": "WEIBULL.DIST Function", - "body": "The WEIBULL.DIST function is one of the statistical functions. It is used to return the Weibull distribution. Use this distribution in reliability analysis, such as calculating a device's mean time to failure. The WEIBULL.DIST function syntax is: WEIBULL.DIST(x, alpha, beta, cumulative) where x is the value between at which the function should be calculated, a numeric value greater than or equal to 0. alpha is the first parameter of the distribution, a numeric value greater than 0. beta is the second parameter of the distribution, a numeric value greater than 0. cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function. The values can be entered manually or included into the cells you make reference to. To apply the WEIBULL.DIST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the WEIBULL.DIST function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The WEIBULL.DIST function is one of the statistical functions. It is used to return the Weibull distribution. Use this distribution in reliability analysis, such as calculating a device's mean time to failure. Syntax WEIBULL.DIST(x, alpha, beta, cumulative) The WEIBULL.DIST function has the following arguments: Argument Description x The value between at which the function should be calculated, a numeric value greater than or equal to 0. alpha The first parameter of the distribution, a numeric value greater than 0. beta The second parameter of the distribution, a numeric value greater than 0. cumulative A logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function. Notes How to apply the WEIBULL.DIST function. Examples The figure below displays the result returned by the WEIBULL.DIST function." }, { "id": "Functions/weibull.htm", "title": "WEIBULL Function", - "body": "The WEIBULL function is one of the statistical functions. It is used to return the Weibull distribution. Use this distribution in reliability analysis, such as calculating a device's mean time to failure. The WEIBULL function syntax is: WEIBULL(x, alpha, beta, cumulative) where x is the value between at which the function should be calculated, a numeric value greater than or equal to 0. alpha is the first parameter of the distribution, a numeric value greater than 0. beta is the second parameter of the distribution, a numeric value greater than 0. cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function. The values can be entered manually or included into the cells you make reference to. To apply the WEIBULL function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the WEIBULL function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The WEIBULL function is one of the statistical functions. It is used to return the Weibull distribution. Use this distribution in reliability analysis, such as calculating a device's mean time to failure. Syntax WEIBULL(x, alpha, beta, cumulative) The WEIBULL function has the following arguments: Argument Description x The value between at which the function should be calculated, a numeric value greater than or equal to 0. alpha The first parameter of the distribution, a numeric value greater than 0. beta The second parameter of the distribution, a numeric value greater than 0. cumulative A logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function. Notes How to apply the WEIBULL function. Examples The figure below displays the result returned by the WEIBULL function." }, { "id": "Functions/workday-intl.htm", "title": "WORKDAY.INTL Function", - "body": "The WORKDAY.INTL function is one of the date and time functions. It is used to return the date before or after a specified number of workdays with custom weekend parameters; weekend parameters indicate which and how many days are weekend days. The WORKDAY.INTL function syntax is: WORKDAY.INTL(start_date, days, [, weekend], [, holidays]) where start_date is the first date of the period entered using the Date function or other date and time function. days is a number of workdays before or after start_date. If the days has the negative sign, the function will return the date which comes before the specified start_date. If the days has the positive sign, the function will return the date which follows after the specified start_date. weekend is an optional argument, a number or a string that specifies which days to consider weekends. The possible numbers are listed in the table below. Number Weekend days 1 or omitted Saturday, Sunday 2 Sunday, Monday 3 Monday, Tuesday 4 Tuesday, Wednesday 5 Wednesday, Thursday 6 Thursday, Friday 7 Friday, Saturday 11 Sunday only 12 Monday only 13 Tuesday only 14 Wednesday only 15 Thursday only 16 Friday only 17 Saturday only A string that specifies weekend days must contain 7 characters. Each character represents a day of the week, starting from Monday. 0 represents a workday, 1 represents a weekend day. E.g. \"0000011\" specifies that weekend days are Saturday and Sunday. The string \"1111111\" is not valid. holidays is an optional argument that specifies which dates in addition to weekend are nonworking. You can enter them using the Date function or other date and time function or specify a reference to a range of cells containing dates. To apply the WORKDAY.INTL function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the WORKDAY.INTL function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The WORKDAY.INTL function is one of the date and time functions. It is used to return the date before or after a specified number of workdays with custom weekend parameters; weekend parameters indicate which and how many days are weekend days. Syntax WORKDAY.INTL(start_date, days, [weekend], [holidays]) The WORKDAY.INTL function has the following arguments: Argument Description start_date The first date of the period entered using the DATE function or other date and time function. days A number of nonweekend before or after start_date. If the days has the negative sign, the function will return the date which comes before the specified start_date. If the days has the positive sign, the function will return the date which follows after the specified start_date. weekend An optional argument, a number or a string that specifies which days to consider weekends. The possible numbers are listed in the table below. holidays An optional argument that specifies which dates besides weekends are nonworking. You can enter them using the DATE function or other date and time function or specify a reference to a range of cells containing dates. The weekend argument can be one of the following: Number Weekend days 1 or omitted Saturday, Sunday 2 Sunday, Monday 3 Monday, Tuesday 4 Tuesday, Wednesday 5 Wednesday, Thursday 6 Thursday, Friday 7 Friday, Saturday 11 Sunday only 12 Monday only 13 Tuesday only 14 Wednesday only 15 Thursday only 16 Friday only 17 Saturday only Notes A string that specifies weekend days must contain 7 characters. Each character represents a day of the week, starting from Monday. 0 represents a workday, 1 represents a weekend day. E.g. \"0000011\" specifies that weekend days are Saturday and Sunday. The string \"1111111\" is not valid. How to apply the WORKDAY.INTL function. Examples The figure below displays the result returned by the WORKDAY.INTL function." }, { "id": "Functions/workday.htm", "title": "WORKDAY Function", - "body": "The WORKDAY function is one of the date and time functions. It is 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. The WORKDAY function syntax is: WORKDAY(start-day, day-offset [,holidays]) where start-day is the first date of the period entered using the Date function or other date and time function. day-offset is a number of nonweekend before or after start-day. If the day-offset has the negative sign, the function will return the date which comes before the specified start-date. If the day-offset has the positive sign, the function will return the date which follows after the specified start-date. holidays is an optional argument that specifies which dates besides weekends are nonworking. You can enter them using the Date function or other date and time function or specify a reference to a range of cells containing dates. To apply the WORKDAY function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the WORKDAY function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The WORKDAY function is one of the date and time functions. It is 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. Syntax WORKDAY(start_date, days, [holidays]) The WORKDAY function has the following arguments: Argument Description start_date The first date of the period entered using the DATE function or other date and time function. days A number of nonweekend before or after start_date. If the days has the negative sign, the function will return the date which comes before the specified start_date. If the days has the positive sign, the function will return the date which follows after the specified start_date. holidays An optional argument that specifies which dates besides weekends are nonworking. You can enter them using the DATE function or other date and time function or specify a reference to a range of cells containing dates. Notes How to apply the WORKDAY function. Examples The figure below displays the result returned by the WORKDAY function." }, { "id": "Functions/wrapcols.htm", "title": "WRAPCOLS Function", - "body": "The WRAPCOLS function is one of the lookup and reference functions. It is used to wrap a row or column vector after a specified number of values. Please note that this is an array formula. To learn more, please read the Insert array formulas article. The WRAPCOLS function syntax is: WRAPCOLS(vector, wrap_count, [pad_with]) where vector is used to set the vector or reference to wrap. wrap_count is used to set the maximum number of values for each column. pad_with is used to set the value with which to pad. Defaults to #N/A. To apply the WRAPCOLS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the WRAPCOLS function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The WRAPCOLS function is one of the lookup and reference functions. It is used to wrap a row or column vector by columns after a specified number of values. Syntax WRAPCOLS(vector, wrap_count, [pad_with]) The WRAPCOLS function has the following arguments: Argument Description vector Is used to set the vector or reference to wrap. wrap_count Is used to set the maximum number of values for each column. pad_with Is used to set the value with which to pad. Defaults to #N/A. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the WRAPCOLS function. Examples The figure below displays the result returned by the WRAPCOLS function. It wraps the row in range A1:F1 to an array in range A3:C5 by columns." }, { "id": "Functions/wraprows.htm", "title": "WRAPROWS Function", - "body": "The WRAPROWS function is one of the lookup and reference functions. It is used to wrap a row or column vector after a specified number of values. Please note that this is an array formula. To learn more, please read the Insert array formulas article. The WRAPROWS function syntax is: WRAPROWS(vector, wrap_count, [pad_with]) where vector is used to set the vector or reference to wrap. wrap_count is used to set the maximum number of values for each row. pad_with is used to set the value with which to pad. Defaults to #N/A. To apply the WRAPROWS function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the WRAPROWS function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." + "body": "The WRAPROWS function is one of the lookup and reference functions. It is used to wrap a row or column vector by rows after a specified number of values. Syntax WRAPROWS(vector, wrap_count, [pad_with]) The WRAPROWS function has the following arguments: Argument Description vector Is used to set the vector or reference to wrap. wrap_count Is used to set the maximum number of values for each row. pad_with Is used to set the value with which to pad. Defaults to #N/A. Notes Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the WRAPROWS function. Examples The figure below displays the result returned by the WRAPROWS function. It wraps the row in range A1:F1 to an array in range A3:C5 by rows." }, { "id": "Functions/xirr.htm", "title": "XIRR Function", - "body": "The XIRR function is one of the financial functions. It is used to calculate the internal rate of return for a series of irregular cash flows. The XIRR function syntax is: XIRR(values, dates [,[guess]]) where values is an array that contains the series of payments occuring irregularly. At least one of the values must be negative and at least one positive. dates is an array that contains the payment dates when the payments are made or received. Dates must be entered by using the DATE function. guess is an estimate at what the internal rate of return will be. It is an optional argument. If it is omitted, the function will assume guess to be 10%. The numeric values can be entered manually or included into the cell you make reference to. To apply the XIRR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the XIRR function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The XIRR function is one of the financial functions. It is used to calculate the internal rate of return for a series of irregular cash flows. Syntax XIRR(values, dates, [guess]) The XIRR function has the following arguments: Argument Description values An array that contains the series of payments occuring irregularly. At least one of the values must be negative and at least one positive. dates An array that contains the payment dates when the payments are made or received. Dates must be entered by using the DATE function. guess An estimate at what the internal rate of return will be. It is an optional argument. If it is omitted, the function will assume guess to be 10%. Notes How to apply the XIRR function. Examples The figure below displays the result returned by the XIRR function." }, { "id": "Functions/xlookup.htm", "title": "XLOOKUP Function", - "body": "The XLOOKUP function is one of the lookup and reference functions. It is used to perform the search for a specific item by row both horizontally and vertically. The result is returned in another column and can accommodate two-dimensional datasets. The XLOOKUP function syntax is: XLOOKUP (lookup_value, lookup_array, return_array, [if_not_found], [match_mode], [search_mode]) where lookup_value is a value to search for. lookup_array is an array or range to search in. return_array is an array or range to return the results to. if_not_found is an optional argument. If there is no search result, the argument returns the text stated in [if_not_found]. In case the text is not specified, the “N/A” is returned. match_mode is an optional argument. The following values are available: 0 (set by default) returns the exact match; if there is no match, the “N/A” is returned instead. -1 returns the exact match; if there is none, the next smaller item is returned. 1 returns the exact match; if there is none, the next larger item is returned. 2 is a wildcard match. search_mode is an optional argument. The following values are available: 1 starts a search at the first item (set by default). -1 starts a reverse search, i.e. at the last item. 2 starts a binary search with the lookup_array sorted in ascending order. If not sorted, invalid results will be returned. -2 starts a binary search with the lookup_array sorted in descending order. If not sorted, invalid results will be returned. Wildcard characters include the question mark (?) that matches a single character and the asterisk (*) that matches multiple characters. If you want to find a question mark or asterisk, type a tilde (~) before the character. To apply the XLOOKUP function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the XLOOKUP function, enter the required arguments in the Function Arguments window, press the Enter button. The result will be displayed in the selected cell." + "body": "The XLOOKUP function is one of the lookup and reference functions. It is used to perform the search for a specific item by row both horizontally and vertically. The result is returned in another column and can accommodate two-dimensional datasets. Syntax XLOOKUP (lookup_value, lookup_array, return_array, [if_not_found], [match_mode], [search_mode]) The XLOOKUP function has the following arguments: Argument Description lookup_value A value to search for. lookup_array An array or range to search in. return_array An array or range to return the results to. if_not_found An optional argument. If there is no search result, the argument returns the text stated in [if_not_found]. In case the text is not specified, the “N/A” is returned. match_mode An optional argument. The possible values are listed in the table below. search_mode An optional argument. The possible values are listed in the table below. The match_mode argument can be one of the following: Value Description 0 Set by default. Returns the exact match; if there is no match, the “N/A” is returned instead. -1 Returns the exact match; if there is none, the next smaller item is returned. 1 Returns the exact match; if there is none, the next larger item is returned. 2 A wildcard match. The search_mode argument can be one of the following: Value Description 1 Set by default. Starts a search at the first item. -1 Starts a reverse search, i.e. at the last item. 2 Starts a binary search with the lookup_array sorted in ascending order. If not sorted, invalid results will be returned. -2 Starts a binary search with the lookup_array sorted in descending order. If not sorted, invalid results will be returned. Notes Wildcard characters include the question mark (?) that matches a single character and the asterisk (*) that matches multiple characters. If you want to find a question mark or asterisk, type a tilde (~) before the character. Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the XLOOKUP function. Examples The figure below displays the result returned by the XLOOKUP function." }, { "id": "Functions/xmatch.htm", "title": "XMATCH Function", - "body": "The XMATCH function is one of the lookup and reference functions. It is used to return the relative position of an item in an array. By default, an exact match is required. Please note that this is an array formula. To learn more, please read the Insert array formulas article. The XMATCH function syntax is: =XMATCH(lookup_value, lookup_array, [match_mode], [search_mode]) where lookup_value is a value to search for. lookup_array is an array or range to search in. match_mode is an optional argument. The following values are available: 0 (set by default) returns the exact match; if there is no match, the “N/A” is returned instead. -1 returns the exact match; if there is none, the next smaller item is returned. 1 returns the exact match; if there is none, the next larger item is returned. 2 is a wildcard match. search_mode is an optional argument. The following values are available: 1 starts a search at the first item (set by default). -1 starts a reverse search, i.e. at the last item. 2 starts a binary search with the lookup_array sorted in ascending order. If not sorted, invalid results will be returned. -2 starts a binary search with the lookup_array sorted in descending order. If not sorted, invalid results will be returned. Wildcard characters include the question mark (?) that matches a single character and the asterisk (*) that matches multiple characters. If you want to find a question mark or asterisk, type a tilde (~) before the character. To apply the XMATCH function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Lookup and Reference function group from the list, click the XMATCH function, enter the required arguments in the Function Arguments window, press the Enter button. The result will be displayed in the selected cell." + "body": "The XMATCH function is one of the lookup and reference functions. It is used to return the relative position of an item in an array. By default, an exact match is required. Syntax XMATCH(lookup_value, lookup_array, [match_mode], [search_mode]) The XMATCH function has the following arguments: Argument Description lookup_value A value to search for. lookup_array An array or range to search in. match_mode An optional argument. The possible values are listed in the table below. search_mode An optional argument. The possible values are listed in the table below. The match_mode argument can be one of the following: Value Description 0 Set by default. Returns the exact match; if there is no match, the “N/A” is returned instead. -1 Returns the exact match; if there is none, the next smaller item is returned. 1 Returns the exact match; if there is none, the next larger item is returned. 2 A wildcard match. The search_mode argument can be one of the following: Value Description 1 Set by default. Starts a search at the first item. -1 Starts a reverse search, i.e. at the last item. 2 Starts a binary search with the lookup_array sorted in ascending order. If not sorted, invalid results will be returned. -2 Starts a binary search with the lookup_array sorted in descending order. If not sorted, invalid results will be returned. Notes Wildcard characters include the question mark (?) that matches a single character and the asterisk (*) that matches multiple characters. If you want to find a question mark or asterisk, type a tilde (~) before the character. Please note that this is an array formula. To learn more, please read the Insert array formulas article. How to apply the XMATCH function. Examples The figure below displays the result returned by the XMATCH function." }, { "id": "Functions/xnpv.htm", "title": "XNPV Function", - "body": "The XNPV function is one of the financial functions. It is used to calculate the net present value for an investment based on a specified interest rate and a schedule of irregular payments. The XNPV function syntax is: XNPV(rate, values, dates) where rate is the discount rate for the investment. values is an array that contains the income (positive values) or payment (negative values) amounts. At least one of the values must be negative and at least one positive. dates is an array that contains the payment dates when the payments are made or received. The values can be entered manually or included into the cell you make reference to. To apply the XNPV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the XNPV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The XNPV function is one of the financial functions. It is used to calculate the net present value for an investment based on a specified interest rate and a schedule of irregular payments. Syntax XNPV(rate, values, dates) The XNPV function has the following arguments: Argument Description rate The discount rate for the investment. values An array that contains the income (positive values) or payment (negative values) amounts. At least one of the values must be negative and at least one positive. dates An array that contains the payment dates when the payments are made or received. Notes How to apply the XNPV function. Examples The figure below displays the result returned by the XNPV function." }, { "id": "Functions/xor.htm", "title": "XOR Function", - "body": "The XOR function is one of the logical functions. It is used to return a logical Exclusive Or of all arguments. The function returns TRUE when the number of TRUE inputs is odd and FALSE when the number of TRUE inputs is even. The XOR function syntax is: XOR(logical1 [, logical2], ...) where logical1 is a value entered manually or included into the cell you make reference to. To apply the XOR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Logical function group from the list, click the XOR function, enter the required arguments separating them by commas, Note: you can enter up to 254 logical values. press the Enter button. The result will be displayed in the selected cell. For example: There are two arguments: logical1 = 1>0, logical2 = 2>0. The number of TRUE inputs is even, so the function returns FALSE. There are two arguments: logical1 = 1>0, logical2 = 2<0. The number of TRUE inputs is odd, so the function returns TRUE." + "body": "The XOR function is one of the logical functions. It is used to return a logical Exclusive Or of all arguments. The function returns TRUE when the number of TRUE inputs is odd and FALSE when the number of TRUE inputs is even. Syntax XOR(logical1, [logical2], ...) The XOR function has the following arguments: Argument Description logical1/2/n A condition that you want to check if it is TRUE or FALSE Notes You can enter up to 255 logical values. How to apply the XOR function. Examples There are two arguments: logical1 = 1>0, logical2 = 2>0. The number of TRUE inputs is even, so the function returns FALSE. There are two arguments: logical1 = 1>0, logical2 = 2<0. The number of TRUE inputs is odd, so the function returns TRUE." }, { "id": "Functions/year.htm", "title": "YEAR Function", - "body": "The YEAR function is one of the date and time functions. It returns the year (a number from 1900 to 9999) of the date given in the numerical format (MM/dd/yyyy by default). The YEAR function syntax is: YEAR(date-value) where date-value is a value entered manually or included into the cell you make reference to. To apply the YEAR function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the YEAR function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + "body": "The YEAR function is one of the date and time functions. It returns the year (a number from 1900 to 9999) of the date given in the numerical format (MM/dd/yyyy by default). Syntax YEAR(serial_number) The YEAR function has the following argument: Argument Description serial_number The date of the year you want to find. Notes How to apply the YEAR function. Examples The figure below displays the result returned by the YEAR function." }, { "id": "Functions/yearfrac.htm", "title": "YEARFRAC Function", - "body": "The YEARFRAC function is one of the date and time functions. It is 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. The YEARFRAC function syntax is: YEARFRAC(start-date, end-date [,basis]) where start-date is a number representing the first date of the period, entered using the Date function or other date and time function. end-date is a number representing the last date of the period, entered using the Date function or other date and time function. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: if the start-date, end-date or basis is a decimal value, the function will ignore the numbers to the right of the decimal point. To apply the YEARFRAC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Date and time function group from the list, click the YEARFRAC function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The YEARFRAC function is one of the date and time functions. It is 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. Syntax YEARFRAC(start_date, end_date, [basis]) The YEARFRAC function has the following arguments: Argument Description start_date A number representing the first date of the period, entered using the DATE function or other date and time function. end_date A number representing the last date of the period, entered using the DATE function or other date and time function. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes If the start_date, end_date or basis is a decimal value, the function will ignore the numbers to the right of the decimal point. How to apply the YEARFRAC function. Examples The figure below displays the result returned by the YEARFRAC function." }, { "id": "Functions/yield.htm", "title": "YIELD Function", - "body": "The YIELD function is one of the financial functions. It is used to calculate the yield of a security that pays periodic interest. The YIELD function syntax is: YIELD(settlement, maturity, rate, pr, redemption, frequency[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. rate is the annual coupon rate of the security. pr is the purchase price of the security, per $100 par value. redemption is the redemption value of the security, per $100 par value. frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the YIELD function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the YIELD function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The YIELD function is one of the financial functions. It is used to calculate the yield of a security that pays periodic interest. Syntax YIELD(settlement, maturity, rate, pr, redemption, frequency, [basis]) The YIELD function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. rate The annual coupon rate of the security. pr The purchase price of the security, per $100 par value. redemption The redemption value of the security, per $100 par value. frequency The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the YIELD function. Examples The figure below displays the result returned by the YIELD function." }, { "id": "Functions/yielddisc.htm", "title": "YIELDDISC Function", - "body": "The YIELDDISC function is one of the financial functions. It is used to calculate the annual yield of a discounted security. The YIELDDISC function syntax is: YIELDDISC(settlement, maturity, pr, redemption,[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. pr is the purchase price of the security, per $100 par value. redemption is the redemption value of the security, per $100 par value. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the YIELDDISC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the YIELDDISC function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The YIELDDISC function is one of the financial functions. It is used to calculate the annual yield of a discounted security. Syntax YIELDDISC(settlement, maturity, pr, redemption, [basis]) The YIELDDISC function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. pr The purchase price of the security, per $100 par value. redemption The redemption value of the security, per $100 par value. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the YIELDDISC function. Examples The figure below displays the result returned by the YIELDDISC function." }, { "id": "Functions/yieldmat.htm", "title": "YIELDMAT Function", - "body": "The YIELDMAT function is one of the financial functions. It is used to calculate the annual yield of a security that pays interest at maturity. The YIELDMAT function syntax is: YIELDMAT(settlement, maturity, issue, rate, pr[, [basis]]) where settlement is the date when the security is purchased. maturity is the date when the security expires. issue is the issue date of the security. rate is the interest rate of the security at the issue date. pr is the purchase price of the security, per $100 par value. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the YIELDMAT function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the YIELDMAT function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + "body": "The YIELDMAT function is one of the financial functions. It is used to calculate the annual yield of a security that pays interest at maturity. Syntax YIELDMAT(settlement, maturity, issue, rate, pr, [basis) The YIELDMAT function has the following arguments: Argument Description settlement The date when the security is purchased. maturity The date when the security expires. issue The issue date of the security. rate The interest rate of the security at the issue date. pr The purchase price of the security, per $100 par value. basis The day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below. The basis argument can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Notes Dates must be entered by using the DATE function. How to apply the YIELDMAT function. Examples The figure below displays the result returned by the YIELDMAT function." }, { "id": "Functions/z-test.htm", "title": "Z.TEST Function", - "body": "The Z.TEST function is one of the statistical functions. It is used to return the one-tailed P-value of a z-test. For a given hypothesized population mean, x, Z.TEST returns the probability that the sample mean would be greater than the average of observations in the data set (array) — that is, the observed sample mean. The Z.TEST function syntax is: Z.TEST(array, x [, sigma]) where array is the range of numeric values against which to test x. x is the value to test. sigma is a population standard deviation. This is an optional argument. If it is omitted, the sample standard deviation is used. The values can be entered manually or included into the cell you make reference to. To apply the Z.TEST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the Z.TEST function, enter the required arguments separating by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The Z.TEST function is one of the statistical functions. It is used to return the one-tailed P-value of a z-test. For a given hypothesized population mean, x, Z.TEST returns the probability that the sample mean would be greater than the average of observations in the data set (array) — that is, the observed sample mean. Syntax Z.TEST(array, x, [sigma]) The Z.TEST function has the following arguments: Argument Description array The range of numeric values against which to test x. x The value to test. sigma A population standard deviation. This is an optional argument. If it is omitted, the sample standard deviation is used. Notes How to apply the Z.TEST function. Examples The figure below displays the result returned by the Z.TEST function." }, { "id": "Functions/ztest.htm", "title": "ZTEST Function", - "body": "The ZTEST function is one of the statistical functions. It is used to return the one-tailed probability-value of a z-test. For a given hypothesized population mean, μ0, ZTEST returns the probability that the sample mean would be greater than the average of observations in the data set (array) — that is, the observed sample mean. The ZTEST function syntax is: ZTEST(array, x [, sigma]) where array is the range of numeric values against which to test x. x is the value to test. sigma is a population standard deviation. This is an optional argument. If it is omitted, the sample standard deviation is used. The values can be entered manually or included into the cell you make reference to. To apply the ZTEST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the ZTEST function, enter the required arguments separating by commas or select a range of cells with the mouse, press the Enter button. The result will be displayed in the selected cell." + "body": "The ZTEST function is one of the statistical functions. It is used to return the one-tailed probability-value of a z-test. For a given hypothesized population mean, μ0, ZTEST returns the probability that the sample mean would be greater than the average of observations in the data set (array) — that is, the observed sample mean. Syntax ZTEST(array, x, [sigma]) The ZTEST function has the following arguments: Argument Description array The range of numeric values against which to test x. x The value to test. sigma A population standard deviation. This is an optional argument. If it is omitted, the sample standard deviation is used. Notes How to apply the ZTEST function. Examples The figure below displays the result returned by the ZTEST function." }, { "id": "HelpfulHints/About.htm", "title": "About Spreadsheet Editor", - "body": "The Spreadsheet Editor is an online application that allows you to edit spreadsheets directly in your browser . Using the Spreadsheet Editor, you can perform various editing operations like in any desktop editor, print the edited spreadsheets keeping all the formatting details or download them onto your computer hard disk drive as XLSX, PDF, ODS, CSV, XLTX, PDF/A, OTS file. To view the current version of the software, build number, and licensor details in the online version, click the About icon on the left sidebar. To view the current version of the software and licensor details in the desktop version for Windows, select the About menu item on the left sidebar of the main program window. In the desktop version for Mac OS, open the ONLYOFFICE menu at the top of the screen and select the About ONLYOFFICE menu item." + "body": "The Spreadsheet Editor is an online application that allows you to edit spreadsheets directly in your browser . Using the Spreadsheet Editor, you can perform various editing operations like in any desktop editor, print the edited spreadsheets keeping all the formatting details or download them onto your computer hard disk drive as XLSX, XLTX, PDF, PDF/A, ODS, OTS, CSV, PNG, JPG file. To view the current version of the software, build number, and licensor details in the online version, click the About icon on the left sidebar. To view the current version of the software and licensor details in the desktop version for Windows, select the About menu item on the left sidebar of the main program window. In the desktop version for Mac OS, open the ONLYOFFICE menu at the top of the screen and select the About ONLYOFFICE menu item." }, { "id": "HelpfulHints/AdvancedSettings.htm", "title": "Advanced Settings of the Spreadsheet Editor", - "body": "The Spreadsheet Editor allows you to change its general advanced settings. To access them, open the File tab on the top toolbar and select the Advanced Settings option. The advanced settings are grouped as follows: Editing and saving Autosave is used in the online version to turn on/off automatic saving of changes made during the editing process. Autorecover is used in the desktop version to turn on/off the option that allows you to automatically recover spreadsheets if the program closes unexpectedly. Show the Paste Options button when the content is pasted. The corresponding icon will appear when you paste content in the spreadsheet. Collaboration The Co-editing mode subsection allows you to set the preferable mode for seeing changes made to the spreadsheet when working in collaboration. Fast (by default). The users who take part in the spreadsheet co-editing will see the changes in real time once they are made by other users. Strict. All the changes made by co-editors will be shown only after you click the Save icon that will notify you about new changes. Show changes from other users. This feature allows to see changes made by other users in the spreadsheet opened for viewing only in the Live Viewer mode. Show comments in text. If you disable this feature, the commented passages will be highlighted only if you click the Comments icon on the left sidebar. Show resolved comments. This feature is disabled by default so that the resolved comments are hidden in the spreadsheet. You can view such comments only if you click the Comments icon on the left sidebar. Enable this option if you want to display resolved comments in the spreadsheet. Workspace The R1C1 reference style option is disabled by default and the A1 reference style is used. When the A1 reference style is used, columns are designated by letters, and rows are designated by numbers. If you select the cell located in row 3 and column 2, its address displayed in the box to the left of the the formula bar looks like this: B3. If the R1C1 reference style is enabled, both rows and columns are designated by numbers. If you select the cell at the intersection of row 3 and column 2, its address will look like this: R3C2. Letter R indicates the row number and letter C indicates the column number. In case you refer to other cells using the R1C1 reference style, the reference to a target cell is formed based on the distance from an active cell. For example, when you select the cell in row 5 and column 1 and refer to the cell in row 3 and column 2, the reference is R[-2]C[1]. The numbers in square brackets designate the position of the cell relative to the current cell position, i.e. the target cell is 2 rows up and 1 column to the right of the active cell. If you select the cell in row 1 and column 2 and refer to the same cell in row 3 and column 2, the reference is R[2]C, i.e. the target cell is 2 rows down from the active cell and in the same column. The Use Alt key to navigate the user interface using the keyboard option is used to enable using the Alt / Option key in keyboard shortcuts. The Interface theme option is used to change the color scheme of the editor’s interface. The Same as system option makes the editor follow the interface theme of your system. The Light color scheme incorporates standard blue, white, and light gray colors with less contrast in UI elements suitable for working during daytime. The Classic Light color scheme incorporates standard blue, white, and light gray colors. The Dark color scheme incorporates black, dark gray, and light gray colors suitable for working during nighttime. The Contrast Dark color scheme incorporates black, dark gray, and white colors with more contrast in UI elements highlighting the working area of the file. Note: Apart from the available Light, Classic Light, Dark, and Contrast Dark interface themes, ONLYOFFICE editors can now be customized with your own color theme. Please follow these instructions to learn how you can do that. The Unit of Measurement option is used to specify what units are used on the rulers and in properties of objects when setting such parameters as width, height, spacing, margins etc. The available units are Centimeter, Point, and Inch. The Default Zoom Value option is used to set the default zoom value, selecting it in the list of available options from 50% to 500%. You can also choose the Fit to Page, Fit to Width, or Last Used option. The Last Used option refers to the last set scaling during the current session. The Font Hinting option is used to select how fonts are displayed in the Spreadsheet Editor. Choose As Windows if you like the way fonts are usually displayed on Windows, i.e. using Windows font hinting. Choose As OS X if you like the way fonts are usually displayed on a Mac, i.e. without any font hinting at all. Choose Native to display the text with hinting embedded into the font files. Default cache mode - used to select the cache mode for the font characters. It’s not recommended to switch it without any reason. It can be helpful in some cases only, for example, when an issue with the enabled hardware acceleration in the Google Chrome browser occurs. The Spreadsheet Editor has two cache modes: In the first cache mode, each letter is cached as a separate picture. In the second cache mode, a picture of a certain size is selected where letters are placed dynamically and a mechanism of allocating/removing memory in this picture is also implemented. If there is not enough memory, a second picture is created, etc. The Default cache mode setting applies two above mentioned cache modes separately for different browsers: When the Default cache mode setting is enabled, Internet Explorer (v. 9, 10, 11) uses the second cache mode, other browsers use the first cache mode. When the Default cache mode setting is disabled, Internet Explorer (v. 9, 10, 11) uses the first cache mode, other browsers use the second cache mode. The Macros Settings option is used to set macros display with a notification. Choose Disable All to disable all macros within the spreadsheet. Choose Show Notification to receive notifications about macros within the spreadsheet. Choose Enable All to automatically run all macros within the spreadsheet. Regional Settings The Formula Language option is used to select the language for displaying and entering formula names, argument names, and descriptions. Formula language is supported for 33 languages: Armenian, Belarussian, Bulgarian, Catalan, Chinese, Czech, Danish, Dutch, English, Finnish, French, German, Greek, Hungarian, Indonesian, Italian, Japanese, Korean, Lao, Latvian, Norwegian, Polish, Portuguese (Brazil), Portuguese (Portugal), Romanian, Russian, Slovak, Slovenian, Spanish, Swedish, Turkish, Ukrainian, Vietnamese. The Region option is used to set the display mode for currency, date, and time. Available regions: Azerbaijani, Bulgarian, Czech, Danish, German (Austria), German (Germany), German (Switzerland), Greek (Greece), English (Australia), English (United Kingdom), English (USA), Spanish (Spain), Spanish (Mexico), Finnish (Finland), French (France), French (Switzerland), Italian (Italy), Italian (Switzerland), Japanese, Korean, Latvian, Hungarian, Dutch (Netherlands), Polish (Poland), Portuguese (Brazil), Portuguese (Portugal), Slovak, Slovenian, Swedish (Finland), Swedish (Sweden), Turkish, Ukrainian, Vietnamese, Chinese, Taiwanese. The Use separators based on regional settings option is enabled by default, the separators will correspond to the set region. To set custom separators, uncheck this option and enter the required separators in Decimal separator and Thousands separator fields. Proofing The Dictionary language option is used to set the preferred dictionary for the spell checking. Ignore words in UPPERCASE. Words typed in capital letters are ignored during the spell checking. Ignore words with numbers. Words with numbers in them are ignored during the spell checking. The AutoCorrect options menu allows you to access the autocorrect settings such as replacing text as you type, recognizing functions, automatic formatting etc. Calculating The Use 1904 date system option is used to calculate dates by using January 1, 1904, as a starting point. It can be useful when working with spreadsheets created in MS Excel 2008 for Mac and earlier MS Excel for Mac versions. To save the changes you made, click the Apply button." + "body": "The Spreadsheet Editor allows you to change its general advanced settings. To access them, open the File tab on the top toolbar and select the Advanced Settings option. The advanced settings are grouped as follows: Editing and saving Autosave is used in the online version to turn on/off automatic saving of changes made during the editing process. Autorecover is used in the desktop version to turn on/off the option that allows you to automatically recover spreadsheets if the program closes unexpectedly. Show the Paste Options button when the content is pasted. The corresponding icon will appear when you paste content in the spreadsheet. Collaboration The Co-editing mode subsection allows you to set the preferable mode for seeing changes made to the spreadsheet when working in collaboration. Fast (by default). The users who take part in the spreadsheet co-editing will see the changes in real time once they are made by other users. Strict. All the changes made by co-editors will be shown only after you click the Save icon that will notify you about new changes. Show changes from other users. This feature allows to see changes made by other users in the spreadsheet opened for viewing only in the Live Viewer mode. Show comments in text. If you disable this feature, the commented passages will be highlighted only if you click the Comments icon on the left sidebar. Show resolved comments. This feature is disabled by default so that the resolved comments are hidden in the spreadsheet. You can view such comments only if you click the Comments icon on the left sidebar. Enable this option if you want to display resolved comments in the spreadsheet. Workspace The Turn on screen reader support option is used to enable support of screen reader software. The R1C1 reference style option is disabled by default and the A1 reference style is used. When the A1 reference style is used, columns are designated by letters, and rows are designated by numbers. If you select the cell located in row 3 and column 2, its address displayed in the box to the left of the the formula bar looks like this: B3. If the R1C1 reference style is enabled, both rows and columns are designated by numbers. If you select the cell at the intersection of row 3 and column 2, its address will look like this: R3C2. Letter R indicates the row number and letter C indicates the column number. In case you refer to other cells using the R1C1 reference style, the reference to a target cell is formed based on the distance from an active cell. For example, when you select the cell in row 5 and column 1 and refer to the cell in row 3 and column 2, the reference is R[-2]C[1]. The numbers in square brackets designate the position of the cell relative to the current cell position, i.e. the target cell is 2 rows up and 1 column to the right of the active cell. If you select the cell in row 1 and column 2 and refer to the same cell in row 3 and column 2, the reference is R[2]C, i.e. the target cell is 2 rows down from the active cell and in the same column. The Use Alt key to navigate the user interface using the keyboard option is used to enable using the Alt / Option key in keyboard shortcuts. Show the Quick Print button in the editor header is used in the desktop version to enable quick printing via the corresponding button at the top toolbar. The file will be printed on the last selected or default printer. The RTL Interface (Beta) option is used to change the direction in which elements of the interface are displayed. The Interface theme option is used to change the color scheme of the editor’s interface. The Same as system option makes the editor follow the interface theme of your system. The Light color scheme incorporates standard blue, white, and light gray colors with less contrast in UI elements suitable for working during daytime. The Classic Light color scheme incorporates standard blue, white, and light gray colors. The Dark color scheme incorporates black, dark gray, and light gray colors suitable for working during nighttime. The Contrast Dark color scheme incorporates black, dark gray, and white colors with more contrast in UI elements highlighting the working area of the file. Note: Apart from the available Light, Classic Light, Dark, and Contrast Dark interface themes, ONLYOFFICE editors can now be customized with your own color theme. Please follow these instructions to learn how you can do that. The Unit of Measurement option is used to specify what units are used on the rulers and in properties of objects when setting such parameters as width, height, spacing, margins etc. The available units are Centimeter, Point, and Inch. The Default Zoom Value option is used to set the default zoom value, selecting it in the list of available options from 50% to 500%. You can also choose the Fit to Page, Fit to Width, or Last Used option. The Last Used option refers to the last set scaling during the current session. The Font Hinting option is used to select how fonts are displayed in the Spreadsheet Editor. Choose As Windows if you like the way fonts are usually displayed on Windows, i.e. using Windows font hinting. Choose As OS X if you like the way fonts are usually displayed on a Mac, i.e. without any font hinting at all. Choose Native to display the text with hinting embedded into the font files. Default cache mode - used to select the cache mode for the font characters. It’s not recommended to switch it without any reason. It can be helpful in some cases only, for example, when an issue with the enabled hardware acceleration in the Google Chrome browser occurs. The Spreadsheet Editor has two cache modes: In the first cache mode, each letter is cached as a separate picture. In the second cache mode, a picture of a certain size is selected where letters are placed dynamically and a mechanism of allocating/removing memory in this picture is also implemented. If there is not enough memory, a second picture is created, etc. The Default cache mode setting applies two above mentioned cache modes separately for different browsers: When the Default cache mode setting is enabled, Internet Explorer (v. 9, 10, 11) uses the second cache mode, other browsers use the first cache mode. When the Default cache mode setting is disabled, Internet Explorer (v. 9, 10, 11) uses the first cache mode, other browsers use the second cache mode. The Macros Settings option is used to set macros display with a notification. Choose Disable All to disable all macros within the spreadsheet. Choose Show Notification to receive notifications about macros within the spreadsheet. Choose Enable All to automatically run all macros within the spreadsheet. Regional Settings The Formula Language option is used to select the language for displaying and entering formula names, argument names, and descriptions. Formula language is supported for 33 languages: Armenian, Belarussian, Bulgarian, Catalan, Chinese, Czech, Danish, Dutch, English, Finnish, French, German, Greek, Hungarian, Indonesian, Italian, Japanese, Korean, Lao, Latvian, Norwegian, Polish, Portuguese (Brazil), Portuguese (Portugal), Romanian, Russian, Slovak, Slovenian, Spanish, Swedish, Turkish, Ukrainian, Vietnamese. The Region option is used to set the display mode for currency, date, and time. Available regions: Azerbaijani, Bulgarian, Czech, Danish, German (Austria), German (Germany), German (Switzerland), Greek (Greece), English (Australia), English (Indonesia), English (United Kingdom), English (USA), Spanish (Spain), Spanish (Mexico), Finnish (Finland), French (France), French (Switzerland), Indonesian (Indonesia), Italian (Italy), Italian (Switzerland), Japanese, Korean, Latvian, Hungarian, Dutch (Netherlands), Polish (Poland), Portuguese (Brazil), Portuguese (Portugal), Slovak, Slovenian, Swedish (Finland), Swedish (Sweden), Turkish, Ukrainian, Vietnamese, Chinese, Taiwanese. The Use separators based on regional settings option is enabled by default, the separators will correspond to the set region. To set custom separators, uncheck this option and enter the required separators in Decimal separator and Thousands separator fields. Proofing The Dictionary language option is used to set the preferred dictionary for the spell checking. Ignore words in UPPERCASE. Words typed in capital letters are ignored during the spell checking. Ignore words with numbers. Words with numbers in them are ignored during the spell checking. The AutoCorrect options menu allows you to access the autocorrect settings such as replacing text as you type, recognizing functions, automatic formatting etc. Calculating The Use 1904 date system option is used to calculate dates by using January 1, 1904, as a starting point. It can be useful when working with spreadsheets created in MS Excel 2008 for Mac and earlier MS Excel for Mac versions. To save the changes you made, click the Apply button." }, { "id": "HelpfulHints/CollaborativeEditing.htm", @@ -2423,7 +2418,7 @@ var indexes = { "id": "HelpfulHints/Commenting.htm", "title": "Commenting", - "body": "The Spreadsheet Editor allows you to maintain constant team-wide approach to work flow: share files and folders, collaborate on spreadsheets in real time, communicate right in the editor, save spreadsheet versions for future use. In Spreadsheet Editor you can leave comments to the content of spreadsheets without actually editing it. Unlike chat messages, the comments stay until deleted. Leaving comments and replying to them To leave a comment, select a cell where you think there is an error or problem, switch to the Insert or Collaboration tab of the top toolbar and click the Comment button, or use the Comments icon on the left sidebar to open the Comments panel and click the Add Comment to Document link, or right-click within the selected cell and select the Add Сomment option from the menu, enter the needed text, click the Add Comment/Add button. If you are using the Strict co-editing mode, new comments added by other users will become visible only after you click the icon in the left upper corner of the top toolbar. To view the comment, just click within the cell. You or any other user can answer to the added comment asking questions or reporting on the work he/she has done. For this purpose, use the Add Reply link, type in your reply text in the entry field and press the Reply button. Disabling display of comments The comment will be seen on the panel on the left. The orange triangle will appear in the upper right corner of the cell you commented. If you need to disable this feature, click the File tab on the top toolbar, select the Advanced Settings... option, uncheck the Turn on display of the comments box. In this case, the commented cells will be marked only if you click the Comments icon. Managing comments You can manage the added comments using the icons in the comment balloon or on the Comments panel on the left: sort the added comments by clicking the icon: by date: Newest or Oldest by author: Author from A to Z or Author from Z to A by group: All or choose a certain group from the list. This sorting option is available if you are running a version that includes this functionality. edit the currently selected by clicking the icon, delete the currently selected by clicking the icon, close the currently selected discussion by clicking the icon if the task or problem you stated in your comment was solved, after that the discussion you opened with your comment gets the resolved status. To open it again, click the icon. If you want to hide resolved comments, click the File tab on the top toolbar, select the Advanced Settings... option, uncheck the Turn on display of the resolved comments box and click Apply. In this case the resolved comments will be highlighted only if you click the icon, if you want to manage comments in a bunch, open the Resolve drop-down menu on the Collaboration tab. Select one of the options for resolving comments: resolve current comments, resolve my comments or resolve all comments in the spreadsheet. Adding mentions You can only add mentions to the comments made to the spreadsheet content and not to the spreadsheet itself. When entering comments, you can use the mentions feature that allows you to attract somebody's attention to the comment and send a notification to the mentioned user via email and Talk. To add a mention, Enter the \"+\" or \"@\" sign anywhere in the comment text - a list of the portal users will open. To simplify the search process, you can start typing the required name in the comment field - the user list will change while you type. Select the necessary person from the list. If the file has not been shared with the mentioned user yet, the Sharing Settings window will open. The Read only access type is selected by default. Change it if necessary. Click OK. The mentioned user will receive an email notification that they have been mentioned in a comment. If the file has been shared, the user will also receive a corresponding notification. Removing comments To remove comments, click the Remove button on the Collaboration tab of the top toolbar, select the necessary option from the menu: Remove Current Comments - to remove the currently selected comment. If some replies have been added to the comment, all its replies will be removed as well. Remove My Comments - to remove comments you added without removing comments added by other users. If some replies have been added to your comment, all its replies will be removed as well. Remove All Comments - to remove all the comments in the spreadsheet that you and other users added. To close the panel with comments, click the Comments icon on the left sidebar once again." + "body": "The Spreadsheet Editor allows you to maintain constant team-wide approach to work flow: share files and folders, collaborate on spreadsheets in real time, communicate right in the editor, save spreadsheet versions for future use. In Spreadsheet Editor you can leave comments to the content of spreadsheets without actually editing it. Unlike chat messages, the comments stay until deleted. Leaving comments and replying to them To leave a comment, select a cell where you think there is an error or problem, switch to the Insert or Collaboration tab of the top toolbar and click the Comment button, or use the icon on the left sidebar to open the Comments panel, and either click the Add comment button in the top toolbar of the panel, or click the More symbol and choose the Add Comment to Document option to leave a comment to the whole spreadsheet, or right-click within the selected cell and select the Add Сomment option from the menu, enter the needed text, click the Add Comment/Add button. If you are using the Strict co-editing mode, new comments added by other users will become visible only after you click the icon in the left upper corner of the top toolbar. To view the comment, just click within the cell. You or any other user can answer to the added comment asking questions or reporting on the work he/she has done. For this purpose, use the Add Reply link, type in your reply text in the entry field and press the Reply button. Disabling display of comments The comment will be seen on the panel on the left. The orange triangle will appear in the upper right corner of the cell you commented. If you need to disable this feature, click the File tab on the top toolbar, select the Advanced Settings... option, uncheck the Turn on display of the comments box. In this case, the commented cells will be marked only if you click the Comments icon. Managing comments You can manage the added comments using the icons in the comment balloon or on the Comments panel on the left: sort the added comments by clicking the icon: by date: Newest or Oldest by author: Author from A to Z or Author from Z to A by group: All or choose a certain group from the list. This sorting option is available if you are running a version that includes this functionality. edit the currently selected by clicking the icon, delete the currently selected by clicking the icon, close the currently selected discussion by clicking the icon if the task or problem you stated in your comment was solved, after that the discussion you opened with your comment gets the resolved status. To open it again, click the icon. If you want to hide resolved comments, click the File tab on the top toolbar, select the Advanced Settings... option, uncheck the Turn on display of the resolved comments box and click Apply. In this case the resolved comments will be highlighted only if you click the icon, if you want to manage comments in a bunch, open the Resolve drop-down menu on the Collaboration tab. Select one of the options for resolving comments: resolve current comments, resolve my comments or resolve all comments in the spreadsheet. Adding mentions You can only add mentions to the comments made to the spreadsheet content and not to the spreadsheet itself. When entering comments, you can use the mentions feature that allows you to attract somebody's attention to the comment and send a notification to the mentioned user via email and Talk. To add a mention, Enter the \"+\" or \"@\" sign anywhere in the comment text - a list of the portal users will open. To simplify the search process, you can start typing the required name in the comment field - the user list will change while you type. Select the necessary person from the list. If the file has not been shared with the mentioned user yet, the Sharing Settings window will open. The Read only access type is selected by default. Change it if necessary. Click OK. The mentioned user will receive an email notification that they have been mentioned in a comment. If the file has been shared, the user will also receive a corresponding notification. Removing comments To remove comments, click the Remove button on the Collaboration tab of the top toolbar, select the necessary option from the menu: Remove Current Comments - to remove the currently selected comment. If some replies have been added to the comment, all its replies will be removed as well. Remove My Comments - to remove comments you added without removing comments added by other users. If some replies have been added to your comment, all its replies will be removed as well. Remove All Comments - to remove all the comments in the spreadsheet that you and other users added. To close the panel with comments, click the Comments icon on the left sidebar once again." }, { "id": "HelpfulHints/Communicating.htm", @@ -2438,7 +2433,7 @@ var indexes = { "id": "HelpfulHints/KeyboardShortcuts.htm", "title": "Keyboard Shortcuts", - "body": "Keyboard Shortcuts for Key Tips Use keyboard shortcuts for a faster and easier access to the features of the Spreadsheet Editor without using a mouse. Press Alt key to turn on all key tips for the editor header, the top toolbar, the right and left sidebars and the status bar. Press the letter that corresponds to the item you wish to use. The additional key tips may appear depending on the key you press. The first key tips hide when additional key tips appear. For example, to access the Insert tab, press Alt to see all primary key tips. Press letter I to access the Insert tab and you will see all the available shortcuts for this tab. Then press the letter that corresponds to the item you wish to configure. Press Alt to hide all key tips, or press Escape to go back to the previous group of key tips. Find the most common keyboard shortcuts in the list below: Windows/Linux Mac OS Working with Spreadsheet Open 'File' panel Alt+F ^ Ctrl+⌥ Option+F Open the File panel to save, download, print the current spreadsheet, view its info, create a new spreadsheet or open an existing one, access the help menu of the Spreadsheet Editor or its advanced settings. Open 'Find and Replace' dialog box Ctrl+F ^ Ctrl+F, ⌘ Cmd+F Open the Find and Replace dialog box to start searching for a cell containing the required characters. Open 'Find and Replace' dialog box with replacement field Ctrl+H ^ Ctrl+H Open the Find and Replace dialog box with the replacement field to replace one or more occurrences of the found characters. Open 'Comments' panel Ctrl+⇧ Shift+H ^ Ctrl+⇧ Shift+H, ⌘ Cmd+⇧ Shift+H Open the Comments panel to add your own comment or reply to other users' comments. Open comment field Alt+H ⌘ Cmd+⌥ Option+A Open a data entry field where you can add the text of your comment. Open 'Chat' panel (Online Editors) Alt+Q ^ Ctrl+⌥ Option+Q Open the Chat panel in the Online Editors and send a message. Save spreadsheet Ctrl+S ^ Ctrl+S, ⌘ Cmd+S Save all the changes to the spreadsheet currently edited with the Spreadsheet Editor. The active file will be saved with its current file name, location, and file format. Print spreadsheet Ctrl+P ^ Ctrl+P, ⌘ Cmd+P Print your spreadsheet with one of the available printers or save it to a file. Download as... Ctrl+⇧ Shift+S ^ Ctrl+⇧ Shift+S, ⌘ Cmd+⇧ Shift+S Open the Download as... panel to save the currently edited spreadsheet to the computer hard disk drive in one of the supported formats: XLSX, PDF, ODS, CSV, XLTX, PDF/A, OTS. Full screen (Online Editors) F11 Switch to the full screen view in the Online Editors to fit the Spreadsheet Editor on the screen. Help menu F1 F1 Open the Help menu of the Spreadsheet Editor . Open existing file (Desktop Editors) Ctrl+O Open the standard dialog box on the Open local file tab in the Desktop Editors that allows you to select an existing file. Close file (Desktop Editors) Tab/Shift+Tab ↹ Tab/⇧ Shift+↹ Tab Close the current spreadsheet window in the Desktop Editors. Element contextual menu ⇧ Shift+F10 ⇧ Shift+F10 Open the contextual menu of the selected element. Reset the ‘Zoom’ parameter Ctrl+0 ^ Ctrl+0 or ⌘ Cmd+0 Reset the ‘Zoom’ parameter of the current spreadsheet to a default 100%. Duplicate a worksheet Press and hold down Ctrl+ drag the sheet tab Press and hold down ⌥ Option+ drag the sheet tab Copy an entire worksheet in a workbook and move it to the tab location you need. Navigation Move one cell up, down, left, or right ← → ↑ ↓ ← → ↑ ↓ Outline a cell above/below the currently selected one or to the left/to the right of it. Jump to the edge of the visible data region or the next cell with data Ctrl+← → ↑ ↓ ⌘ Cmd+← → ↑ ↓ Outline a cell at the edge of the visible data region or the next cell with data in a worksheet. If the region does not contain data, the last cell of the visible area will be selected. If the region contains data, the next cell with data will be selected. Jump to the beginning of the row Home Home Outline a cell in the column A of the current row. Jump to the beginning of the spreadsheet Ctrl+Home ^ Ctrl+Home Outline the cell A1. Jump to the end of the row End, Ctrl+→ End, ⌘ Cmd+→ Outline the last cell of the current row. Jump to the end of the spreadsheet Ctrl+End ^ Ctrl+End Outline the lower right used cell in the worksheet situated in the bottommost row with data of the rightmost column with data. If the cursor is in the formula bar, it will be placed to the end of the text. Move to the previous sheet Alt+Page Up ⌥ Option+Page Up Move to the previous sheet in your spreadsheet. Move to the next sheet Alt+Page Down ⌥ Option+Page Down Move to the next sheet in your spreadsheet. Move up one row ↑, ⇧ Shift+↵ Enter ⇧ Shift+↵ Return Outline the cell above the current one in the same column. Move down one row ↓, ↵ Enter ↵ Return Outline the cell below the current one in the same column. Move left one column ←, ⇧ Shift+↹ Tab ←, ⇧ Shift+↹ Tab Outline the previous cell of the current row. Move right one column →, ↹ Tab →, ↹ Tab Outline the next cell of the current row. Move down one screen Page Down Page Down Move one screen down in the worksheet. Move up one screen Page Up Page Up Move one screen up in the worksheet. Move vertical scrollbar Up/Down Mouse scroll Up/Down Mouse scroll Up/Down Move vertical scrollbar up/down. Move horizontal scrollbar Left/Right ⇧ Shift+Mouse scroll Up/Down ⇧ Shift+Mouse scroll Up/Down Move horizontal scrollbar left/right. To move the scrollbar to the right, scroll the mouse wheel down. To move the scrollbar to the left, scroll the mouse wheel up. Zoom In Ctrl++ ^ Ctrl+=, ⌘ Cmd+= Zoom in the currently edited spreadsheet. Zoom Out Ctrl+- ^ Ctrl+-, ⌘ Cmd+- Zoom out the currently edited spreadsheet. Navigate between controls in modal dialogues ↹ Tab/⇧ Shift+↹ Tab ↹ Tab/⇧ Shift+↹ Tab Navigate between controls to give focus to the next or previous control in modal dialogues. Data Selection Select all Ctrl+A, Ctrl+⇧ Shift+␣ Spacebar ⌘ Cmd+A Select the entire worksheet. Select column Ctrl+␣ Spacebar ^ Ctrl+␣ Spacebar Select an entire column in a worksheet. Select row ⇧ Shift+␣ Spacebar ⇧ Shift+␣ Spacebar Select an entire row in a worksheet. Select fragment ⇧ Shift+→ ← ⇧ Shift+→ ← Select a fragment cell by cell. Select from cursor to beginning of row ⇧ Shift+Home ⇧ Shift+Home Select a fragment from the cursor to the beginning of the current row. Select from cursor to end of row ⇧ Shift+End ⇧ Shift+End Select a fragment from the cursor to the end of the current row. Extend the selection to beginning of worksheet Ctrl+⇧ Shift+Home ^ Ctrl+⇧ Shift+Home Select a fragment from the current selected cells to the beginning of the worksheet. Extend the selection to the last used cell Ctrl+⇧ Shift+End ^ Ctrl+⇧ Shift+End Select a fragment from the current selected cells to the last used cell in the worksheet (in the bottommost row with data of the rightmost column with data). If the cursor is in the formula bar, this will select all text in the formula bar from the cursor position to the end without affecting the height of the formula bar. Select one cell to the left ⇧ Shift+↹ Tab ⇧ Shift+↹ Tab Select one cell to the left in a table. Select one cell to the right ↹ Tab ↹ Tab Select one cell to the right in a table. Extend the selection to the nearest nonblank cell to the right ⇧ Shift+End, Ctrl+⇧ Shift+→ ⇧ Shift+End Extend the selection to the nearest nonblank cell in the same row to the right of the active cell. If the next cell is blank, the selection will be extended to the next nonblank cell. Extend the selection to the nearest nonblank cell to the left ⇧ Shift+Home, Ctrl+⇧ Shift+← ⇧ Shift+Home Extend the selection to the nearest nonblank cell in the same row to the left of the active cell. If the next cell is blank, the selection will be extended to the next nonblank cell. Extend the selection to the nearest nonblank cell up/down the column Ctrl+⇧ Shift+↑ ↓ Extend the selection to the nearest nonblank cell in the same column up/down from the active cell. If the next cell is blank, the selection will be extended to the next nonblank cell. Extend the selection down one screen ⇧ Shift+Page Down ⇧ Shift+Page Down Extend the selection to include all the cells one screen down from the active cell. Extend the selection up one screen ⇧ Shift+Page Up ⇧ Shift+Page Up Extend the selection to include all the cells one screen up from the active cell. Undo and Redo Undo Ctrl+Z ⌘ Cmd+Z Reverse the latest performed action. Redo Ctrl+Y ⌘ Cmd+Y Repeat the latest undone action. Cut, Copy, and Paste Cut Ctrl+X, ⇧ Shift+Delete ⌘ Cmd+X Cut the the selected data and send them to the computer clipboard memory. The cut data can be later inserted to another place in the same worksheet, into another spreadsheet, or into some other program. Copy Ctrl+C, Ctrl+Insert ⌘ Cmd+C Send the selected data to the computer clipboard memory. The copied data can be later inserted to another place in the same worksheet, into another spreadsheet, or into some other program. Paste Ctrl+V, ⇧ Shift+Insert ⌘ Cmd+V Insert the previously copied/cut data from the computer clipboard memory to the current cursor position. The data can be previously copied from the same worksheet, from another spreadsheet, or from some other program. Data Formatting Bold Ctrl+B ^ Ctrl+B, ⌘ Cmd+B Make the font of the selected text fragment darker and heavier than normal or remove the bold formatting. Italic Ctrl+I ^ Ctrl+I, ⌘ Cmd+I Make the font of the selected text fragment italicized and slightly slanted or remove italic formatting. Underline Ctrl+U ^ Ctrl+U, ⌘ Cmd+U Make the selected text fragment underlined with a line going under the letters or remove underlining. Strikeout Ctrl+5 ^ Ctrl+5, ⌘ Cmd+5 Make the selected text fragment struck out with a line going through the letters or remove strikeout formatting. Add Hyperlink Ctrl+K ⌘ Cmd+K Insert a hyperlink to an external website or another worksheet. Edit active cell F2 F2 Edit the active cell and position the insertion point at the end of the cell contents. If editing in a cell is turned off, the insertion point will be moved into the Formula Bar. Data Filtering Enable/Remove Filter Ctrl+⇧ Shift+L ^ Ctrl+⇧ Shift+L, ⌘ Cmd+⇧ Shift+L Enable a filter for a selected cell range or remove the filter. Format as table template Ctrl+L ^ Ctrl+L, ⌘ Cmd+L Apply a table template to a selected cell range. Data Entry Complete cell entry and move down ↵ Enter ↵ Return Complete a cell entry in the selected cell or the formula bar, and move to the cell below. Complete cell entry and move up ⇧ Shift+↵ Enter ⇧ Shift+↵ Return Complete a cell entry in the selected cell, and move to the cell above. Complete cell entry and move to the next cell in a row ↹ Tab ↹ Tab Complete a cell entry in the selected cell or the formula bar, and move to the cell to the right. Start new line Alt+↵ Enter Start a new line in the same cell. Cancel Esc Esc Cancel an entry in the selected cell or the formula bar. Delete to the left ← Backspace ← Backspace Delete one character to the left in the formula bar or in the selected cell when the cell editing mode is activated. Also removes the content of the active cell. Delete to the right Delete Delete, Fn+← Backspace Delete one character to the right in the formula bar or in the selected cell when the cell editing mode is activated. Also removes the cell contents (data and formulas) from selected cells without affecting cell formats or comments. Clear cell content Delete, ← Backspace Delete, ← Backspace Remove the content (data and formulas) from selected cells without affecting the cell format or comments. Complete a cell entry and move to the right ↹ Tab ↹ Tab Complete a cell entry in the selected cell or the formula bar and move to the cell on the right. Complete a cell entry and move to the left ⇧ Shift+↹ Tab ⇧ Shift+↹ Tab Complete a cell entry in the selected cell or the formula bar and move to the cell on the left . Insert cells Ctrl+⇧ Shift+= Ctrl+⇧ Shift+=, ⌘ Cmd+⇧ Shift+= Open the dialog box for inserting new cells within current spreadsheet with an added parameter of a shift to the right, a shift down, inserting an entire row or an entire column. Delete cells Ctrl+⇧ Shift+- Ctrl+⇧ Shift+-, ⌘ Cmd+⇧ Shift+- Open the dialog box for deleting cells within current spreadsheet with an added parameter of a shift to the left, a shift up, deleting an entire row or an entire column. Insert the current date Ctrl+; Ctrl+;, ⌘ Cmd+; Insert the today date within an active cell. Insert the current time Ctrl+⇧ Shift+; Ctrl+⇧ Shift+;, ⌘ Cmd+⇧ Shift+; Insert the current time within an active cell. Insert the current date and time Ctrl+; then ␣ Spacebar then Ctrl+⇧ Shift+; Ctrl+; then ␣ Spacebar then Ctrl+⇧ Shift+;, ⌘ Cmd+; then ␣ Spacebar then ⌘ Cmd+⇧ Shift+; Insert the current date and time within an active cell. Pivot tables Update pivot table Alt+F5 ⌥ Option+F5 Update the previously selected pivot table. Functions Insert function ⇧ Shift+F3 ⇧ Shift+F3 Open the dialog box for inserting a new function by choosing from the provided list. SUM function Alt+= ⌥ Option+Ctrl+= Insert the SUM function into the selected cell. Open drop-down list Alt+↓ Open a selected drop-down list. Open contextual menu ≣ Menu Open a contextual menu for the selected cell or cell range. Recalculate functions F9 F9 Recalculate the entire workbook. Recalculate functions ⇧ Shift+F9 ⇧ Shift+F9 Recalculate the current worksheet. Data Formats Open the 'Number Format' dialog box Ctrl+1 ^ Ctrl+1, ⌘ Cmd+1 Open the Number Format dialog box. Apply the General format Ctrl+⇧ Shift+~ ^ Ctrl+⇧ Shift+~ Apply the General number format. Apply the Currency format Ctrl+⇧ Shift+$ ^ Ctrl+⇧ Shift+$ Apply the Currency format with two decimal places (negative numbers in parentheses). Apply the Percentage format Ctrl+⇧ Shift+% ^ Ctrl+⇧ Shift+% Apply the Percentage format with no decimal places. Apply the Exponential format Ctrl+⇧ Shift+^ ^ Ctrl+⇧ Shift+^ Apply the Exponential number format with two decimal places. Apply the Date format Ctrl+⇧ Shift+# ^ Ctrl+⇧ Shift+# Apply the Date format with the day, month, and year. Apply the Time format Ctrl+⇧ Shift+@ ^ Ctrl+⇧ Shift+@ Apply the Time format with the hour and minute, and AM or PM. Apply the Number format Ctrl+⇧ Shift+! ^ Ctrl+⇧ Shift+! Apply the Number format with two decimal places, thousands separator, and minus sign (-) for negative values. Modifying Objects Constrain movement ⇧ Shift + drag ⇧ Shift + drag Constrain the movement of the selected object horizontally or vertically. Set 15-degree rotation ⇧ Shift + drag (when rotating) ⇧ Shift + drag (when rotating) Constrain the rotation angle to 15-degree increments. Maintain proportions ⇧ Shift + drag (when resizing) ⇧ Shift + drag (when resizing) Maintain the proportions of the selected object when resizing. Draw straight line or arrow ⇧ Shift + drag (when drawing lines/arrows) ⇧ Shift + drag (when drawing lines/arrows) Draw a straight vertical/horizontal/45-degree line or arrow. Movement by one-pixel increments Ctrl+← → ↑ ↓ Hold down the Ctrl key and use the keybord arrows to move the selected object by one pixel at a time." + "body": "Keyboard Shortcuts for Key Tips Use keyboard shortcuts for a faster and easier access to the features of the Spreadsheet Editor without using a mouse. Press Alt (Option for macOS) key to turn on all key tips for the editor header, the top toolbar, the right and left sidebars and the status bar. Press the letter that corresponds to the item you wish to use. The additional key tips may appear depending on the key you press. The first key tips hide when additional key tips appear. For example, to access the Insert tab, press Alt (Option for macOS) to see all primary key tips. Press letter I to access the Insert tab and you will see all the available shortcuts for this tab. Then press the letter that corresponds to the item you wish to configure. Press Alt (Option for macOS) to hide all key tips, or press Escape to go back to the previous group of key tips. Find the most common keyboard shortcuts in the list below. Please note: for macOS, some shortcuts contain the Home, End, Page Up and Page Down keys which are only available on the extended keyboard. If you don't have these keys, use the keyboard shortcuts specified above (i.e. use ^ Ctrl/⌘ Cmd+← or Fn+← instead of Home, ^ Ctrl/⌘ Cmd+→ or Fn+→ instead of End, Fn+↑ instead of Page Up, Fn+↓ instead of Page Down). Windows/Linux Mac OS Working with Spreadsheet Open 'File' panel Alt+F ^ Ctrl+⌥ Option+F Open the File panel to save, download, print the current spreadsheet, view its info, create a new spreadsheet or open an existing one, access the help menu of the Spreadsheet Editor or its advanced settings. Open 'Find' dialog window Ctrl+F ^ Ctrl+F, ⌘ Cmd+F Open the Find dialog window to start searching for a cell containing the required characters. Open 'Find and Replace' menu (panel) with replacement field Ctrl+H ^ Ctrl+H Open the Find and Replace menu (panel) with the replacement field to replace one or more occurrences of the found characters. Open 'Comments' panel Ctrl+⇧ Shift+H ^ Ctrl+⇧ Shift+H, ⌘ Cmd+⇧ Shift+H Open the Comments panel to add your own comment or reply to other users' comments. Open comment field Alt+H ⌘ Cmd+⌥ Option+A Open a data entry field where you can add the text of your comment. Open 'Chat' panel (Online Editors) Alt+Q ^ Ctrl+⌥ Option+Q Open the Chat panel in the Online Editors and send a message. Save spreadsheet Ctrl+S ^ Ctrl+S, ⌘ Cmd+S Save all the changes to the spreadsheet currently edited with the Spreadsheet Editor. The active file will be saved with its current file name, location, and file format. Print spreadsheet Ctrl+P ^ Ctrl+P, ⌘ Cmd+P Print your spreadsheet with one of the available printers or save it to a file. Download as... Ctrl+⇧ Shift+S ^ Ctrl+⇧ Shift+S, ⌘ Cmd+⇧ Shift+S Open the Download as... panel to save the currently edited spreadsheet to the computer hard disk drive in one of the supported formats: XLSX, XLTX, PDF, PDF/A, ODS, OTS, CSV, PNG, JPG. Full screen (Online Editors) F11 Switch to the full screen view in the Online Editors to fit the Spreadsheet Editor on the screen. Help menu F1 Fn+F1 Open the Help menu of the Spreadsheet Editor. Open existing file Ctrl+O ⌘ Cmd+O Open the standard dialog box that allows selecting an existing file. If you select the file in this dialog box and click Open, the file will be opened in a new tab or window of Desktop Editors. Switch to the next tab Ctrl+↹ Tab ^ Ctrl+↹ Tab Switch to the next file tab in Desktop Editors or browser tab in Online Editors. Switch to the previous tab Ctrl+Shift+↹ Tab ^ Ctrl+⇧ Shift+↹ Tab Switch to the previous file tab in Desktop Editors or browser tab in Online Editors. Close file Ctrl+W, Ctrl+F4 ⌘ Cmd+W Close the current spreadsheet window. Element contextual menu ⇧ Shift+F10 ⇧ Shift+Fn+F10 Open the contextual menu of the selected element. Close menu or modal window, reset modes, etc. Esc Esc Close a menu or modal window. Suspend copying formats. Reset adding shapes mode. Clear clipboard when cutting/copying cells. Hide the Paste Special button. Reset the ‘Zoom’ parameter Ctrl+0 ^ Ctrl+0 or ⌘ Cmd+0 Reset the ‘Zoom’ parameter of the current spreadsheet to a default 100%. Duplicate a worksheet Press and hold down Ctrl+ drag the sheet tab Press and hold down ⌥ Option+ drag the sheet tab Copy an entire worksheet in a workbook and move it to the tab location you need. Navigation Move one cell up, down, left, or right ↑ ↓ ← → ↑ ↓ ← → Outline a cell above/below the currently selected one or to the left/to the right of it. Move active cell down ↵ Enter ↵ Return Move to the cell below. Move active cell up ⇧ Shift+↵ Enter ⇧ Shift+↵ Return Move to the cell above. Move active cell to the right ↹ Tab ↹ Tab Move to the cell on the right. Move active cell to the left ⇧ Shift+↹ Tab ⇧ Shift+↹ Tab Move to the cell on the left . Jump to the edge of the visible data region or the next cell with data Ctrl+← → ↑ ↓ ⌘ Cmd+← → ↑ ↓ Home End Page Up Page Down Outline a cell at the edge of the visible data region or the next cell with data in a worksheet. If the region does not contain data, the last cell of the visible area will be selected. If the region contains data, the next cell with data will be selected. Jump to the beginning of the row Home Fn+← Home Outline a cell in the column A of the current row. Jump to the beginning of the spreadsheet Ctrl+Home ^ Ctrl+Fn+←, ⌘ Cmd+Fn+← ^ Ctrl+Home, ⌘ Cmd+Home Outline the cell A1. Jump to the end of the row End, Ctrl+→ Fn+→, ⌘ Cmd+→ End Outline the last cell of the current row. Jump to the end of the spreadsheet Ctrl+End ^ Ctrl+Fn+→, ⌘ Cmd+Fn+→ ^ Ctrl+End, ⌘ Cmd+End Outline the lower right used cell in the worksheet situated in the bottommost row with data of the rightmost column with data. If the cursor is in the formula bar, it will be placed to the end of the text. Move to the previous sheet Alt+Page Up ⌥ Option+Fn+↑ ⌥ Option+Page Up Move to the previous sheet in your spreadsheet. Move to the next sheet Alt+Page Down ⌥ Option+Fn+↓ ⌥ Option+Page Down Move to the next sheet in your spreadsheet. Move up one row ↑, ⇧ Shift+↵ Enter ⇧ Shift+↵ Return Outline the cell above the current one in the same column. Move down one row ↓, ↵ Enter ↵ Return Outline the cell below the current one in the same column. Move left one column ←, ⇧ Shift+↹ Tab ←, ⇧ Shift+↹ Tab Outline the previous cell of the current row. Move right one column →, ↹ Tab →, ↹ Tab Outline the next cell of the current row. Move down one screen Page Down Fn+↓ Page Down Move one screen down in the worksheet. Move up one screen Page Up Fn+↑ Page Up Move one screen up in the worksheet. Move vertical scrollbar Up/Down Mouse scroll Up/Down Mouse scroll Up/Down Move vertical scrollbar up/down. Move horizontal scrollbar Left/Right ⇧ Shift+Mouse scroll Up/Down ⇧ Shift+Mouse scroll Up/Down Move horizontal scrollbar left/right. To move the scrollbar to the right, scroll the mouse wheel down. To move the scrollbar to the left, scroll the mouse wheel up. Zoom In Ctrl++ ^ Ctrl+=, ⌘ Cmd+= Zoom in the currently edited spreadsheet. Zoom Out Ctrl+- ^ Ctrl+-, ⌘ Cmd+- Zoom out the currently edited spreadsheet. Navigate between controls in modal dialogues ↹ Tab/⇧ Shift+↹ Tab ↹ Tab/⇧ Shift+↹ Tab Navigate between controls to give focus to the next or previous control in modal dialogues. Data Selection Select the entire worksheet Ctrl+A, Ctrl+⇧ Shift+␣ Spacebar ⌘ Cmd+A, ^ Ctrl+A Select the entire worksheet (when the focus is on a cell). Select column Ctrl+␣ Spacebar ^ Ctrl+Fn+␣ Spacebar, ⌘ Cmd+Fn+␣ Spacebar Select an entire column in a worksheet. Select row ⇧ Shift+␣ Spacebar ⇧ Shift+␣ Spacebar Select an entire row in a worksheet. Select one cell to the right ⇧ Shift+→ ⇧ Shift+→ Select one cell to the right. Select one cell to the left ⇧ Shift+← ⇧ Shift+← Select one cell to the left. Select one cell up ⇧ Shift+↑ ⇧ Shift+↑ Select one cell up. Select one cell down ⇧ Shift+↓ ⇧ Shift+↓ Select one cell down. Select from cursor to beginning of row ⇧ Shift+Home ⇧ Shift+Fn+← ⇧ Shift+Home Select a fragment from the cursor to the beginning of the current row. Select from cursor to end of row ⇧ Shift+End ⇧ Shift+Fn+→ ⇧ Shift+End Select a fragment from the cursor to the end of the current row. Select to the next nonblank cell to the right Ctrl+⇧ Shift+→ ^ Ctrl+⇧ Shift+→, ⌘ Cmd+⇧ Shift+→ Select cells to the next nonblank cell to the right of the active cell or to the edge of the visible area. Select to the next nonblank cell to the left Ctrl+⇧ Shift+← ^ Ctrl+⇧ Shift+←, ⌘ Cmd+⇧ Shift+← Select cells to the next nonblank cell to the left of the active cell or to the edge of the visible area. Select to the next nonblank cell up Ctrl+⇧ Shift+↑ ^ Ctrl+⇧ Shift+↑, ⌘ Cmd+⇧ Shift+↑ Select cells to the next nonblank cell up from the active cell or to the edge of the visible area. Select to the next nonblank cell down Ctrl+⇧ Shift+↓ ^ Ctrl+⇧ Shift+↓, ⌘ Cmd+⇧ Shift+↓ Select cells to the next nonblank cell down from the active cell or to the edge of the visible area. Extend the selection to beginning of worksheet Ctrl+⇧ Shift+Home ^ Ctrl+⇧ Shift+Fn+←, ⌘ Cmd+⇧ Shift+Fn+← ^ Ctrl+⇧ Shift+Home, ⌘ Cmd+⇧ Shift+Home Select a fragment from the current selected cells to the beginning of the worksheet. Extend the selection to the last used cell Ctrl+⇧ Shift+End ^ Ctrl+⇧ Shift+Fn+→, ⌘ Cmd+⇧ Shift+Fn+→ ^ Ctrl+⇧ Shift+End, ⌘ Cmd+⇧ Shift+End Select a fragment from the current selected cells to the last used cell in the worksheet (in the bottommost row with data of the rightmost column with data). If the cursor is in the formula bar, this will select all text in the formula bar from the cursor position to the end without affecting the height of the formula bar. Extend the selection to the nearest nonblank cell to the right ⇧ Shift+End, Ctrl+⇧ Shift+→ ⇧ Shift+Fn+→ ⇧ Shift+End Extend the selection to the nearest nonblank cell in the same row to the right of the active cell. If the next cell is blank, the selection will be extended to the next nonblank cell. Extend the selection to the nonblank cell to the left Ctrl+⇧ Shift+← Extend the selection to the nonblank cell to the left. Extend the selection to the first column ⇧ Shift+Home ⇧ Shift+Fn+← ⇧ Shift+Home Extend the selection to the first column (A). Extend the selection to the nearest nonblank cell up/down the column Ctrl+⇧ Shift+↑ ↓ Extend the selection to the nearest nonblank cell in the same column up/down from the active cell. If the next cell is blank, the selection will be extended to the next nonblank cell. Extend the selection down one screen ⇧ Shift+Page Down ⇧ Shift+Fn+↓ ⇧ Shift+Page Down Extend the selection to include all the cells one screen down from the active cell. All cells in the columns of the previously selected range will be selected. Extend the selection up one screen ⇧ Shift+Page Up ⇧ Shift+Fn+↑ ⇧ Shift+Page Up Extend the selection to include all the cells one screen up from the active cell. All cells in the columns of the previously selected range will be selected. Undo and Redo Undo Ctrl+Z ⌘ Cmd+Z, ^ Ctrl+Z Reverse the latest performed action. Redo Ctrl+Y ⌘ Cmd+Y, ^ Ctrl+Y Repeat the latest undone action. Cut, Copy, and Paste Cut Ctrl+X, ⇧ Shift+Delete ⌘ Cmd+X Cut the the selected data/graphics and send them to the computer clipboard memory. The cut data can be later inserted to another place in the same worksheet, into another spreadsheet, or into some other program. Copy Ctrl+C, Ctrl+Insert ⌘ Cmd+C Send the selected data/graphics to the computer clipboard memory. The copied data can be later inserted to another place in the same worksheet, into another spreadsheet, or into some other program. Paste Ctrl+V, ⇧ Shift+Insert ⌘ Cmd+V Insert the previously copied/cut data/graphics from the computer clipboard memory to the current cursor position. The data can be previously copied from the same worksheet, from another spreadsheet, or from some other program. Paste Special options 1 Paste only formula Ctrl then F ^ Ctrl then F Paste formulas without pasting the data formatting. Paste formula + number format Ctrl then O ^ Ctrl then O Paste formulas with the formatting applied to numbers. Paste formula + all formatting Ctrl then K ^ Ctrl then K Paste formulas with all the data formatting. Paste formula without borders Ctrl then B ^ Ctrl then B Paste formulas with all the data formatting except the cell borders. Paste formula + column width Ctrl then W ^ Ctrl then W Paste formulas with all the data formatting and set the source column`s width for the cell range. Transpose Ctrl then T ^ Ctrl then T Paste data switching them from columns to rows, or vice versa. This option is available for regular data ranges, but not for formatted tables. Paste only value Ctrl then V ^ Ctrl then V Paste the formula results without pasting the data formatting. Paste value + number format Ctrl then A ^ Ctrl then A Paste the formula results with the formatting applied to numbers. Paste value + all formatting Ctrl then E ^ Ctrl then E Paste the formula results with all the data formatting. Paste only formatting Ctrl then R ^ Ctrl then R Paste the cell formatting only without pasting the cell contents. Paste link Ctrl then N ^ Ctrl then N Paste the external link to a cell or range of cells in another spreadsheet within the current portal (in the online editor) or in a local file (in the desktop editor). Working with Hyperlinks Insert hyperlink Ctrl+K ⌘ Cmd+K, ^ Ctrl+K Insert a hyperlink which can be used to go to a web address. Visit hyperlink Enter Return Visit a hyperlink (with the cursor in the hyperlink). Data Formatting Bold Ctrl+B ^ Ctrl+B, ⌘ Cmd+B Make the font of the selected text fragment darker and heavier than normal or remove the bold formatting. Italic Ctrl+I ⌘ Cmd+I Make the font of the selected text fragment italicized and slightly slanted or remove italic formatting. Underline Ctrl+U ^ Ctrl+U, ⌘ Cmd+U Make the selected text fragment underlined with a line going under the letters or remove underlining. Strikeout Ctrl+5 ^ Ctrl+5, ⌘ Cmd+5 Make the selected text fragment struck out with a line going through the letters or remove strikeout formatting. Edit active cell F2 Fn+F2 Edit the active cell and position the insertion point at the end of the cell contents. If editing in a cell is turned off, the insertion point will be moved into the Formula Bar. Data Filtering Enable/Remove Filter Ctrl+⇧ Shift+L ^ Ctrl+⇧ Shift+L, ⌘ Cmd+⇧ Shift+L Enable a filter for a selected cell range or remove the filter. Open filter window Alt+↓ ⌥ Option+↓ In the header of a column with a filter, open the filter window. Format as table template Ctrl+L ^ Ctrl+L, ⌘ Cmd+L Apply a table template to a selected cell range. Data Entry Complete cell entry and move down ↵ Enter ↵ Return Complete a cell entry in the selected cell or the formula bar, and move to the cell below. Complete cell entry and move up ⇧ Shift+↵ Enter ⇧ Shift+↵ Return Complete a cell entry in the selected cell, and move to the cell above. Complete cell entry and move to the right ↹ Tab ↹ Tab Complete a cell entry in the selected cell or the formula bar and move to the cell on the right. Complete cell entry and move to the left ⇧ Shift+↹ Tab ⇧ Shift+↹ Tab Complete a cell entry in the selected cell or the formula bar and move to the cell on the left . Complete cell entry and stay in it Ctrl+⇧ Shift+↵ Enter, Ctrl+↵ Enter ^ Ctrl+⇧ Shift+↵ Return, ^ Ctrl+↵ Return Complete a cell entry in the selected cell or the formula bar and stay in it. Fill the selected cell range with the current entry Ctrl+↵ Enter ^ Ctrl+↵ Return Fill the selected cell range with the current entry. Select a cell range, type data to the active cell and press the specified keys to fill all the selected cells with entered data. Start new line Alt+↵ Enter ⌥ Option+↵ Return Start a new line in the same cell. Add new placeholder to equation argument Enter Return, ⇧ Shift+Return Add a new placeholder to the equation argument. Cancel Esc Esc Cancel an entry in the selected cell or the formula bar. Delete to the left ← Backspace Delete Delete one character to the left in the formula bar or in the selected cell when the cell editing mode is activated. Remove the selection. Also removes the content of the active cell. It is also applicable to text in graphical objects. Delete to the right Delete Fn+Delete Delete one character to the right in the formula bar or in the selected cell when the cell editing mode is activated. Remove the selection. Also removes the cell contents (data and formulas) from selected cells without affecting cell formats or comments. It is also applicable to text in graphical objects. Clear active cell content Delete, ← Backspace Delete Remove the content (data and formulas) from the active cell without affecting the cell format or comments. Clear content of all selected cells Delete Fn+Delete Remove the content (data and formulas) from all selected cells without affecting the cell format or comments. Insert cells Ctrl+⇧ Shift+= Ctrl+⇧ Shift+=, ⌘ Cmd+⇧ Shift+= Open the dialog box for inserting new cells within current spreadsheet with an added parameter of a shift to the right, a shift down, inserting an entire row or an entire column. Delete cells Ctrl+⇧ Shift+- Ctrl+⇧ Shift+-, ⌘ Cmd+⇧ Shift+- Open the dialog box for deleting cells within current spreadsheet with an added parameter of a shift to the left, a shift up, deleting an entire row or an entire column. Insert the current date Ctrl+; Ctrl+;, ⌘ Cmd+; Insert the today date within an active cell. Insert the current time Ctrl+⇧ Shift+; Ctrl+⇧ Shift+;, ⌘ Cmd+⇧ Shift+; Insert the current time within an active cell. Insert the current date and time Ctrl+; then ␣ Spacebar then Ctrl+⇧ Shift+; Ctrl+; then ␣ Spacebar then Ctrl+⇧ Shift+;, ⌘ Cmd+; then ␣ Spacebar then ⌘ Cmd+⇧ Shift+; Insert the current date and time within an active cell. Insert separator Numpad . Insert separator within an active cell. Auto Fill (Open drop-down list) Alt+↓ ⌥ Option+↓ Use this shortcut in an empty cell below or above existing values in the column. A drop-down list with existing values will appear. Select one of the available text values to fill an empty cell. Insert an em dash ⌥ Option+⇧ Shift+- Insert an em dash ‘—’ within the current cell. Insert an en dash ⌥ Option+- Insert an en dash ‘-’ within the current cell. Work with keyboard supporting the ability to insert Unicode symbols ⌥ Option+Q, ⌥ Option+F, ⇧ Shift+⌥ Option+7, and others When using the ⌥ Option+keyboard symbol shortcuts, for the keyboards supporting the ability to insert Unicode symbols, the keyboard symbols are added. The examples are listed below. With the English ABC layout, the ⌥ Option+Q shortcut inserts the \"œ\" symbol, the ⌥ Option+F shortcut inserts the “ƒ” function symbol. With the US International w/o deadkeys layout, the ⌥ Option+Q shortcut inserts the “ä” symbol. With the Swiss-german layout, the ⇧ Shift+⌥ Option+7 shortcut inserts the \"\\” symbol. Working with text in cells and graphical objects Remove word, selection to the left Ctrl+Backspace ⌥ Option+Delete Remove a word, selection to the left of the cursor. Remove word, selection to the right Ctrl+Delete Fn+⌥ Option+Delete Remove a word, selection to the right of the cursor. Select all Ctrl+A ⌘ Cmd+A, ^ Ctrl+A Select the entire shape content (when the cursor is within the shape content). Select the entire cell content (when the cursor is within the cell). Move one character to the left/right or one line up/down ← → ↑ ↓ ← → ↑ ↓ Move the cursor one character to the left/right or one line up/down. Select one character to the right ⇧ Shift+→ ⇧ Shift+→ Select one character to the right of the cursor position. Select one character to the left ⇧ Shift+← ⇧ Shift+← Select one character to the left of the cursor position. Move the cursor one word to the left Ctrl+← ⌥ Option+← Move the cursor one word to the left. Move the cursor one word to the right Ctrl+→ ⌥ Option+→ Move the cursor one word to the right. Select one word to the left Ctrl+⇧ Shift+← ⇧ Shift+⌥ Option+← Select one word to the left of the cursor. Select one word to the right Ctrl+⇧ Shift+→ ⇧ Shift+⌥ Option+→ Select one word to the right of the cursor. Jump to the beginning of the text Ctrl+Home ^ Ctrl+Fn+←, ⌘ Cmd+Fn+← ^ Ctrl+Home, ⌘ Cmd+Home Put the cursor to the very beginning of the text in a cell or shape. Jump to the end of the text Ctrl+End ^ Ctrl+Fn+→, ⌘ Cmd+Fn+→ ^ Ctrl+End, ⌘ Cmd+End Put the cursor to the very end of the text in a cell or shape. Select from cursor to beginning of text Ctrl+⇧ Shift+Home ^ Ctrl+⇧ Shift+Fn+←, ⌘ Cmd+⇧ Shift+Fn+← ^ Ctrl+⇧ Shift+Home, ⌘ Cmd+⇧ Shift+Home Select a text fragment from the cursor to the beginning of the text in a cell or shape. Select from cursor to end of text Ctrl+⇧ Shift+End ^ Ctrl+⇧ Shift+Fn+→, ⌘ Cmd+⇧ Shift+Fn+→ ^ Ctrl+⇧ Shift+End, ⌘ Cmd+⇧ Shift+End Select a text fragment from the cursor to the end of the text in a cell or shape. Jump to the beginning of the line Home ⌘ Cmd+← Home Put the cursor to the beginning of the currently edited line. Jump to the end of the line End ⌘ Cmd+→ End Put the cursor to the end of the currently edited line. Select from cursor to beginning of line ⇧ Shift+Home ⇧ Shift+Fn+← ⇧ Shift+Home Select a text fragment from the cursor to the beginning of the current line. Select from cursor to end of line ⇧ Shift+End ⇧ Shift+Fn+→ ⇧ Shift+End Select a text fragment from the cursor to the end of the current line. Select one line up ⇧ Shift+↑ ⇧ Shift+↑ Select one line up (with the cursor at the beginning of a line). Select one line down ⇧ Shift+↓ ⇧ Shift+↓ Select one line down (with the cursor at the end of a line). Pivot tables Update pivot table Alt+F5 ⌥ Option+Fn+F5 Update the previously selected pivot table. Update all pivot tables Ctrl+Alt+F5 2 Ctrl+⌥ Option+Fn+F5 Update all pivot tables. Slicers Clear selected values Alt+C Ctrl+⌥ Option+C, ⌘ Cmd+⌥ Option+C Clear selected values for a slicer. Switch multi-select Alt+S Ctrl+⌥ Option+S, ⌘ Cmd+⌥ Option+S Enable/disabler multi-select for a slicer. Formatted tables Add summary row Ctrl+⇧ Shift+R Ctrl+⇧ Shift+R, ⌘ Cmd+⇧ Shift+R Add the Summary row for a formatted table. Functions Insert function ⇧ Shift+F3 ⇧ Shift+Fn+F3 Open the dialog box for inserting a new function by choosing from the provided list. SUM function Alt+= ⌥ Option+Ctrl+= Insert the SUM function into the selected cell. Recalculate functions F9 Fn+F9 Recalculate the entire workbook. Recalculate functions ⇧ Shift+F9 ⇧ Shift+Fn+F9 Recalculate the current worksheet. Display functions on sheet Ctrl+` Ctrl+` Display functions (not their values) on a sheet for printing them. Switch the type of reference F4 Fn+F4 Switch the type of a reference to a cell in the formula bar (absolute, relative). Data Formats Open the 'Number Format' dialog box Ctrl+1 ^ Ctrl+1, ⌘ Cmd+1 Open the Number Format dialog box. Apply the General format Ctrl+⇧ Shift+~ ^ Ctrl+⇧ Shift+~ Apply the General number format. Apply the Currency format Ctrl+⇧ Shift+$ ^ Ctrl+⇧ Shift+$ Apply the Currency format with two decimal places. Apply the Percentage format Ctrl+⇧ Shift+% ^ Ctrl+⇧ Shift+% Apply the Percentage format with no decimal places. Apply the Exponential format Ctrl+⇧ Shift+^ ^ Ctrl+⇧ Shift+^ Apply the Exponential number format with two decimal places. Apply the Date format Ctrl+⇧ Shift+# ^ Ctrl+⇧ Shift+# Apply the Date format with the day, month, and year. Apply the Time format Ctrl+⇧ Shift+@ ^ Ctrl+⇧ Shift+@ Apply the Time format with the hour and minute, and AM or PM. Apply the Number format Ctrl+⇧ Shift+! ^ Ctrl+⇧ Shift+! Apply the Number format with two decimal places, thousands separator, and minus sign (-) for negative values. Modifying Objects Working with shapes ↵ Enter Return When the shape is selected, if it does not contain content, create content and move the cursor to the beginning of the line. If the content is empty, move the cursor to it, otherwise select the entire content. Working with charts ↵ Enter When the chart title is selected, select the text. Create a copy when dragging Ctrl ^ Ctrl Select an object and hold down the specified key when dragging the object to create the copy of the object in the location where it was moved. Constrain movement ⇧ Shift + drag ⇧ Shift + drag Constrain the movement of the selected object horizontally or vertically. Set 15-degree rotation ⇧ Shift + drag (when rotating) ⇧ Shift + drag (when rotating) Constrain the rotation angle to 15-degree increments. Maintain proportions ⇧ Shift + drag (when resizing) ⇧ Shift + drag (when resizing) Maintain the proportions of the selected object when resizing. Change angle of line/arrow when drawing ⇧ Shift + drag (when drawing lines/arrows) ⇧ Shift + drag (when drawing lines/arrows) Hold down the Shift key while drawing the line/arrow and rotate the spout of the arrow/end of the line to change the angle of the line/arrow when drawing it. The line/arrow will be rotated exactly 45 degrees. Movement by one-pixel increments Ctrl+← → ↑ ↓ ⌘ Cmd+← → ↑ ↓ Hold down the specified key and use the keybord arrows to move the selected object to the left, right, up, or down by one pixel at a time. Move shape by a big step ← → ↑ ↓ ← → ↑ ↓ Use the keybord arrows to move the selected object by a big step to the left, right, up, or down. Move focus to the next object ↹ Tab ↹ Tab Move focus to the next object after the currently selected one. Move focus to the previous object ⇧ Shift+↹ Tab ⇧ Shift+↹ Tab Move focus to the previous object before the currently selected one. Select all Ctrl+A ⌘ Cmd+A, ^ Ctrl+A Select all shapes (when the focus is on a shape). Add tab character to the object content ↹ Tab ↹ Tab Add the tab character to the object content. Subscript Ctrl+. ^ Ctrl+., ⌘ Cmd+. Make the selected text fragment smaller and place it to the lower part of the text line, e.g. as in chemical formulas. Works only with text within a graphical object. Superscript Ctrl+, ^ Ctrl+,, ⌘ Cmd+, Make the selected text fragment smaller and place it to the upper part of the text line, e.g. as in fractions. Works only with text within a graphical object. Increase font Ctrl+] ⌘ Cmd+], ^ Ctrl+] Increase the size of the font for the selected text fragment 1 point. Works only with text within a graphical object. Decrease font Ctrl+[ ⌘ Cmd+[, ^ Ctrl+[ Decrease the size of the font for the selected text fragment 1 point. Works only with text within a graphical object. Align center Ctrl+E ^ Ctrl+E, ⌘ Cmd+E Switch a paragraph between centered and left-aligned. Works only with text within a graphical object. Align justified Ctrl+J ^ Ctrl+J, ⌘ Cmd+J Switch a paragraph between justified and left-aligned. Works only with text within a graphical object. Align right Ctrl+R ^ Ctrl+R, ⌘ Cmd+R Switch a paragraph between right-aligned and left-aligned. Works only with text within a graphical object. Align left Ctrl+L ^ Ctrl+L, ⌘ Cmd+L Align a paragraph left. Works only with text within a graphical object. End paragraph and start a new one ↵ Enter ↵ Return End the current paragraph and start a new one when entering text within a graphical object. Add line break ⇧ Shift+↵ Enter ⇧ Shift+↵ Return Add a line break without starting a new paragraph when entering text within a graphical object. Remove graphical object Delete, Ctrl+Delete, Backspace, Ctrl+Backspace Delete, ⌥ Option+Delete Remove graphical object. Exit from adding shapes mode, remove selection step by step Esc Esc Exit from adding shapes mode. Remove selection step by step (e.g., if the content of a shape within a group is selected, the cursor will be removed from the content first, then from the shape, then from the group). 1 - Paste the copied data using Ctrl+V on Windows or Cmd+V on macOS. After pasting the copied data, use the Ctrl key to open the Paste Special menu, then press the letter key which corresponds to the necessary option. 2 - This keyboard shortcut does not work on Linux." }, { "id": "HelpfulHints/Navigation.htm", @@ -2473,7 +2468,7 @@ var indexes = { "id": "ProgramInterface/DataTab.htm", "title": "Data tab", - "body": "The Data tab allows managing data in the Spreadsheet Editor. The corresponding window of the Online Spreadsheet Editor: The corresponding window of the Desktop Spreadsheet Editor: Using this tab, you can: sort and filter data, convert text to columns, remove duplicates from a data range, group and ungroup data, set data validation parameters, get data from TXT/CSV file, view other files the spreadsheet is linked to via the External Links button." + "body": "The Data tab allows managing data in the Spreadsheet Editor. The corresponding window of the Online Spreadsheet Editor: The corresponding window of the Desktop Spreadsheet Editor: Using this tab, you can: sort and filter data, convert text to columns, remove duplicates from a data range, group and ungroup data, set data validation parameters, find the right input for the value that you want, get data from TXT/CSV file, view other files the spreadsheet is linked to via the External Links button." }, { "id": "ProgramInterface/DrawTab.htm", @@ -2493,12 +2488,12 @@ var indexes = { "id": "ProgramInterface/HomeTab.htm", "title": "Home tab", - "body": "The Home tab opens by default when you open the Spreadsheet Editor. It allows you to format cells and data in them, apply filters, insert functions, etc. Some other options are also available here, such as Format as table template feature and so on. The corresponding window of the Online Spreadsheet Editor: The corresponding window of the Desktop Spreadsheet Editor: Using this tab, you can: set the font type, size, style, and colors, align data in cells, add cell borders and merge cells, insert functions and create named ranges, sort and filter data, change the number format, add or remove cells, rows, columns, copy/clear the cell formatting, use conditional formatting, apply a table template to the selected cell range." + "body": "The Home tab opens by default when you open the Spreadsheet Editor. It allows you to format cells and data in them, apply filters, insert functions, etc. Some other options are also available here, such as Format as table template feature and so on. The corresponding window of the Online Spreadsheet Editor: The corresponding window of the Desktop Spreadsheet Editor: Using this tab, you can: set the font type, size, style, and colors, align data in cells, add cell borders and merge cells, insert functions and create named ranges, use the Series tool to fill in data ranges, sort and filter data, change the number format, add or remove cells, rows, columns, copy/clear the cell formatting, use conditional formatting, apply a table template to the selected cell range." }, { "id": "ProgramInterface/InsertTab.htm", "title": "Insert tab", - "body": "The Insert tab allows adding visual objects and comments in the Spreadsheet Editor. The corresponding window of the Online Spreadsheet Editor: The corresponding window of the Desktop Spreadsheet Editor: Using this tab, you can: insert pivot tables, insert formatted tables, insert images, shapes, text boxes and Text Art objects, charts, sparklines, insert comments and hyperlinks, insert headers/footers, insert equations and symbols, insert slicers." + "body": "The Insert tab allows adding visual objects and comments in the Spreadsheet Editor. The corresponding window of the Online Spreadsheet Editor: The corresponding window of the Desktop Spreadsheet Editor: Using this tab, you can: insert pivot tables, insert formatted tables, insert images, shapes, text boxes and Text Art objects,SmartArt objects, insert recommended charts, charts, sparklines, insert comments and hyperlinks, insert headers/footers, insert equations and symbols, insert slicers." }, { "id": "ProgramInterface/LayoutTab.htm", @@ -2508,17 +2503,17 @@ var indexes = { "id": "ProgramInterface/PivotTableTab.htm", "title": "Pivot Table tab", - "body": "The Pivot Table tab in the Spreadsheet Editor allows creating and editing pivot tables. The corresponding window of the Online Spreadsheet Editor: The corresponding window of the Desktop Spreadsheet Editor: Using this tab, you can: create a new pivot table, choose the necessary layout for your pivot table, update the pivot table if you change the data in your source data set, select an entire pivot table with a single click, highlight certain rows/columns by applying a specific formatting style to them, choose one of the predefined tables styles." + "body": "The Pivot Table tab in the Spreadsheet Editor allows creating and editing pivot tables. The corresponding window of the Online Spreadsheet Editor: The corresponding window of the Desktop Spreadsheet Editor: Using this tab, you can: create a new pivot table, choose the necessary layout for your pivot table, update the pivot table if you change the data in your source data set, select an entire pivot table with a single click, expand or collapse fields to show/hide the details for the pivot table items, highlight certain rows/columns by applying a specific formatting style to them, choose one of the predefined tables styles." }, { "id": "ProgramInterface/PluginsTab.htm", "title": "Plugins tab", - "body": "The Plugins tab in the Spreadsheet Editor allows accessing the advanced editing features using the available third-party components. With this tab, you can also use macros to simplify routine operations. The corresponding window of the Online Spreadsheet Editor: The corresponding window of the Desktop Spreadsheet Editor: The Plugin Manager button allows you to open the window where you can view and manage all the installed plugins and add your own ones. The Macros button allows you to open the window where you can create and run your own macros. To learn more about macros, please refer to our API Documentation. Currently, the following plugins are available: Send allows to send the spreadsheet via email using the default desktop mail client (available in the desktop version only), Highlight code allows to highlight syntax of the code selecting the necessary language, style, background color, Photo Editor allows to edit images: crop, flip, rotate them, draw lines and shapes, add icons and text, load a mask and apply filters such as Grayscale, Invert, Sepia, Blur, Sharpen, Emboss, etc., Thesaurus allows to search for synonyms and antonyms of a word and replace it with the selected one, Translator allows to translate the selected text into other languages, Note: this plugin doesn't work in Internet Explorer. YouTube allows to embed YouTube videos into your spreadsheet. To learn more about plugins please refer to our API Documentation. All the existing open-source plugin examples are currently available on GitHub." + "body": "The Plugins tab in the Spreadsheet Editor allows accessing the advanced editing features using the available third-party components. With this tab, you can also use macros to simplify routine operations. The corresponding window of the Online Spreadsheet Editor: The corresponding window of the Desktop Spreadsheet Editor: The Plugin Manager button allows you to open the window where you can view and manage all the installed plugins and add your own ones. The Background Plugins button allows viewing the list of plugins that work in the background. Here you can activate or disable them by activating/deactivating the corresponding switches, and adjust their settings by clicking the More button next to the required plugin. The Macros button allows you to open the window where you can create and run your own macros. To learn more about macros, please refer to our API Documentation. Currently, the following plugins are available: Send allows to send the spreadsheet via email using the default desktop mail client (available in the desktop version only), Highlight code allows to highlight syntax of the code selecting the necessary language, style, background color, Photo Editor allows to edit images: crop, flip, rotate them, draw lines and shapes, add icons and text, load a mask and apply filters such as Grayscale, Invert, Sepia, Blur, Sharpen, Emboss, etc., Thesaurus allows to search for synonyms and antonyms of a word and replace it with the selected one, Translator allows to translate the selected text into other languages, Note: this plugin doesn't work in Internet Explorer. YouTube allows to embed YouTube videos into your spreadsheet. Several visual plugins can be added to your document. The added plugins will be displayed as corresponding icons on the left panel. To learn more about plugins, please refer to our API Documentation. All the existing open-source plugin examples are currently available on GitHub." }, { "id": "ProgramInterface/ProgramInterface.htm", "title": "Introducing the Spreadsheet Editor user interface", - "body": "The Spreadsheet Editor uses a tabbed interface where editing commands are grouped into tabs by functionality. Main window of the Online Spreadsheet Editor: Main window of the Desktop Spreadsheet Editor: The editor interface consists of the following main elements: The Editor header displays the logo, tabs for all opened spreadsheets, with their names and menu tabs.. On the left side of the Editor header there are the Save, Print file, Undo and Redo buttons are located. On the right side of the Editor header along with the user name the following icons are displayed: Open file location - in the desktop version, it allows opening the folder, where the file is stored, in the File explorer window. In the online version, it allows opening the folder in the Documents module where the file is stored, in a new browser tab. Share - (available in the online version only) allows setting access rights for the documents stored in the cloud. Mark as favorite - click the star to add a file to favorites as to make it easy to find. The added file is just a shortcut so the file itself remains stored in its original location. Deleting a file from favorites does not remove the file from its original location. Search - allows to search the spreadsheet for a particular word or symbol, etc. The top toolbar displays a set of editing commands depending on the selected menu tab. Currently, the following tabs are available: File, Home, Insert, Layout, Formula, Data, Pivot Table, Collaboration, Protection, View, Plugins. The Copy, Paste, Cut and Select All options are always available at the left part of the Top toolbar regardless of the selected tab. The Formula bar allows entering and editing formulas or values in the cells. The Formula bar displays the contents of the currently selected cell. The Status bar at the bottom of the editor window contains some navigation tools: sheet navigation buttons, add worksheet button, list of sheets button, sheet tabs, and zoom buttons. The Status bar also displays the background save status and connection status when there is no connection and the editor is trying to reconnect, the number of filtered records if you apply a filter, or the results of automatic calculations if you select several cells containing data. The Left sidebar contains the following icons: - allows using the Search and Replace tool, - allows opening the Comments panel, - (available in the online version only) allows opening the Chat panel, - allows to check the spelling of your text in a certain language and correct mistakes while editing. - allows contacting our support team, - (available in the online version only) allows viewing the information about the program. The Right sidebar allows adjusting additional parameters of different objects. When you select a particular object in a worksheet, the corresponding icon is activated on the right sidebar. Click this icon to expand the right sidebar. The Working area allows viewing the contents of a spreadsheet, as well as entering and editing data. The horizontal and vertical Scroll bars allow scrolling up/down and left/right. For your convenience, you can hide some components and display them again when necessary. To learn more on how to adjust view settings please refer to this page." + "body": "The Spreadsheet Editor uses a tabbed interface where editing commands are grouped into tabs by functionality. Main window of the Online Spreadsheet Editor: Main window of the Desktop Spreadsheet Editor: The editor interface consists of the following main elements: The Editor header displays the logo, tabs for all opened spreadsheets, with their names and menu tabs.. On the left side of the Editor header there are the Save, Print file, Undo and Redo buttons are located. On the right side of the Editor header along with the user name the following icons are displayed: Open file location - in the desktop version, it allows opening the folder, where the file is stored, in the File explorer window. In the online version, it allows opening the folder in the Documents module where the file is stored, in a new browser tab. Share - (available in the online version only) allows setting access rights for the documents stored in the cloud. Mark as favorite - click the star to add a file to favorites as to make it easy to find. The added file is just a shortcut so the file itself remains stored in its original location. Deleting a file from favorites does not remove the file from its original location. Search - allows to search the spreadsheet for a particular word or symbol, etc. The top toolbar displays a set of editing commands depending on the selected menu tab. Currently, the following tabs are available: File, Home, Insert, Draw, Layout, Formula, Data, Pivot Table, Collaboration, Protection, View, Plugins. The Copy, Paste, Cut and Select All options are always available at the left part of the Top toolbar regardless of the selected tab. The Formula bar allows entering and editing formulas or values in the cells. The Formula bar displays the contents of the currently selected cell. The Status bar at the bottom of the editor window contains some navigation tools: sheet navigation buttons, add worksheet button, list of sheets button, sheet tabs, and zoom buttons. The Status bar also displays the background save status and connection status when there is no connection and the editor is trying to reconnect, the number of filtered records if you apply a filter, or the results of automatic calculations if you select several cells containing data. The Left sidebar contains the following icons: - allows using the Search and Replace tool, - allows opening the Comments panel, - (available in the online version only) allows opening the Chat panel, - allows to check the spelling of your text in a certain language and correct mistakes while editing. - allows contacting our support team, - (available in the online version only) allows viewing the information about the program. The Right sidebar allows adjusting additional parameters of different objects. When you select a particular object in a worksheet, the corresponding icon is activated on the right sidebar. Click this icon to expand the right sidebar. The Working area allows viewing the contents of a spreadsheet, as well as entering and editing data. The horizontal and vertical Scroll bars allow scrolling up/down and left/right. For your convenience, you can hide some components and display them again when necessary. To learn more on how to adjust view settings please refer to this page. When there are many icons on the left and right panels, the ones below will be hidden, and they can be accessed via the More button." }, { "id": "ProgramInterface/ProtectionTab.htm", @@ -2538,12 +2533,12 @@ var indexes = { "id": "UsageInstructions/AddExternalLinks.htm", "title": "Add external links to cells", - "body": "In the Spreadsheet Editor, you can create an external link to a cell or a range of cells in another workbook. The external links to cells can be created between files within the current portal (in the online editor) or between local files (in the desktop editor). Note: in the online editor, the ability to insert data via an external link must also be implemented on the integrator side (e.g., in a third-party document management system). If data in the source workbook changes, you can update values in the destination workbook without copying them manually once again. To add an external link, open the source workbook and the destination workbook, in the source workbook, copy a cell or a range of cells (Ctrl+C), in the destination workbook, paste the copied data (Ctrl+V), click the Paste Special button and choose the Paste link (Ctrl+N) option. The link will be added. If you click the cell which contains an external link, it looks like ='[SourceWorkbook.xlsx]Sheet1'!A1 in the formula bar. To update the added external links, switch to the Data tab, click the External Links button, select the necessary link in the list, click the Update Values button or click the arrow next to it and choose whether you want to Update values (currently selected) or Update all. The status will be changed to 'OK'. When you open the workbook which contains external links, the warning appears: Click Update to update all external links. To break the added external links, switch to the Data tab, click the External Links button, select the necessary link in the list, click the Break Links button or click the arrow next to it and choose whether you want to Break links (currently selected) or Break all links. The links will be broken, and the values will not be updated." + "body": "In the Spreadsheet Editor, you can create an external link to a cell or a range of cells in another workbook. The external links to cells can be created between files within the current portal (in the online editor) or between local files (in the desktop editor). Note: in the online editor, the ability to insert data via an external link must also be implemented on the integrator side (e.g., in a third-party document management system). If data in the source workbook changes, you can update values in the destination workbook without copying them manually once again. To add an external link, open the source workbook and the destination workbook, in the source workbook, copy a cell or a range of cells (Ctrl+C), in the destination workbook, paste the copied data (Ctrl+V), click the Paste Special button and choose the Paste link option (or use the Ctrl key to open the Paste Special menu, then press N). The link will be added. If you click the cell which contains an external link, it looks like ='[SourceWorkbook.xlsx]Sheet1'!A1 in the formula bar. To update the added external links, switch to the Data tab, click the External Links button, select the necessary link in the list, click the Update Values button or click the arrow next to it and choose whether you want to Update values (currently selected) or Update all. The status will be changed to 'OK'. When you open the workbook which contains external links, the warning appears: Click Update to update all external links. To break the added external links, switch to the Data tab, click the External Links button, select the necessary link in the list, click the Break Links button or click the arrow next to it and choose whether you want to Break links (currently selected) or Break all links. The links will be broken, and the values will not be updated." }, { "id": "UsageInstructions/AddHyperlinks.htm", "title": "Add hyperlinks", - "body": "To add a hyperlink in the Spreadsheet Editor, select a cell where a hyperlink should be added, switch to the Insert tab of the top toolbar, click the Hyperlink icon on the top toolbar, the Hyperlink Settings window will appear, and you will be able to specify the hyperlink settings: Select the required link type: Use the External Link option and enter a URL in the http://www.example.com format in the Link to field below if you need to add a hyperlink leading to an external website. If you need to add a hyperlink to a local file, enter the URL in the file://path/Spreadsheet.xlsx (for Windows) or file:///path/Spreadsheet.xlsx (for MacOS and Linux) format in the Link to field. The file://path/Spreadsheet.xlsx or file:///path/Spreadsheet.xlsx hyperlink type can be opened only in the desktop version of the editor. In the web editor you can only add the link without being able to open it. Use the Internal Data Range option, select a worksheet and a cell range in the fields below, or a previously added Named range if you need to add a hyperlink leading to a certain cell range in the same spreadsheet. You can also generate an external link which will lead to a particular cell or a range of cells by clicking the Get Link button or using the Get link to this range option in the contextual right-click menu of the required cell range. Display - enter a text that will become clickable and lead to the web address specified in the upper field. Note: if the selected cell already contains data, it will be automatically displayed in this field. ScreenTip Text - enter a text that will become visible in a small pop-up window with a brief note or label connected to the hyperlink. click the OK button. To add a hyperlink, you can also use the Ctrl+K key combination or click with the right mouse button the position where the hyperlink should be added and select the Hyperlink option in the right-click menu. When you hover the cursor over the added hyperlink, the ScreenTip will appear. To follow the link, click the link in the spreadsheet. To select a cell that contains a link without opening the link, click and hold the mouse button. To delete the added hyperlink, activate the cell containing the added hyperlink and press the Delete key, or right-click the cell and select the Clear All option from the drop-down list." + "body": "To add a hyperlink in the Spreadsheet Editor, select a cell where a hyperlink should be added, switch to the Insert tab of the top toolbar, click the Hyperlink icon on the top toolbar, the Hyperlink Settings window will appear, and you will be able to specify the hyperlink settings: Select the required link type: Use the External Link option and enter a URL in the http://www.example.com format in the Link to field below if you need to add a hyperlink leading to an external website. If you need to add a hyperlink to a local file, enter the URL in the file://path/Spreadsheet.xlsx (for Windows) or file:///path/Spreadsheet.xlsx (for MacOS and Linux) format in the Link to field. The file://path/Spreadsheet.xlsx or file:///path/Spreadsheet.xlsx hyperlink type can be opened only in the desktop version of the editor. In the web editor you can only add the link without being able to open it. Use the Internal Data Range option, select a worksheet and a cell range in the fields below, or a previously added Named range if you need to add a hyperlink leading to a certain cell range in the same spreadsheet. You can also generate an external link which will lead to a particular cell or a range of cells by clicking the Get Link button or using the Get link to this range option in the contextual right-click menu of the required cell range. The Get link to this range option is also available in the viewing mode. Display - enter a text that will become clickable and lead to the web address specified in the upper field. Note: if the selected cell already contains data, it will be automatically displayed in this field. ScreenTip Text - enter a text that will become visible in a small pop-up window with a brief note or label connected to the hyperlink. click the OK button. To add a hyperlink, you can also use the Ctrl+K key combination or click with the right mouse button the position where the hyperlink should be added and select the Hyperlink option in the right-click menu. When you hover the cursor over the added hyperlink, the ScreenTip will appear. To follow the link, click the link in the spreadsheet. To select a cell that contains a link without opening the link, click and hold the mouse button. To delete the added hyperlink, activate the cell containing the added hyperlink and press the Delete key, or right-click the cell and select the Clear All option from the drop-down list." }, { "id": "UsageInstructions/AlignText.htm", @@ -2578,7 +2573,7 @@ var indexes = { "id": "UsageInstructions/CopyPasteData.htm", "title": "Cut/copy/paste data", - "body": "Use basic clipboard operations To cut, copy and paste data in the current spreadsheet make use of the right-click menu or use the corresponding icons of the Spreadsheet Editor available on any tab of the top toolbar, Cut - select data and use the Cut option from the right-click menu, or the Cut icon on the top toolbar to delete the selected data and send them to the computer clipboard memory. The cut data can be later inserted to another place in the same spreadsheet. Copy - select data and either use the Copy icon at the top toolbar or right-click and select the Copy option from the menu to send the selected data to the computer clipboard memory. The copied data can be later inserted to another place in the same spreadsheet. Paste - select a place and either use the Paste icon on the top toolbar or right-click and select the Paste option to insert the previously copied/cut data from the computer clipboard memory to the current cursor position. The data can be previously copied from the same spreadsheet. In the online version, the following key combinations are only used to copy or paste data from/into another spreadsheet or some other program, in the desktop version, both the corresponding buttons/menu options and key combinations can be used for any copy/paste operations: Ctrl+X key combination for cutting; Ctrl+C key combination for copying; Ctrl+V key combination for pasting. Note: instead of cutting and pasting data within the same worksheet you can select the required cell/cell range, hover the mouse cursor over the selection border so that it turns into the Arrow icon and drag and drop the selection to the necessary position. To enable / disable the automatic appearance of the Paste Special button after pasting, go to the File tab > Advanced Settings and check / uncheck the Show the Paste Options button when the content is pasted checkbox. Use the Paste Special feature Note: For collaborative editing, the Paste Special feature is available in the Strict co-editing mode only. Once the copied data is pasted, the Paste Special button appears next to the lower right corner of the inserted cell/cell range. Click this button to select the necessary paste option. When pasting a cell/cell range with formatted data, the following options are available: Paste (Ctrl+P) - allows you to paste all the cell contents including data formatting. This option is selected by default. The following options can be used if the copied data contains formulas: Paste only formula (Ctrl+F) - allows you to paste formulas without pasting the data formatting. Formula + number format (Ctrl+O) - allows you to paste formulas with the formatting applied to numbers. Formula + all formatting (Ctrl+K) - allows you to paste formulas with all the data formatting. Formula without borders (Ctrl+B) - allows you to paste formulas with all the data formatting except the cell borders. Formula + column width (Ctrl+W) - allows you to paste formulas with all the data formatting and set the source column`s width for the cell range. Transpose (Ctrl+T) - allows you to paste data switching them from columns to rows, or vice versa. This option is available for regular data ranges, but not for formatted tables. The following options allow you to paste the result that the copied formula returns without pasting the formula itself: Paste only value (Ctrl+V) - allows you to paste the formula results without pasting the data formatting. Value + number format (Ctrl+A) - allows to paste the formula results with the formatting applied to numbers. Value + all formatting (Ctrl+E) - allows you to paste the formula results with all the data formatting. Paste only formatting (Ctrl+R) - allows you to paste the cell formatting only without pasting the cell contents. Paste link (Ctrl+N) - allows you to paste the inner link to a cell or a file within the current portal. Paste Formulas - allows you to paste formulas without pasting the data formatting. Values - allows you to paste the formula results without pasting the data formatting. Formats - allows you to apply the formatting of the copied area. Comments - allows you to add comments of the copied area. Column widths - allows you to set certal column widths of the copied area. All except borders - allows you to paste formulas, formula results with all its formatting except borders. Formulas & formatting - allows you to paste formulas and apply formatting on them from the copied area. Formulas & column widths - allows you to paste formulas and set certaln column widths of the copied area. Formulas & number formulas - allows you to paste formulas and number formulas. Values & number formats - allows you to paste formula results and apply the numbers formatting of the copied area. Values & formatting - allows you to paste formula results and apply the formatting of the copied area. Operation Add - allows you to automatically add numeric values in each inserted cell. Subtract - allows you to automatically subtract numeric values in each inserted cell. Multiply - allows you to automatically multiply numeric values in each inserted cell. Divide - allows you to automatically divide numeric values in each inserted cell. Transpose - allows you to paste data switching them from columns to rows, or vice versa. Skip blanks - allows you to skip pasting empty cells and their formatting. When pasting the contents of a single cell or some text within autoshapes, the following options are available: Source formatting (Ctrl+K) - allows you to keep the source formatting of the copied data. Destination formatting (Ctrl+M) - allows you to apply the formatting that is already used for the cell/autoshape where the data are to be inserted to. Paste delimited text When pasting the delimited text copied from a .txt file, the following options are available: The delimited text can contain several records, and each record corresponds to a single table row. Each record can contain several text values separated with a delimiter (such as a comma, semicolon, colon, tab, space or other characters). The file should be saved as a plain text .txt file. Keep text only (Ctrl+T) - allows you to paste text values into a single column where each cell contents corresponds to a row in the source text file. Use text import wizard - allows you to open the Text Import Wizard which helps to easily split the text values into multiple columns where each text value separated by a delimiter will be placed into a separate cell. When the Text Import Wizard window opens, select the text delimiter used in the delimited data from the Delimiter drop-down list. The data split into columns will be displayed in the Preview field below. If you are satisfied with the result, click the OK button. If you pasted delimited data from a source that is not a plain text file (e.g. text copied from a web page etc.), or if you applied the Keep text only feature and now want to split the data from a single column into several columns, you can use the Text to Columns option. To split data into multiple columns: Select the necessary cell or column that contains data with delimiters. Switch to the Data tab. Click the Text to columns button on the top toolbar. The Text to Columns Wizard opens. In the Delimiter drop-down list, select the delimiter used in the delimited data. Click the Advanced button to open the Advanced Settings window in which you can specify the Decimal and Thousands separators. Preview the result in the field below and click OK. After that, each text value separated by the delimiter will be located in a separate cell. If there is some data in the cells to the right of the column you want to split, the data will be overwritten. Use the Auto Fill option To quickly fill multiple cells with the same data use the Auto Fill option: select a cell/cell range containing the required data, move the mouse cursor over the fill handle in the right lower corner of the cell. The cursor will turn into the black cross: drag the handle over the adjacent cells to fill them with the selected data. Note: if you need to create a series of numbers (such as 1, 2, 3, 4...; 2, 4, 6, 8... etc.) or dates, you can enter at least two starting values and quickly extend the series selecting these cells and dragging the fill handle. For a series of days of the week or months, enter the initial value and drag the fill handle. Fill cells in the column with text values If a column in your spreadsheet contains some text values, you can easily replace any value within this column or fill the next blank cell selecting one of already existing text values. Right-click the necessary cell and choose the Select from drop-down list option in the contextual menu. Select one of the available text values to replace the current one or fill an empty cell." + "body": "Use basic clipboard operations To cut, copy and paste data in the current spreadsheet make use of the right-click menu or use the corresponding icons of the Spreadsheet Editor available on any tab of the top toolbar, Cut - select data and use the Cut option from the right-click menu, or the Cut icon on the top toolbar to delete the selected data and send them to the computer clipboard memory. The cut data can be later inserted to another place in the same spreadsheet. Copy - select data and either use the Copy icon at the top toolbar or right-click and select the Copy option from the menu to send the selected data to the computer clipboard memory. The copied data can be later inserted to another place in the same spreadsheet. Paste - select a place and either use the Paste icon on the top toolbar or right-click and select the Paste option to insert the previously copied/cut data from the computer clipboard memory to the current cursor position. The data can be previously copied from the same spreadsheet. In the online version, the following key combinations are only used to copy or paste data from/into another spreadsheet or some other program, in the desktop version, both the corresponding buttons/menu options and key combinations can be used for any copy/paste operations: Ctrl+X key combination for cutting (Cmd+X for macOS); Ctrl+C key combination for copying (Cmd+C for macOS); Ctrl+V key combination for pasting (Cmd+V for macOS). Note: instead of cutting and pasting data within the same worksheet you can select the required cell/cell range, hover the mouse cursor over the selection border so that it turns into the Arrow icon and drag and drop the selection to the necessary position. To enable / disable the automatic appearance of the Paste Special button after pasting, go to the File tab > Advanced Settings and check / uncheck the Show the Paste Options button when the content is pasted checkbox. Use the Paste Special feature Note: For collaborative editing, the Paste Special feature is available in the Strict co-editing mode only. Once the copied data is pasted, the Paste Special button appears next to the lower right corner of the inserted cell/cell range. Click this button to select the necessary paste option or use the Ctrl key to open the Paste Special menu, then press the letter key given in the brackets next to the required option. When pasting a cell/cell range with formatted data, the following options are available: Paste (Ctrl then P) - allows you to paste all the cell contents including data formatting. This option is selected by default. The following options can be used if the copied data contains formulas: Paste only formula (Ctrl then F) - allows you to paste formulas without pasting the data formatting. Formula + number format (Ctrl then O) - allows you to paste formulas with the formatting applied to numbers. Formula + all formatting (Ctrl then K) - allows you to paste formulas with all the data formatting. Formula without borders (Ctrl then B) - allows you to paste formulas with all the data formatting except the cell borders. Formula + column width (Ctrl then W) - allows you to paste formulas with all the data formatting and set the source column`s width for the cell range. Transpose (Ctrl then T) - allows you to paste data switching them from columns to rows, or vice versa. This option is available for regular data ranges, but not for formatted tables. The following options allow you to paste the result that the copied formula returns without pasting the formula itself: Paste only value (Ctrl then +V) - allows you to paste the formula results without pasting the data formatting. Value + number format (Ctrl then A) - allows to paste the formula results with the formatting applied to numbers. Value + all formatting (Ctrl then E) - allows you to paste the formula results with all the data formatting. Paste only formatting (Ctrl then R) - allows you to paste the cell formatting only without pasting the cell contents. Paste link (Ctrl then N) - allows you to paste the external link to a cell or range of cells in another spreadsheet within the current portal (in the online editor) or in a local file (in the desktop editor). Paste Formulas - allows you to paste formulas without pasting the data formatting. Values - allows you to paste the formula results without pasting the data formatting. Formats - allows you to apply the formatting of the copied area. Comments - allows you to add comments of the copied area. Column widths - allows you to set certal column widths of the copied area. All except borders - allows you to paste formulas, formula results with all its formatting except borders. Formulas & formatting - allows you to paste formulas and apply formatting on them from the copied area. Formulas & column widths - allows you to paste formulas and set certaln column widths of the copied area. Formulas & number formulas - allows you to paste formulas and number formulas. Values & number formats - allows you to paste formula results and apply the numbers formatting of the copied area. Values & formatting - allows you to paste formula results and apply the formatting of the copied area. Operation Add - allows you to automatically add numeric values in each inserted cell. Subtract - allows you to automatically subtract numeric values in each inserted cell. Multiply - allows you to automatically multiply numeric values in each inserted cell. Divide - allows you to automatically divide numeric values in each inserted cell. Transpose - allows you to paste data switching them from columns to rows, or vice versa. Skip blanks - allows you to skip pasting empty cells and their formatting. When pasting the contents of a single cell or some text within autoshapes, the following options are available: Source formatting (Ctrl+K) - allows you to keep the source formatting of the copied data. Destination formatting (Ctrl+M) - allows you to apply the formatting that is already used for the cell/autoshape where the data are to be inserted to. Paste delimited text When pasting the delimited text copied from a .txt file, the following options are available: The delimited text can contain several records, and each record corresponds to a single table row. Each record can contain several text values separated with a delimiter (such as a comma, semicolon, colon, tab, space or other characters). The file should be saved as a plain text .txt file. Keep text only (Ctrl+T) - allows you to paste text values into a single column where each cell contents corresponds to a row in the source text file. Use text import wizard - allows you to open the Text Import Wizard which helps to easily split the text values into multiple columns where each text value separated by a delimiter will be placed into a separate cell. When the Text Import Wizard window opens, select the text delimiter used in the delimited data from the Delimiter drop-down list. The data split into columns will be displayed in the Preview field below. If you are satisfied with the result, click the OK button. If you pasted delimited data from a source that is not a plain text file (e.g. text copied from a web page etc.), or if you applied the Keep text only feature and now want to split the data from a single column into several columns, you can use the Text to Columns option. To split data into multiple columns: Select the necessary cell or column that contains data with delimiters. Switch to the Data tab. Click the Text to columns button on the top toolbar. The Text to Columns Wizard opens. In the Delimiter drop-down list, select the delimiter used in the delimited data. Click the Advanced button to open the Advanced Settings window in which you can specify the Decimal and Thousands separators. Preview the result in the field below and click OK. After that, each text value separated by the delimiter will be located in a separate cell. If there is some data in the cells to the right of the column you want to split, the data will be overwritten. Use the Auto Fill option To quickly fill multiple cells with the same data use the Auto Fill option: select a cell/cell range containing the required data, move the mouse cursor over the fill handle in the right lower corner of the cell. The cursor will turn into the black cross: drag the handle over the adjacent cells to fill them with the selected data. Note: if you need to create a series of numbers (such as 1, 2, 3, 4...; 2, 4, 6, 8... etc.) or dates, you can enter at least two starting values and quickly extend the series selecting these cells and dragging the fill handle. For a series of days of the week or months, enter the initial value and drag the fill handle. Fill cells in the column with text values If a column in your spreadsheet contains some text values, you can easily replace any value within this column or fill the next blank cell selecting one of already existing text values. Right-click the necessary cell and choose the Select from drop-down list option in the contextual menu. Select one of the available text values to replace the current one or fill an empty cell. Fill cells using the Series tool Select a cell/cell range containing the initial data and some empty cells in the necessary direction. Click the Fill icon on the Home tab of the top toolbar and choose the Series option. You can also use the Down, Right, Up, Left options to fill the selected empty cells. There is another way to access the Series window. You can select the initial data, move the mouse cursor over the fill handle in the right lower corner of the cell, click and hold the right mouse button on the fill handle, then drag down, up, right, or left and release the right mouse button - the context menu appears with the Series option. You can also use the following options to fill the selected empty cells: Copy cells is used to fill cells with the same values, Fill series is used to fill cells with a series using the default step value, Fill days is used to fill cells with a series of dates, Linear trend is available if more than one starting value is selected, is used to add the default step value to the starting value and then to each subsequent value, Growth trend is available if more than one starting value is selected, is used to multiply the starting value by the default step value. In the Series dialog window, select the necessary options and click OK: Series in: Rows, Columns - select the direction to fill cells. Type: Linear is used to add the step value to the starting value and then to each subsequent value, Growth is used to multiply the starting value by the step value, Date is used to fill cells with a series of dates, AutoFill is used to fill cells with data based on other cells. Date unit: Day, Weekday, Month, Year - select the date unit you want to increase the series by. Trend - check this box if there is more than one starting value in the series. Step value - select the numerical value you want to increase the series by. By default, it is set to 1. Stop value - specify the last value in the series." }, { "id": "UsageInstructions/DataValidation.htm", @@ -2600,6 +2595,11 @@ var indexes = "title": "Use formatted tables", "body": "Create a new formatted table To make it easier for you to work with data, the Spreadsheet Editor allows you to apply a table template to the selected cell range and automatically enable the filter. To do that, select a range of cells you need to format, click the Format as table template icon situated on the Home tab of the top toolbar, select the required template in the gallery, in the opened pop-up window, check the cell range to be formatted as a table, check the Title if you wish the table headers to be included in the selected cell range, otherwise, the header row will be added at the top while the selected cell range will be moved one row down, click the OK button to apply the selected template. The template will be applied to the selected range of cells, and you will be able to edit the table headers and apply the filter to work with your data. It's also possible to insert a formatted table using the Table button on the Insert tab. In this case, the default table template is applied. Note: once you create a new formatted table, the default name (Table1, Table2, etc.) will be automatically assigned to the table. You can change this name making it more meaningful and use it for further work. If you enter a new value in the cell below the last row of the table (if the table does not have the Total row) or in the cell to the right of the last column of the table, the formatted table will be automatically extended to include a new row or column. If you do not want to expand the table, click the Paste special button that will appear and select the Undo table autoexpansion option. Once you undo this action, the Redo table autoexpansion option will be available in this menu. Note: To enable/disable table auto-expansion, select the Stop automatically expanding tables option in the Paste special button menu or go to Advanced Settings -> Spell Checking -> Proofing -> AutoCorrect Options -> AutoFormat As You Type. Select rows and columns To select an entire row in the formatted table, move the mouse cursor over the left border of the table row until it turns into the black arrow , then left-click. To select an entire column in the formatted table, move the mouse cursor over the top edge of the column header until it turns into the black arrow , then left-click. If you click once, the column data will be selected (as it is shown on the image below); if you click twice, the entire column including the header will be selected. To select an entire formatted table, move the mouse cursor over the upper left corner of the formatted table until it turns into the diagonal black arrow , then left-click. Edit formatted tables Some of the table settings can be changed using the Table settings tab of the right sidebar that will open if you select at least one cell within the table with the mouse and click the Table settings icon on the right. The Rows and Columns sections on the top allow you to emphasize certain rows/columns applying specific formatting to them, or highlight different rows/columns with different background colors to clearly distinguish them. The following options are available: Header - allows you to display the header row. Total - adds the Summary row at the bottom of the table. Note: if this option is selected, you can also select a function to calculate the summary values. Once you select a cell in the Summary row, the button will be available to the right of the cell. Click it and choose the necessary function from the list: Average, Count, Max, Min, Sum, StdDev, or Var. The More functions option allows you to open the Insert Function window and choose any other function. If you choose the None option, the currently selected cell in the Summary row will not display a summary value for this column. Banded - enables the background color alternation for odd and even rows. Filter button - allows you to display the drop-down arrows in each cell of the header row. This option is only available when the Header option is selected. First - emphasizes the leftmost column in the table with special formatting. Last - emphasizes the rightmost column in the table with special formatting. Banded - enables the background color alternation for odd and even columns. The Select From Template section allows you to choose one of the predefined tables styles. Each template combines certain formatting parameters, such as a background color, border style, row/column banding, etc. Depending on the options checked in the Rows and/or Columns sections above, the templates set will be displayed differently. For example, if you've checked the Header option in the Rows section and the Banded option in the Columns section, the displayed templates list will include only templates with the header row and banded columns enabled: If you want to remove the current table style (background color, borders, etc.) without removing the table itself, apply the None template from the template list: The Resize table section allows you to change the cell range the table formatting is applied to. Click the Select Data button - a new pop-up window will open. Change the link to the cell range in the entry field or select the necessary cell range in the worksheet with the mouse and click the OK button. Note: The headers must remain in the same row, and the resulting table range must overlap the original table range. The Rows & Columns section allows you to perform the following operations: Select a row, column, all columns data excluding the header row, or the entire table including the header row. Insert a new row above or below the selected one as well as a new column to the left or the right of the selected one. Delete a row, column (depending on the cursor position or the selection), or the entire table. Note: the options of the Rows & Columns section are also accessible from the right-click menu. The Remove duplicates option can be used if you want to remove duplicate values from the formatted table. For more details on removing duplicates, please refer to this page. The Convert to range option can be used if you want to transform the table into a regular data range removing the filter but preserving the table style (i.e. cell and font colors, etc.). Once you apply this option, the Table settings tab on the right sidebar will be unavailable. The Insert slicer option is used to create a slicer for the formatted table. For more details on working with slicers, please refer to this page. The Insert pivot table option is used to create a pivot table on the base of the formatted table. For more details on working with pivot tables, please refer to this page. Adjust formatted table advanced settings To change the advanced table properties, use the Show advanced settings link on the right sidebar. The 'Table - Advanced Settings' window will open: The Alternative Text tab allows you to specify the Title and the Description which will be read to people with vision or cognitive impairments to help them better understand what information the table contains. Note: To enable/disable table auto-expansion, go to Advanced Settings -> Spell Checking -> Proofing -> AutoCorrect Options -> AutoFormat As You Type. Use Formula Autocomplete to Add Formulas to Formatted Tables The Formula Autocomplete list displays all the available options when you apply formulas to formatted tables. You can add a reference to a table in your formula inside or outside a table. Columns and item names are used instead of cell addresses as references. The example below shows a reference to a table in the SUM function. Select a cell and start typing a formula beginning with an equal sign, select the necessary function from the Formula Autocomplete list. After the opening parenthesis, start typing the table name, and select the appropriate name from the Formula Autocomplete list. Then type an opening bracket [ to open the drop-down list that contains columns and items that can be used in the formula. A tooltip describing the reference appears when you hover the mouse pointer over it in the list. Note: Each reference must contain an opening and a closing bracket. Don’t forget to check formula syntax." }, + { + "id": "UsageInstructions/GoalSeek.htm", + "title": "Goal Seek", + "body": "ONLYOFFICE Spreadsheet Editor offers a Goal Seek feature that allows you to determine which numbers should be substituted into the formula to obtain the desired and previously known result. Open the Data tab and click the Goal Seek icon on the top toolbar. In the opened Goal Seek window, select the necessary options: Set cell - enter the reference to the cell that contains a formula. You can use the icon to select the cell. To value - enter the result you want to get in the cell containing the formula. By changing cell - enter the reference to the cell that that contains the value you want to change. You can use the icon to select the cell. This cell must be referenced by the formula located in the cell which you specified in the Set cell field. Click OK. The  Goal Seek Status window will display the result. Click OK to replace the values in the the cells specified in the Set cell and By changing cell fields." + }, { "id": "UsageInstructions/GroupData.htm", "title": "Group data", @@ -2623,7 +2623,7 @@ var indexes = { "id": "UsageInstructions/InsertChart.htm", "title": "Insert charts", - "body": "Insert a chart To insert a chart in the Spreadsheet Editor, Select the cell range that contain the data you wish to use for the chart. Switch to the Insert tab of the top toolbar. Click the Chart icon on the top toolbar. Select the needed chart type from the available ones: Column Charts Clustered column Stacked column 100% stacked column 3-D Clustered Column 3-D Stacked Column 3-D 100% stacked column 3-D Column Line Charts Line Stacked line 100% stacked line Line with markers Stacked line with markers 100% stacked line with markers 3-D Line Pie Charts Pie Doughnut 3-D Pie Bar Charts Clustered bar Stacked bar 100% stacked bar 3-D clustered bar 3-D stacked bar 3-D 100% stacked bar Area Charts Area Stacked area 100% stacked area Stock Charts XY (Scatter) Charts Scatter Stacked bar Scatter with smooth lines and markers Scatter with smooth lines Scatter with straight lines and markers Scatter with straight lines Radar Charts Radar Radar with markers Filled radar Combo Charts Clustered column - line Clustered column - line on secondary axis Stacked area - clustered column Custom combination After that the chart will be added to the worksheet. Note: ONLYOFFICE Spreadsheet Editor supports the following types of charts that were created with third-party editors: Pyramid, Bar (Pyramid), Horizontal/Vertical Cylinders, Horizontal/Vertical Cones. You can open the file containing such a chart and modify it using the available chart editing tools. Adjust the chart settings Now you can change the settings of the inserted chart. To change the chart type, Select the chart with the mouse. Click the Chart settings icon on the right sidebar. Open the Style drop-down list below and select the style which suits you best. Open the Change type drop-down list and select the type you need. Click the Switch row/column option to change the positioning of chart rows and columns. The selected chart type and style will be changed. Additionally, 3D Rotation settings are available for 3D charts: X rotation - set the required value for the X axis rotation using the keyboard or via the Left and Right arrows to the right. Y rotation - set the required value for the Y axis rotation using the keyboard or via the Up and Down arrows to the right. Perspective - set the required value for depth rotation using the keyboard or via the Narrow field of view and Widen field of view arrows to the right. Right Angle Axis - is used to set the right angle axis view. Autoscale - check this box to autoscale the depth and height values of the chart, or uncheck this box to set the depth and height values manually. Depth (% of base) - set the required depth value using the keyboard or via the arrows. Height (% of base) - set the required height value using the keyboard or via the arrows. Default Rotation - set the 3D parameters to their default. Please note that you cannot edit each element of the chart; the settings will be applied to the chart as a whole. To edit chart data: Click the Select Data button on the right-side panel. Use the Chart data dialog to manage Chart data range, Legend entries (series), Horizontal (category) axis label and Switch row/column. Chart data range - select data for your chart. Click the icon on the right of the Chart data range box to select data range. Legend entries (series) - add, edit, or remove legend entries. Type or select series name for legend entries. In Legend entries (series), click Add button. In Edit series, type a new legend entry or click the icon on the right of the Series name box. Horizontal (category) axis labels - change text for category labels. In Horizontal (category) axis labels, click Edit. In Axis label range, type the labels you want to add or click the icon on the right of the Axis label range box to select data range. Switch row/column - rearrange the worksheet data that is configured in the chart not in the way that you want it. Switch rows to columns to display data on a different axis. Click OK button to apply the changes and close the window. Click Show advanced settings to change other settings such as Layout, Vertical axis, Secondary vertical axis, Horizontal axis, Secondary horizontal axis, Cell snapping and Alternative text. The Layout tab allows you to change the layout of chart elements. Specify the Chart title position in regard to your chart by selecting the necessary option from the drop-down list: None to display no chart title, Overlay to overlay and center the title in the plot area, No overlay to display the title above the plot area. Specify the Legend position in regard to your chart by selecting the necessary option from the drop-down list: None to display no legend, Bottom to display the legend and align it to the bottom of the plot area, Top to display the legend and align it to the top of the plot area, Right to display the legend and align it to the right of the plot area, Left to display the legend and align it to the left of the plot area, Left overlay to overlay and center the legend to the left in the plot area, Right overlay to overlay and center the legend to the right in the plot area. Specify the Data labels (i.e., text labels that represent exact values of data points) parameters: Specify the Data labels position relative to the data points by selecting the necessary option from the drop-down list. The available options vary depending on the selected chart type. For Column/Bar charts, you can choose the following options: None, Center, Inner bottom, Inner top, Outer top. For Line/XY (Scatter)/Stock charts, you can choose the following options: None, Center, Left, Right, Top, Bottom. For Pie charts, you can choose the following options: None, Center, Fit to width, Inner top, Outer top. For Area charts as well as for 3D Column, Line, Radar, and Bar charts, you can choose the following options: None, Center. Select the data you wish to include into your labels checking the corresponding boxes: Series name, Category name, Value, Enter a character (comma, semicolon, etc.) you wish to use for separating several labels into the Data labels separator entry field. Lines - is used to choose a line style for Line/XY (Scatter) charts. You can choose one of the following options: Straight to use straight lines between data points, Smooth to use smooth curves between data points, or None to not display lines. Markers - is used to specify whether the markers should be displayed (if the box is checked) or not (if the box is unchecked) for Line/XY (Scatter) charts. Note: the Lines and Markers options are available for Line charts and XY (Scatter) charts only. The Vertical axis tab allows you to change the parameters of the vertical axis also referred to as the values axis or y-axis which displays numeric values. Note that the vertical axis will be the category axis which displays text labels for the Bar charts, therefore in this case the Vertical axis tab options will correspond to the ones described in the next section. For the XY (Scatter) charts, both axes are value axes. Note: the Axis settings and Gridlines sections will be disabled for Pie charts since charts of this type have no axes and gridlines. Select Hide to hide vertical axis in the chart, leave it unchecked to have vertical axis displayed. Specify Title orientation by selecting the necessary option from the drop-down list: None to display no vertical axis title, Rotated to display the title from bottom to top to the left of the vertical axis, Horizontal to display the title horizontally to the left of the vertical axis. Minimum value - is used to specify the lowest value displayed at the vertical axis start. The Auto option is selected by default, in this case the minimum value is calculated automatically depending on the selected data range. You can select the Fixed option from the drop-down list and specify a different value in the entry field on the right. Maximum value - is used to specify the highest value displayed at the vertical axis end. The Auto option is selected by default, in this case the maximum value is calculated automatically depending on the selected data range. You can select the Fixed option from the drop-down list and specify a different value in the entry field on the right. Axis crosses - is used to specify a point on the vertical axis where the horizontal axis should cross it. The Auto option is selected by default, in this case the axes intersection point value is calculated automatically depending on the selected data range. You can select the Value option from the drop-down list and specify a different value in the entry field on the right, or set the axes intersection point at the Minimum/Maximum Value on the vertical axis. Display units - is used to determine the representation of the numeric values along the vertical axis. This option can be useful if you're working with great numbers and wish the values on the axis to be displayed in a more compact and readable way (e.g. you can represent 50 000 as 50 by using the Thousands display units). Select desired units from the drop-down list: Hundreds, Thousands, 10 000, 100 000, Millions, 10 000 000, 100 000 000, Billions, Trillions, or choose the None option to return to the default units. Values in reverse order - is used to display values in the opposite direction. When the box is unchecked, the lowest value is at the bottom and the highest value is at the top of the axis. When the box is checked, the values are ordered from top to bottom. Logarithmic scale - is used to enable logarithmic scaling to the Base that is determined by the user. The Tick Options section allows adjusting the appearance of tick marks on the vertical scale. Major tick marks are the larger scale divisions which can have labels displaying numeric values. Minor tick marks are the scale subdivisions which are placed between the major tick marks and have no labels. Tick marks also define where gridlines can be displayed if the corresponding option is set on the Layout tab. The Major/minor type drop-down lists contain the following placement options: None to display no major/minor tick marks, Cross to display major/minor tick marks on both sides of the axis, In to display major/minor tick marks inside the axis, Out to display major/minor tick marks outside the axis. The Label options section allows adjusting the appearance of major tick mark labels which display values. To specify a Label position in regard to the vertical axis, select the necessary option from the drop-down list: None to display no tick mark labels, Low to display tick mark labels to the left of the plot area, High to display tick mark labels to the right of the plot area, Next to axis to display tick mark labels next to the axis. To specify a Label format click the Label Format button and choose a category as it deems appropriate. Available label format categories: General Number Scientific Accounting Currency Date Time Percentage Fraction Text Custom Label format options vary depending on the selected category. For more information on changing number format, go to this page. Check Linked to source to keep number formatting from the data source in the chart. Note: Secondary axes are supported in Combo charts only. Secondary axes are useful in Combo charts when data series vary considerably or mixed types of data are used to plot a chart. Secondary Axes make it easier to read and understand a combo chart. The Secondary vertical/horizontal axis tab appears when you choose an appropriate data series for a combo chart. All the settings and options on the Secondary vertical/horizontal axis tab are the same as the settings on the Vertical/Horizontal Axis. For a detailed description of the Vertical/horizontal axis options, see description above/below. The Horizontal axis tab allows you to change the parameters of the horizontal axis also referred to as the categories axis or x-axis which displays text labels. Note that the horizontal axis will be the value axis which displays numeric values for the Bar charts, therefore in this case the Horizontal axis tab options will correspond to the ones described in the previous section. For the XY (Scatter) charts, both axes are value axes. Select Hide to hide horizontal axis in the chart, leave it unchecked to have horizontal axis displayed. Specify Title orientation by selecting the necessary option from the drop-down list: None when you don’t want to display a horizontal axis title, No overlay  to display the title below the horizontal axis, Gridlines is used to specify the Horizontal gridlines to display by selecting the necessary option from the drop-down list: None,  Major, Minor, or Major and minor. Axis crosses - is used to specify a point on the horizontal axis where the vertical axis should cross it. The Auto option is selected by default, in this case the axes intersection point value is calculated automatically depending on the selected data range. You can select the Value option from the drop-down list and specify a different value in the entry field on the right, or set the axes intersection point at the Minimum/maximum value (that corresponds to the first and last category) on the horizontal axis. Axis position - is used to specify where the axis text labels should be placed: On tick marks or Between tick marks. Values in reverse order - is used to display categories in the opposite direction. When the box is unchecked, categories are displayed from left to right. When the box is checked, the categories are ordered from right to left. The Tick Options section allows adjusting the appearance of tick marks on the horizontal scale. Major tick marks are the larger divisions which can have labels displaying category values. Minor tick marks are the smaller divisions which are placed between the major tick marks and have no labels. Tick marks also define where gridlines can be displayed if the corresponding option is set on the Layout tab. You can adjust the following tick mark parameters: Major/minor type - is used to specify the following placement options: None to display no major/minor tick marks, Cross to display major/minor tick marks on both sides of the axis, In to display major/minor tick marks inside the axis, Out to display major/minor tick marks outside the axis. Interval between marks - is used to specify how many categories should be displayed between two adjacent tick marks. The Label options section allows adjusting the appearance of labels which display categories. Label position - is used to specify where the labels should be placed in regard to the horizontal axis. Select the necessary option from the drop-down list: None to display no category labels, Low to display category labels at the bottom of the plot area, High to display category labels at the top of the plot area, Next to axis to display category labels next to the axis. Axis label distance - is used to specify how closely the labels should be placed to the axis. You can specify the necessary value in the entry field. The more the value you set, the more the distance between the axis and labels is. Interval between labels - is used to specify how often the labels should be displayed. The Auto option is selected by default, in this case labels are displayed for every category. You can select the Manual option from the drop-down list and specify the necessary value in the entry field on the right. For example, enter 2 to display labels for every other category etc. To specify a Label format click the Label Format button and choose a category as it deems appropriate. Available label format categories: General Number Scientific Accounting Currency Date Time Percentage Fraction Text Custom Label format options vary depending on the selected category. For more information on changing number format, go to this page. Check Linked to source to keep number formatting from the data source in the chart. The Cell snapping tab contains the following parameters: Move and size with cells - this option allows you to snap the chart to the cell behind it. If the cell moves (e.g. if you insert or delete some rows/columns), the chart will be moved together with the cell. If you increase or decrease the width or height of the cell, the chart will change its size as well. Move but don't size with cells - this option allows to snap the chart to the cell behind it preventing the chart from being resized. If the cell moves, the chart will be moved together with the cell, but if you change the cell size, the chart dimensions remain unchanged. Don't move or size with cells - this option allows to prevent the chart from being moved or resized if the cell position or size was changed. The Alternative text tab allows to specify the Title and the Description which will be read to people with vision or cognitive impairments to help them better understand what information the chart contains. Edit chart elements To edit the chart Title, select the default text with the mouse and type in your own one instead. To change the font formatting within text elements, such as the chart title, axes titles, legend entries, data labels etc., select the necessary text element by left-clicking it. Then use icons on the Home tab of the top toolbar to change the font type, style, size, or color. When the chart is selected, the Shape settings icon is also available on the right, since the shape is used as a background for the chart. You can click this icon to open the Shape settings tab on the right sidebar and adjust the shape Fill and Line. Note that you cannot change the shape type. Using the Shape settings tab on the right panel you can not only adjust the chart area itself, but also change the chart elements, such as the plot area, data series, chart title, legend, etc. and apply different fill types to them. Select the chart element by clicking it with the left mouse button and choose the preferred fill type: solid color, gradient, texture or picture, pattern. Specify the fill parameters and set the Opacity level if necessary. When you select a vertical or horizontal axis or gridlines, the stroke settings are only available on the Shape Settings tab: color, width, type, and opacity. For more details on how to work with shape colors, fills and stroke, please refer to this page. Note: the Show shadow option is also available on the Shape settings tab, but it is disabled for chart elements. If you need to resize chart elements, left-click to select the needed element and drag one of 8 white squares located along the perimeter of the element. To change the position of the element, left-click on it, make sure your cursor changed to , hold the left mouse button and drag the element to the needed position. To delete a chart element, select it by left-clicking and press the Delete key on the keyboard. You can also rotate 3D charts using the mouse. Left-click within the plot area and hold the mouse button. Drag the cursor without releasing the mouse button to change the 3D chart orientation. If necessary, you can change the chart size and position. To delete the inserted chart, click it and press the Delete key. Assign a Macro to a Chart You can provide a quick and easy access to a macro within a spreadsheet by assigning a macro to any chart. Once you assign a macro, the chart appears as a button control and you can run the macro whenever you click it. To assign a macro: Right-click the chart to assign a macro to and choose the Assign Macro option from the drop-down menu. The Assign Macro dialogue will open Choose a macro from the list, or type in the macro name, and click OK to confirm. Once a macro is assigned, you can still select the chart to perform other operations by left-clicking on chart surface. Using sparklines ONLYOFFICE Spreadsheet Editor supports Sparklines. Sparklines are small charts that fit into a cell, and are an efficient data visualization tool. For more information about how to create, edit and format sparklines, please see our Insert Sparklines guidelines." + "body": "Insert a recommended chart The easiest way to insert a chart in the Spreadsheet Editor is to use the Recommended Chart tool which suggests using certain types of charts depending on the selected data as well as displays preview for all types of charts. Select the cell range that contain the data you wish to use for the chart. Switch to the Insert tab of the top toolbar. Click the Recommended Chart icon on the top toolbar. Switch between the recommended chart types to see how the chart will look like. You can also use tabs on the left to preview other chart types. When the chart type is selected, click OK. Insert and adjust a chart manually To insert a chart and manually adjust its parameters, Select the cell range that contain the data you wish to use for the chart. Switch to the Insert tab of the top toolbar. Click the Chart icon on the top toolbar. Select the needed chart type from the available ones: Column Charts Clustered column Stacked column 100% stacked column 3-D Clustered Column 3-D Stacked Column 3-D 100% stacked column 3-D Column Line Charts Line Stacked line 100% stacked line Line with markers Stacked line with markers 100% stacked line with markers 3-D Line Pie Charts Pie Doughnut 3-D Pie Bar Charts Clustered bar Stacked bar 100% stacked bar 3-D clustered bar 3-D stacked bar 3-D 100% stacked bar Area Charts Area Stacked area 100% stacked area Stock Charts XY (Scatter) Charts Scatter Stacked bar Scatter with smooth lines and markers Scatter with smooth lines Scatter with straight lines and markers Scatter with straight lines Radar Charts Radar Radar with markers Filled radar Combo Charts Clustered column - line Clustered column - line on secondary axis Stacked area - clustered column Custom combination After that the chart will be added to the worksheet. Note: ONLYOFFICE Spreadsheet Editor supports the following types of charts that were created with third-party editors: Pyramid, Bar (Pyramid), Horizontal/Vertical Cylinders, Horizontal/Vertical Cones. You can open the file containing such a chart and modify it using the available chart editing tools. Adjust the chart settings Now you can change the settings of the inserted chart. To change the chart type, Select the chart with the mouse. Click the Chart settings icon on the right sidebar. Open the Style drop-down list below and select the style which suits you best. Open the Change type drop-down list and select the type you need. Click the Switch row/column option to change the positioning of chart rows and columns. The selected chart type and style will be changed. Additionally, 3D Rotation settings are available for 3D charts: X rotation - set the required value for the X axis rotation using the keyboard or via the Left and Right arrows to the right. Y rotation - set the required value for the Y axis rotation using the keyboard or via the Up and Down arrows to the right. Perspective - set the required value for depth rotation using the keyboard or via the Narrow field of view and Widen field of view arrows to the right. Right Angle Axis - is used to set the right angle axis view. Autoscale - check this box to autoscale the depth and height values of the chart, or uncheck this box to set the depth and height values manually. Depth (% of base) - set the required depth value using the keyboard or via the arrows. Height (% of base) - set the required height value using the keyboard or via the arrows. Default Rotation - set the 3D parameters to their default. Please note that you cannot edit each element of the chart; the settings will be applied to the chart as a whole. To edit chart data: Click the Select Data button on the right-side panel. Use the Chart data dialog to manage Chart data range, Legend entries (series), Horizontal (category) axis label and Switch row/column. Chart data range - select data for your chart. Click the icon on the right of the Chart data range box to select data range. Legend entries (series) - add, edit, or remove legend entries. Type or select series name for legend entries. In Legend entries (series), click Add button. In Edit series, type a new legend entry or click the icon on the right of the Series name box. Horizontal (category) axis labels - change text for category labels. In Horizontal (category) axis labels, click Edit. In Axis label range, type the labels you want to add or click the icon on the right of the Axis label range box to select data range. Switch row/column - rearrange the worksheet data that is configured in the chart not in the way that you want it. Switch rows to columns to display data on a different axis. Click OK button to apply the changes and close the window. Click Show advanced settings to change other settings such as Layout, Vertical axis, Secondary vertical axis, Horizontal axis, Secondary horizontal axis, Cell snapping and Alternative text. The Layout tab allows you to change the layout of chart elements. Specify the Chart title position in regard to your chart by selecting the necessary option from the drop-down list: None to display no chart title, Overlay to overlay and center the title in the plot area, No overlay to display the title above the plot area. Specify the Legend position in regard to your chart by selecting the necessary option from the drop-down list: None to display no legend, Bottom to display the legend and align it to the bottom of the plot area, Top to display the legend and align it to the top of the plot area, Right to display the legend and align it to the right of the plot area, Left to display the legend and align it to the left of the plot area, Left overlay to overlay and center the legend to the left in the plot area, Right overlay to overlay and center the legend to the right in the plot area. Specify the Data labels (i.e., text labels that represent exact values of data points) parameters: Specify the Data labels position relative to the data points by selecting the necessary option from the drop-down list. The available options vary depending on the selected chart type. For Column/Bar charts, you can choose the following options: None, Center, Inner bottom, Inner top, Outer top. For Line/XY (Scatter)/Stock charts, you can choose the following options: None, Center, Left, Right, Top, Bottom. For Pie charts, you can choose the following options: None, Center, Fit to width, Inner top, Outer top. For Area charts as well as for 3D Column, Line, Radar, and Bar charts, you can choose the following options: None, Center. Select the data you wish to include into your labels checking the corresponding boxes: Series name, Category name, Value, Enter a character (comma, semicolon, etc.) you wish to use for separating several labels into the Data labels separator entry field. Lines - is used to choose a line style for Line/XY (Scatter) charts. You can choose one of the following options: Straight to use straight lines between data points, Smooth to use smooth curves between data points, or None to not display lines. Markers - is used to specify whether the markers should be displayed (if the box is checked) or not (if the box is unchecked) for Line/XY (Scatter) charts. Note: the Lines and Markers options are available for Line charts and XY (Scatter) charts only. The Vertical axis tab allows you to change the parameters of the vertical axis also referred to as the values axis or y-axis which displays numeric values. Note that the vertical axis will be the category axis which displays text labels for the Bar charts, therefore in this case the Vertical axis tab options will correspond to the ones described in the next section. For the XY (Scatter) charts, both axes are value axes. Note: the Axis settings and Gridlines sections will be disabled for Pie charts since charts of this type have no axes and gridlines. Select Hide to hide vertical axis in the chart, leave it unchecked to have vertical axis displayed. Specify Title orientation by selecting the necessary option from the drop-down list: None to display no vertical axis title, Rotated to display the title from bottom to top to the left of the vertical axis, Horizontal to display the title horizontally to the left of the vertical axis. Minimum value - is used to specify the lowest value displayed at the vertical axis start. The Auto option is selected by default, in this case the minimum value is calculated automatically depending on the selected data range. You can select the Fixed option from the drop-down list and specify a different value in the entry field on the right. Maximum value - is used to specify the highest value displayed at the vertical axis end. The Auto option is selected by default, in this case the maximum value is calculated automatically depending on the selected data range. You can select the Fixed option from the drop-down list and specify a different value in the entry field on the right. Axis crosses - is used to specify a point on the vertical axis where the horizontal axis should cross it. The Auto option is selected by default, in this case the axes intersection point value is calculated automatically depending on the selected data range. You can select the Value option from the drop-down list and specify a different value in the entry field on the right, or set the axes intersection point at the Minimum/Maximum Value on the vertical axis. Display units - is used to determine the representation of the numeric values along the vertical axis. This option can be useful if you're working with great numbers and wish the values on the axis to be displayed in a more compact and readable way (e.g. you can represent 50 000 as 50 by using the Thousands display units). Select desired units from the drop-down list: Hundreds, Thousands, 10 000, 100 000, Millions, 10 000 000, 100 000 000, Billions, Trillions, or choose the None option to return to the default units. Values in reverse order - is used to display values in the opposite direction. When the box is unchecked, the lowest value is at the bottom and the highest value is at the top of the axis. When the box is checked, the values are ordered from top to bottom. Logarithmic scale - is used to enable logarithmic scaling to the Base that is determined by the user. The Tick Options section allows adjusting the appearance of tick marks on the vertical scale. Major tick marks are the larger scale divisions which can have labels displaying numeric values. Minor tick marks are the scale subdivisions which are placed between the major tick marks and have no labels. Tick marks also define where gridlines can be displayed if the corresponding option is set on the Layout tab. The Major/minor type drop-down lists contain the following placement options: None to display no major/minor tick marks, Cross to display major/minor tick marks on both sides of the axis, In to display major/minor tick marks inside the axis, Out to display major/minor tick marks outside the axis. The Label options section allows adjusting the appearance of major tick mark labels which display values. To specify a Label position in regard to the vertical axis, select the necessary option from the drop-down list: None to display no tick mark labels, Low to display tick mark labels to the left of the plot area, High to display tick mark labels to the right of the plot area, Next to axis to display tick mark labels next to the axis. To specify a Label format click the Label Format button and choose a category as it deems appropriate. Available label format categories: General Number Scientific Accounting Currency Date Time Percentage Fraction Text Custom Label format options vary depending on the selected category. For more information on changing number format, go to this page. Check Linked to source to keep number formatting from the data source in the chart. Note: Secondary axes are supported in Combo charts only. Secondary axes are useful in Combo charts when data series vary considerably or mixed types of data are used to plot a chart. Secondary Axes make it easier to read and understand a combo chart. The Secondary vertical/horizontal axis tab appears when you choose an appropriate data series for a combo chart. All the settings and options on the Secondary vertical/horizontal axis tab are the same as the settings on the Vertical/Horizontal Axis. For a detailed description of the Vertical/horizontal axis options, see description above/below. The Horizontal axis tab allows you to change the parameters of the horizontal axis also referred to as the categories axis or x-axis which displays text labels. Note that the horizontal axis will be the value axis which displays numeric values for the Bar charts, therefore in this case the Horizontal axis tab options will correspond to the ones described in the previous section. For the XY (Scatter) charts, both axes are value axes. Select Hide to hide horizontal axis in the chart, leave it unchecked to have horizontal axis displayed. Specify Title orientation by selecting the necessary option from the drop-down list: None when you don’t want to display a horizontal axis title, No overlay  to display the title below the horizontal axis, Gridlines is used to specify the Horizontal gridlines to display by selecting the necessary option from the drop-down list: None,  Major, Minor, or Major and minor. Axis crosses - is used to specify a point on the horizontal axis where the vertical axis should cross it. The Auto option is selected by default, in this case the axes intersection point value is calculated automatically depending on the selected data range. You can select the Value option from the drop-down list and specify a different value in the entry field on the right, or set the axes intersection point at the Minimum/maximum value (that corresponds to the first and last category) on the horizontal axis. Axis position - is used to specify where the axis text labels should be placed: On tick marks or Between tick marks. Values in reverse order - is used to display categories in the opposite direction. When the box is unchecked, categories are displayed from left to right. When the box is checked, the categories are ordered from right to left. The Tick Options section allows adjusting the appearance of tick marks on the horizontal scale. Major tick marks are the larger divisions which can have labels displaying category values. Minor tick marks are the smaller divisions which are placed between the major tick marks and have no labels. Tick marks also define where gridlines can be displayed if the corresponding option is set on the Layout tab. You can adjust the following tick mark parameters: Major/minor type - is used to specify the following placement options: None to display no major/minor tick marks, Cross to display major/minor tick marks on both sides of the axis, In to display major/minor tick marks inside the axis, Out to display major/minor tick marks outside the axis. Interval between marks - is used to specify how many categories should be displayed between two adjacent tick marks. The Label options section allows adjusting the appearance of labels which display categories. Label position - is used to specify where the labels should be placed in regard to the horizontal axis. Select the necessary option from the drop-down list: None to display no category labels, Low to display category labels at the bottom of the plot area, High to display category labels at the top of the plot area, Next to axis to display category labels next to the axis. Axis label distance - is used to specify how closely the labels should be placed to the axis. You can specify the necessary value in the entry field. The more the value you set, the more the distance between the axis and labels is. Interval between labels - is used to specify how often the labels should be displayed. The Auto option is selected by default, in this case labels are displayed for every category. You can select the Manual option from the drop-down list and specify the necessary value in the entry field on the right. For example, enter 2 to display labels for every other category etc. To specify a Label format click the Label Format button and choose a category as it deems appropriate. Available label format categories: General Number Scientific Accounting Currency Date Time Percentage Fraction Text Custom Label format options vary depending on the selected category. For more information on changing number format, go to this page. Check Linked to source to keep number formatting from the data source in the chart. The Cell snapping tab contains the following parameters: Move and size with cells - this option allows you to snap the chart to the cell behind it. If the cell moves (e.g. if you insert or delete some rows/columns), the chart will be moved together with the cell. If you increase or decrease the width or height of the cell, the chart will change its size as well. Move but don't size with cells - this option allows to snap the chart to the cell behind it preventing the chart from being resized. If the cell moves, the chart will be moved together with the cell, but if you change the cell size, the chart dimensions remain unchanged. Don't move or size with cells - this option allows to prevent the chart from being moved or resized if the cell position or size was changed. The Alternative text tab allows to specify the Title and the Description which will be read to people with vision or cognitive impairments to help them better understand what information the chart contains. Edit chart elements To edit the chart Title, select the default text with the mouse and type in your own one instead. To change the font formatting within text elements, such as the chart title, axes titles, legend entries, data labels etc., select the necessary text element by left-clicking it. Then use icons on the Home tab of the top toolbar to change the font type, style, size, or color. When the chart is selected, the Shape settings icon is also available on the right, since the shape is used as a background for the chart. You can click this icon to open the Shape settings tab on the right sidebar and adjust the shape Fill and Line. Note that you cannot change the shape type. Using the Shape settings tab on the right panel you can not only adjust the chart area itself, but also change the chart elements, such as the plot area, data series, chart title, legend, etc. and apply different fill types to them. Select the chart element by clicking it with the left mouse button and choose the preferred fill type: solid color, gradient, texture or picture, pattern. Specify the fill parameters and set the Opacity level if necessary. When you select a vertical or horizontal axis or gridlines, the stroke settings are only available on the Shape Settings tab: color, width, type, and opacity. For more details on how to work with shape colors, fills and stroke, please refer to this page. Note: the Show shadow option is also available on the Shape settings tab, but it is disabled for chart elements. If you need to resize chart elements, left-click to select the needed element and drag one of 8 white squares located along the perimeter of the element. To change the position of the element, left-click on it, make sure your cursor changed to , hold the left mouse button and drag the element to the needed position. To delete a chart element, select it by left-clicking and press the Delete key on the keyboard. You can also rotate 3D charts using the mouse. Left-click within the plot area and hold the mouse button. Drag the cursor without releasing the mouse button to change the 3D chart orientation. If necessary, you can change the chart size and position. To delete the inserted chart, click it and press the Delete key. Assign a Macro to a Chart You can provide a quick and easy access to a macro within a spreadsheet by assigning a macro to any chart. Once you assign a macro, the chart appears as a button control and you can run the macro whenever you click it. To assign a macro: Right-click the chart to assign a macro to and choose the Assign Macro option from the drop-down menu. The Assign Macro dialogue will open Choose a macro from the list, or type in the macro name, and click OK to confirm. Once a macro is assigned, you can still select the chart to perform other operations by left-clicking on chart surface. Using sparklines ONLYOFFICE Spreadsheet Editor supports Sparklines. Sparklines are small charts that fit into a cell, and are an efficient data visualization tool. For more information about how to create, edit and format sparklines, please see our Insert Sparklines guidelines." }, { "id": "UsageInstructions/InsertDeleteCells.htm", @@ -2638,7 +2638,7 @@ var indexes = { "id": "UsageInstructions/InsertFunction.htm", "title": "Insert functions", - "body": "The ability to perform basic calculations is the principal reason for using the Spreadsheet Editor. Some of them are performed automatically when you select a cell range in your spreadsheet: Average is used to analyze the selected cell range and find the average value. Count is used to count the number of the selected cells with values ignoring the empty cells. Min is used to analyze the range of data and find the smallest number. Max is used to analyze the range of data and find the largest number. Sum is used to add all the numbers in the selected range ignoring the empty cells or those contaning text. The results of these calculations are displayed in the right lower corner on the status bar. You can manage the status bar by right-clicking on it and choosing only those functions to display that you need. To perform any other calculations, you can insert the required formula manually using the common mathematical operators or insert a predefined formula - Function. The abilities to work with Functions are accessible from both the Home and Formula tab or by pressing Shift+F3 key combination. On the Home tab, you can use the Insert function button to add one of the most commonly used functions (SUM, AVERAGE, MIN, MAX, COUNT) or open the Insert Function window that contains all the available functions classified by category. Use the search box to find the exact function by its name. On the Formula tab you can use the following buttons: Function - to open the Insert Function window that contains all the available functions classified by category. Autosum - to quickly access the SUM, MIN, MAX, COUNT functions. When you select a functions from this group, it automatically performs calculations for all cells in the column above the selected cell so that you don't need to enter arguments. Recently used - to quickly access 10 recently used functions. Financial, Logical, Text and data, Date and time, Lookup and references, Math and trigonometry - to quickly access functions that belongs to the corresponding categories. More functions - to access the functions from the following groups: Database, Engineering, Information and Statistical. Named ranges - to open the Name Manager, or define a new name, or paste a name as a function argument. For more details, you can refer to this page. Trace Precedents - to show arrows that indicate which cells affect the value of the selected cell. Trace Dependents - to show arrows that indicate which cells are affected by the value of the selected cell. Remove Arrows - to remove the arrows used for precedents and dependents. Click the arrow next to the Remove Arrows option to choose whether to remove all arrows, precedent arrows, or dependent arrows. Show Formulas - to show the formulas used in the cells instead of the final results of the formulas. Watch Window - to display changes in the cells that are not currently in the visible area of the worksheet. To learn more about the Watch Window, please read the following article. Calculation - to force the program to recalculate functions. To insert a function, Select a cell where you wish to insert a function. Proceed in one of the following ways: switch to the Formula tab and use the buttons available on the top toolbar to access a function from a specific group, then click the necessary function to open the Function Arguments wizard. You can also use the Additional option from the menu or click the Function button on the top toolbar to open the Insert Function window. switch to the Home tab, click the Insert function icon, select one of the commonly used functions (SUM, AVERAGE, MIN, MAX, COUNT) or click the Additional option to open the Insert Function window. right-click within the selected cell and select the Insert Function option from the contextual menu. click the icon before the formula bar. In the opened Insert Function window, enter its name in the search box or select the necessary function group, then choose the required function from the list and click OK. Once you click the necessary function, the Function Arguments window will open: In the opened Function Arguments window, enter the necessary values of each argument. You can enter the function arguments either manually or by clicking the icon and selecting a cell or cell range to be included as an argument. Note: generally, numeric values, logical values (TRUE, FALSE), text values (must be quoted), cell references, cell range references, names assigned to ranges and other functions can be used as function arguments. The function result will be displayed below. When all the agruments are specified, click the OK button in the Function Arguments window. To enter a function manually using the keyboard, Select a cell. Enter the equal sign (=). Each formula must begin with the equal sign (=). Enter the function name. Once you type the initial letters, the Formula Autocomplete list will be displayed. As you type, the items (formulas and names) that match the entered characters are displayed in it. If you hover the mouse pointer over a formula, a tooltip with the formula description will be displayed. You can select the necessary formula from the list and insert it by clicking it or pressing the Tab key. Enter the function arguments either manually or by dragging to select a cell range to be included as an argument. If the function requires several arguments, they must be separated by commas. Arguments must be enclosed into parentheses. The opening parenthesis '(' is added automatically if you select a function from the list. When you enter arguments, a tooltip that contains the formula syntax is also displayed. When all the agruments are specified, enter the closing parenthesis ')' and press Enter. If you enter new data or change the values used as arguments, recalculation of functions is performed automatically by default. You can force the program to recalculate functions by using the Calculation button on the Formula tab. Click the Calculation button to recalculate the entire workbook, or click the arrow below the button and choose the necessary option from the menu: Calculate workbook or Calculate current sheet. You can also use the following key combinations: F9 to recalculate the workbook, Shift +F9 to recalculate the current worksheet. Here is the list of the available functions grouped by categories: Function Category Description Functions Text and Data Functions Used to correctly display the text data in the spreadsheet. ARRAYTOTEXT; ASC; CHAR; CLEAN; CODE; CONCATENATE; CONCAT; DOLLAR; EXACT; FIND; FINDB; FIXED; LEFT; LEFTB; LEN; LENB; LOWER; MID; MIDB; NUMBERVALUE; PROPER; REPLACE; REPLACEB; REPT; RIGHT; RIGHTB; SEARCH; SEARCHB; SUBSTITUTE; T; TEXT; TEXTJOIN; TRIM; UNICHAR; UNICODE; UPPER; VALUE; TEXTBEFORE; TEXTAFTER; TEXTSPLIT Statistical Functions Used to analyze data: finding the average value, the largest or smallest values in a cell range. AVEDEV; AVERAGE; AVERAGEA; AVERAGEIF; AVERAGEIFS; BETADIST; BETA.DIST; BETA.INV; BETAINV; BINOMDIST; BINOM.DIST; BINOM.DIST.RANGE; BINOM.INV; CHIDIST; CHIINV; CHISQ.DIST; CHISQ.DIST.RT; CHISQ.INV; CHISQ.INV.RT; CHITEST; CHISQ.TEST; CONFIDENCE; CONFIDENCE.NORM; CONFIDENCE.T; CORREL; COUNT; COUNTA; COUNBLANK; COUNTIF; COUNTIFS; COVAR; COVARIANCE.P; COVARIANCE.S; CRITBINOM; DEVSQ; EXPON.DIST; EXPONDIST; F.DIST; FDIST; F.DIST.RT; F.INV; FINV; F.INV.RT; FISHER; FISHERINV; FORECAST; FORECAST.ETS; FORECAST.ETS.CONFINT; FORECAST.ETS.SEASONALITY; FORECAST.ETS.STAT; FORECAST.LINEAR; FREQUENCY; FTEST; F.TEST; GAMMA; GAMMA.DIST; GAMMADIST; GAMMA.INV; GAMMAINV; GAMMALN; GAMMALN.PRECISE; GAUSS; GEOMEAN; GROWTH; HARMEAN; HYPGEOMDIST; HYPGEOM.DIST; INTERCEPT; KURT; LARGE; LINEST; LOGEST, LOGINV; LOGNORM.DIST; LOGNORM.INV; LOGNORMDIST; MAX; MAXA; MAXIFS; MEDIAN; MIN; MINA; MINIFS; MODE; MODE.MULT; MODE.SNGL; NEGBINOMDIST; NEGBINOM.DIST; NORMDIST; NORM.DIST; NORMINV; NORM.INV; NORMSDIST; NORM.S.DIST; NORMSINV; NORM.S.INV; PEARSON; PERCENTILE; PERCENTILE.EXC; PERCENTILE.INC; PERCENTRANK; PERCENTRANK.EXC; PERCENTRANK.INC; PERMUT; PERMUTATIONA; PHI; POISSON; POISSON.DIST; PROB; QUARTILE; QUARTILE.EXC; QUARTILE.INC; RANK; RANK.AVG; RANK.EQ; RSQ; SKEW; SKEW.P; SLOPE; SMALL; STANDARDIZE; STDEV; STDEV.S; STDEVA; STDEVP; STDEV.P; STDEVPA; STEYX; TDIST; T.DIST; T.DIST.2T; T.DIST.RT; T.INV; T.INV.2T; TINV; TREND, TRIMMEAN; TTEST; T.TEST; VAR; VARA; VARP; VAR.P; VAR.S; VARPA; WEIBULL; WEIBULL.DIST; ZTEST; Z.TEST Math and Trigonometry Functions Used to perform basic math and trigonometry operations such as adding, multiplying, dividing, rounding, etc. ABS; ACOS; ACOSH; ACOT; ACOTH; AGGREGATE; ARABIC; ASIN; ASINH; ATAN; ATAN2; ATANH; BASE; CEILING; CEILING.MATH; CEILING.PRECISE; COMBIN; COMBINA; COS; COSH; COT; COTH; CSC; CSCH; DECIMAL; DEGREES; ECMA.CEILING; EVEN; EXP; FACT; FACTDOUBLE; FLOOR; FLOOR.PRECISE; FLOOR.MATH; GCD; INT; ISO.CEILING; LCM; LN; LOG; LOG10; MDETERM; MINVERSE; MMULT; MOD; MROUND; MULTINOMIAL; MUNIT; ODD; PI; POWER; PRODUCT; QUOTIENT; RADIANS; RAND; RANDARRAY; RANDBETWEEN; ROMAN; ROUND; ROUNDDOWN; ROUNDUP; SEC; SECH; SERIESSUM; SEQUENCE; SIGN; SIN; SINH; SQRT; SQRTPI; SUBTOTAL; SUM; SUMIF; SUMIFS; SUMPRODUCT; SUMSQ; SUMX2MY2; SUMX2PY2; SUMXMY2; TAN; TANH; TRUNC Date and Time Functions Used to correctly display the date and time in the spreadsheet. DATE; DATEDIF; DATEVALUE; DAY; DAYS; DAYS360; EDATE; EOMONTH; HOUR; ISOWEEKNUM; MINUTE; MONTH; NETWORKDAYS; NETWORKDAYS.INTL; NOW; SECOND; TIME; TIMEVALUE; TODAY; WEEKDAY; WEEKNUM; WORKDAY; WORKDAY.INTL; YEAR; YEARFRAC Engineering Functions Used to perform some engineering calculations: converting between different bases number systems, finding complex numbers etc. BESSELI; BESSELJ; BESSELK; BESSELY; BIN2DEC; BIN2HEX; BIN2OCT; BITAND; BITLSHIFT; BITOR; BITRSHIFT; BITXOR; COMPLEX; CONVERT; DEC2BIN; DEC2HEX; DEC2OCT; DELTA; ERF; ERF.PRECISE; ERFC; ERFC.PRECISE; GESTEP; HEX2BIN; HEX2DEC; HEX2OCT; IMABS; IMAGINARY; IMARGUMENT; IMCONJUGATE; IMCOS; IMCOSH; IMCOT; IMCSC; IMCSCH; IMDIV; IMEXP; IMLN; IMLOG10; IMLOG2; IMPOWER; IMPRODUCT; IMREAL; IMSEC; IMSECH; IMSIN; IMSINH; IMSQRT; IMSUB; IMSUM; IMTAN; OCT2BIN; OCT2DEC; OCT2HEX Database Functions Used to perform calculations for the values in a certain field of the database that meet the specified criteria. DAVERAGE; DCOUNT; DCOUNTA; DGET; DMAX; DMIN; DPRODUCT; DSTDEV; DSTDEVP; DSUM; DVAR; DVARP Financial Functions Used to perform some financial calculations: calculating the net present value, payments etc. ACCRINT; ACCRINTM; AMORDEGRC; AMORLINC; COUPDAYBS; COUPDAYS; COUPDAYSNC; COUPNCD; COUPNUM; COUPPCD; CUMIPMT; CUMPRINC; DB; DDB; DISC; DOLLARDE; DOLLARFR; DURATION; EFFECT; FV; FVSCHEDULE; INTRATE; IPMT; IRR; ISPMT; MDURATION; MIRR; NOMINAL; NPER; NPV; ODDFPRICE; ODDFYIELD; ODDLPRICE; ODDLYIELD; PDURATION; PMT; PPMT; PRICE; PRICEDISC; PRICEMAT; PV; RATE; RECEIVED; RRI; SLN; SYD; TBILLEQ; TBILLPRICE; TBILLYIELD; VDB; XIRR; XNPV; YIELD; YIELDDISC; YIELDMAT Lookup and Reference Functions Used to easily find information from the data list. ADDRESS; CHOOSE; CHOOSECOLS; CHOOSEROWS; COLUMN; COLUMNS; DROP; EXPAND; FILTER; FORMULATEXT; HLOOKUP; HSTACK; HYPERLINK; INDEX; INDIRECT; LOOKUP; MATCH; OFFSET; ROW; ROWS; SORT; SORTBY; TAKE; TOCOL; TOROW; TRANSPOSE; UNIQUE; VLOOKUP; VSTACK; WRAPCOLS; WRAPROWS; XLOOKUP; XMATCH Information Functions Used to provide information about the data in the selected cell or cell range. CELL; ERROR.TYPE; ISBLANK; ISERR; ISERROR; ISEVEN; ISFORMULA; ISLOGICAL; ISNA; ISNONTEXT; ISNUMBER; ISODD; ISREF; ISTEXT; N; NA; SHEET; SHEETS; TYPE Logical Functions Used to check if a condition is true or false. AND; FALSE; IF; IFERROR; IFNA; IFS; NOT; OR; SWITCH; TRUE; XOR" + "body": "The ability to perform basic calculations is the principal reason for using the Spreadsheet Editor. Some of them are performed automatically when you select a cell range in your spreadsheet: Average is used to analyze the selected cell range and find the average value. Count is used to count the number of the selected cells with values ignoring the empty cells. Min is used to analyze the range of data and find the smallest number. Max is used to analyze the range of data and find the largest number. Sum is used to add all the numbers in the selected range ignoring the empty cells or those contaning text. The results of these calculations are displayed in the right lower corner on the status bar. You can manage the status bar by right-clicking on it and choosing only those functions to display that you need. To perform any other calculations, you can insert the required formula manually using the common mathematical operators or insert a predefined formula - Function. The abilities to work with Functions are accessible from both the Home and Formula tab or by pressing Shift+F3 key combination. On the Home tab, you can use the Insert function button to add one of the most commonly used functions (SUM, AVERAGE, MIN, MAX, COUNT) or open the Insert Function window that contains all the available functions classified by category. Use the search box to find the exact function by its name. On the Formula tab you can use the following buttons: Function - to open the Insert Function window that contains all the available functions classified by category. Autosum - to quickly access the SUM, MIN, MAX, COUNT functions. When you select a functions from this group, it automatically performs calculations for all cells in the column above the selected cell so that you don't need to enter arguments. Recently used - to quickly access 10 recently used functions. Financial, Logical, Text and data, Date and time, Lookup and references, Math and trigonometry - to quickly access functions that belongs to the corresponding categories. More functions - to access the functions from the following groups: Database, Engineering, Information and Statistical. Named ranges - to open the Name Manager, or define a new name, or paste a name as a function argument. For more details, you can refer to this page. Trace Precedents - to show arrows that indicate which cells affect the value of the selected cell. Trace Dependents - to show arrows that indicate which cells are affected by the value of the selected cell. Remove Arrows - to remove the arrows used for precedents and dependents. Click the arrow next to the Remove Arrows option to choose whether to remove all arrows, precedent arrows, or dependent arrows. Show Formulas - to show the formulas used in the cells instead of the final results of the formulas. Watch Window - to display changes in the cells that are not currently in the visible area of the worksheet. To learn more about the Watch Window, please read the following article. Calculation - to force the program to recalculate functions. How to apply functions To insert a function, Select a cell where you wish to insert a function. Proceed in one of the following ways: switch to the Formula tab and use the buttons available on the top toolbar to access a function from a specific group, then click the necessary function to open the Function Arguments wizard. You can also use the Additional option from the menu or click the Function button on the top toolbar to open the Insert Function window. switch to the Home tab, click the Insert function icon, select one of the commonly used functions (SUM, AVERAGE, MIN, MAX, COUNT) or click the Additional option to open the Insert Function window. right-click within the selected cell and select the Insert Function option from the contextual menu. click the icon before the formula bar. In the opened Insert Function window, enter its name in the search box or select the necessary function group, then choose the required function from the list and click OK. Once you click the necessary function, the Function Arguments window will open: In the opened Function Arguments window, enter the necessary values of each argument. You can enter the function arguments either manually or by clicking the icon and selecting a cell or cell range to be included as an argument. Note: generally, numeric values, logical values (TRUE, FALSE), text values (must be quoted), cell references, cell range references, names assigned to ranges and other functions can be used as function arguments. The function result will be displayed below. When all the agruments are specified, click the OK button in the Function Arguments window. To enter a function manually using the keyboard, Select a cell. Enter the equal sign (=). Each formula must begin with the equal sign (=). Enter the function name. Once you type the initial letters, the Formula Autocomplete list will be displayed. As you type, the items (formulas and names) that match the entered characters are displayed in it. If you hover the mouse pointer over a formula, a tooltip with the formula description will be displayed. You can select the necessary formula from the list and insert it by clicking it or pressing the Tab key. Enter the function arguments either manually or by dragging to select a cell range to be included as an argument. If the function requires several arguments, they must be separated by commas. Arguments must be enclosed into parentheses. The opening parenthesis '(' is added automatically if you select a function from the list. When you enter arguments, a tooltip that contains the formula syntax is also displayed. When all the agruments are specified, enter the closing parenthesis ')' and press Enter. If you enter new data or change the values used as arguments, recalculation of functions is performed automatically by default. You can force the program to recalculate functions by using the Calculation button on the Formula tab. Click the Calculation button to recalculate the entire workbook, or click the arrow below the button and choose the necessary option from the menu: Calculate workbook or Calculate current sheet. You can also use the following key combinations: F9 to recalculate the workbook, Shift +F9 to recalculate the current worksheet. Here is the list of the available functions grouped by categories: Function Category Description Functions Text and Data Functions Used to correctly display the text data in the spreadsheet. ARRAYTOTEXT; ASC; CHAR; CLEAN; CODE; CONCATENATE; CONCAT; DOLLAR; EXACT; FIND; FINDB; FIXED; LEFT; LEFTB; LEN; LENB; LOWER; MID; MIDB; NUMBERVALUE; PROPER; REPLACE; REPLACEB; REPT; RIGHT; RIGHTB; SEARCH; SEARCHB; SUBSTITUTE; T; TEXT; TEXTJOIN; TRIM; UNICHAR; UNICODE; UPPER; VALUE; TEXTBEFORE; TEXTAFTER; TEXTSPLIT Statistical Functions Used to analyze data: finding the average value, the largest or smallest values in a cell range. AVEDEV; AVERAGE; AVERAGEA; AVERAGEIF; AVERAGEIFS; BETADIST; BETA.DIST; BETA.INV; BETAINV; BINOMDIST; BINOM.DIST; BINOM.DIST.RANGE; BINOM.INV; CHIDIST; CHIINV; CHISQ.DIST; CHISQ.DIST.RT; CHISQ.INV; CHISQ.INV.RT; CHITEST; CHISQ.TEST; CONFIDENCE; CONFIDENCE.NORM; CONFIDENCE.T; CORREL; COUNT; COUNTA; COUNBLANK; COUNTIF; COUNTIFS; COVAR; COVARIANCE.P; COVARIANCE.S; CRITBINOM; DEVSQ; EXPON.DIST; EXPONDIST; F.DIST; FDIST; F.DIST.RT; F.INV; FINV; F.INV.RT; FISHER; FISHERINV; FORECAST; FORECAST.ETS; FORECAST.ETS.CONFINT; FORECAST.ETS.SEASONALITY; FORECAST.ETS.STAT; FORECAST.LINEAR; FREQUENCY; FTEST; F.TEST; GAMMA; GAMMA.DIST; GAMMADIST; GAMMA.INV; GAMMAINV; GAMMALN; GAMMALN.PRECISE; GAUSS; GEOMEAN; GROWTH; HARMEAN; HYPGEOMDIST; HYPGEOM.DIST; INTERCEPT; KURT; LARGE; LINEST; LOGEST, LOGINV; LOGNORM.DIST; LOGNORM.INV; LOGNORMDIST; MAX; MAXA; MAXIFS; MEDIAN; MIN; MINA; MINIFS; MODE; MODE.MULT; MODE.SNGL; NEGBINOMDIST; NEGBINOM.DIST; NORMDIST; NORM.DIST; NORMINV; NORM.INV; NORMSDIST; NORM.S.DIST; NORMSINV; NORM.S.INV; PEARSON; PERCENTILE; PERCENTILE.EXC; PERCENTILE.INC; PERCENTRANK; PERCENTRANK.EXC; PERCENTRANK.INC; PERMUT; PERMUTATIONA; PHI; POISSON; POISSON.DIST; PROB; QUARTILE; QUARTILE.EXC; QUARTILE.INC; RANK; RANK.AVG; RANK.EQ; RSQ; SKEW; SKEW.P; SLOPE; SMALL; STANDARDIZE; STDEV; STDEV.S; STDEVA; STDEVP; STDEV.P; STDEVPA; STEYX; TDIST; T.DIST; T.DIST.2T; T.DIST.RT; T.INV; T.INV.2T; TINV; TREND, TRIMMEAN; TTEST; T.TEST; VAR; VARA; VARP; VAR.P; VAR.S; VARPA; WEIBULL; WEIBULL.DIST; ZTEST; Z.TEST Math and Trigonometry Functions Used to perform basic math and trigonometry operations such as adding, multiplying, dividing, rounding, etc. ABS; ACOS; ACOSH; ACOT; ACOTH; AGGREGATE; ARABIC; ASIN; ASINH; ATAN; ATAN2; ATANH; BASE; CEILING; CEILING.MATH; CEILING.PRECISE; COMBIN; COMBINA; COS; COSH; COT; COTH; CSC; CSCH; DECIMAL; DEGREES; ECMA.CEILING; EVEN; EXP; FACT; FACTDOUBLE; FLOOR; FLOOR.PRECISE; FLOOR.MATH; GCD; INT; ISO.CEILING; LCM; LN; LOG; LOG10; MDETERM; MINVERSE; MMULT; MOD; MROUND; MULTINOMIAL; MUNIT; ODD; PI; POWER; PRODUCT; QUOTIENT; RADIANS; RAND; RANDARRAY; RANDBETWEEN; ROMAN; ROUND; ROUNDDOWN; ROUNDUP; SEC; SECH; SERIESSUM; SEQUENCE; SIGN; SIN; SINH; SQRT; SQRTPI; SUBTOTAL; SUM; SUMIF; SUMIFS; SUMPRODUCT; SUMSQ; SUMX2MY2; SUMX2PY2; SUMXMY2; TAN; TANH; TRUNC Date and Time Functions Used to correctly display the date and time in the spreadsheet. DATE; DATEDIF; DATEVALUE; DAY; DAYS; DAYS360; EDATE; EOMONTH; HOUR; ISOWEEKNUM; MINUTE; MONTH; NETWORKDAYS; NETWORKDAYS.INTL; NOW; SECOND; TIME; TIMEVALUE; TODAY; WEEKDAY; WEEKNUM; WORKDAY; WORKDAY.INTL; YEAR; YEARFRAC Engineering Functions Used to perform some engineering calculations: converting between different bases number systems, finding complex numbers etc. BESSELI; BESSELJ; BESSELK; BESSELY; BIN2DEC; BIN2HEX; BIN2OCT; BITAND; BITLSHIFT; BITOR; BITRSHIFT; BITXOR; COMPLEX; CONVERT; DEC2BIN; DEC2HEX; DEC2OCT; DELTA; ERF; ERF.PRECISE; ERFC; ERFC.PRECISE; GESTEP; HEX2BIN; HEX2DEC; HEX2OCT; IMABS; IMAGINARY; IMARGUMENT; IMCONJUGATE; IMCOS; IMCOSH; IMCOT; IMCSC; IMCSCH; IMDIV; IMEXP; IMLN; IMLOG10; IMLOG2; IMPOWER; IMPRODUCT; IMREAL; IMSEC; IMSECH; IMSIN; IMSINH; IMSQRT; IMSUB; IMSUM; IMTAN; OCT2BIN; OCT2DEC; OCT2HEX Database Functions Used to perform calculations for the values in a certain field of the database that meet the specified criteria. DAVERAGE; DCOUNT; DCOUNTA; DGET; DMAX; DMIN; DPRODUCT; DSTDEV; DSTDEVP; DSUM; DVAR; DVARP Financial Functions Used to perform some financial calculations: calculating the net present value, payments etc. ACCRINT; ACCRINTM; AMORDEGRC; AMORLINC; COUPDAYBS; COUPDAYS; COUPDAYSNC; COUPNCD; COUPNUM; COUPPCD; CUMIPMT; CUMPRINC; DB; DDB; DISC; DOLLARDE; DOLLARFR; DURATION; EFFECT; FV; FVSCHEDULE; INTRATE; IPMT; IRR; ISPMT; MDURATION; MIRR; NOMINAL; NPER; NPV; ODDFPRICE; ODDFYIELD; ODDLPRICE; ODDLYIELD; PDURATION; PMT; PPMT; PRICE; PRICEDISC; PRICEMAT; PV; RATE; RECEIVED; RRI; SLN; SYD; TBILLEQ; TBILLPRICE; TBILLYIELD; VDB; XIRR; XNPV; YIELD; YIELDDISC; YIELDMAT Lookup and Reference Functions Used to easily find information from the data list. ADDRESS; CHOOSE; CHOOSECOLS; CHOOSEROWS; COLUMN; COLUMNS; DROP; EXPAND; FILTER; FORMULATEXT; HLOOKUP; HSTACK; HYPERLINK; INDEX; INDIRECT; LOOKUP; MATCH; OFFSET; ROW; ROWS; SORT; SORTBY; TAKE; TOCOL; TOROW; TRANSPOSE; UNIQUE; VLOOKUP; VSTACK; WRAPCOLS; WRAPROWS; XLOOKUP; XMATCH Information Functions Used to provide information about the data in the selected cell or cell range. CELL; ERROR.TYPE; ISBLANK; ISERR; ISERROR; ISEVEN; ISFORMULA; ISLOGICAL; ISNA; ISNONTEXT; ISNUMBER; ISODD; ISREF; ISTEXT; N; NA; SHEET; SHEETS; TYPE Logical Functions Used to check if a condition is true or false. AND; FALSE; IF; IFERROR; IFNA; IFS; NOT; OR; SWITCH; TRUE; XOR" }, { "id": "UsageInstructions/InsertHeadersFooters.htm", @@ -2713,7 +2713,7 @@ var indexes = { "id": "UsageInstructions/PivotTables.htm", "title": "Create and edit pivot tables", - "body": "Pivot tables allow you to group and arrange data of large data sets to get summarized information. In the Spreadsheet Editor you can reorganize data in many different ways to display only the necessary information and focus on important aspects. Create a new pivot table To create a pivot table, Prepare the source data set you want to use for creating a pivot table. It should include column headers. The data set should not contain empty rows or columns. Select any cell within the source data range. Switch to the Pivot Table tab of the top toolbar and click the Insert Table icon. If you want to create a pivot table on the base of a formatted table, you can also use the Insert pivot table option on the Table settings tab of the right sidebar. The Create Pivot Table window will appear. The Source data range is already specified. In this case, all data from the source data range will be used. If you want to change the data range (e.g. to include only a part of source data), click the icon. In the Select Data Range window, enter the necessary data range in the following format: Sheet1!$A$1:$E$10. You can also select the necessary cell range on the sheet using the mouse. When ready, click OK. Specify where you want to place the pivot table. The New worksheet option is selected by default. It allows you to place the pivot table in a new worksheet. You can also select the Existing worksheet option and choose a certain cell. In this case, the selected cell will be the upper right cell of the created pivot table. To select a cell, click the icon. In the Select Data Range window, enter the cell address in the following format: Sheet1!$G$2. You can also click the necessary cell in the sheet. When ready, click OK. When you select the pivot table location, click OK in the Create Table window. An empty pivot table will be inserted in the selected location. The Pivot table settings tab on the right sidebar will be opened. You can hide or display this tab by clicking the icon. Pivot table settings are also available in the context menu that appears when you right click the table. The context menu options depend on the field you click. Select fields to display The Select Fields section contains the fields named according to the column headers in your source data set. Each field contains values from the corresponding column of the source table. The following four sections are available below: Filters, Columns, Rows, and Values. Check the fields you want to display in the pivot table. When you check a field, it will be added to one of the available sections on the right sidebar depending on the data type and will be displayed in the pivot table. Fields containing text values will be added to the Rows section; fields containing numeric values will be added to the Values section. You can simply drag fields to the necessary section as well as drag the fields between sections to quickly reorganize your pivot table. To remove a field from the current section, drag it out of this section. In order to add a field to the necessary section, it's also possible to click the black arrow to the right of a field in the Select Fields section and choose the necessary option from the menu: Add to Filters, Add to Rows, Add to Columns, Add to Values. Below you can see some examples of using the Filters, Columns, Rows, and Values sections. If you add a field to the Filters section, a separate filter will be added above the pivot table. It will be applied to the entire pivot table. If you click the drop-down arrow in the added filter, you'll see the values from the selected field. When you uncheck some values in the filter option window and click OK, the unchecked values will not be displayed in the pivot table. If you add a field to the Columns section, the pivot table will contain a number of columns equal to the number of values from the selected field. The Grand Total column will also be added. If you add a field to the Rows section, the pivot table will contain a number of rows equal to the number of values from the selected field. The Grand Total row will also be added. If you add a field to the Values section, the pivot table will display the summation value for all numeric values from the selected field. If the field contains text values, the count of values will be displayed. The function used to calculate the summation value can be changed in the field settings. To see more information regarding any value field, click it with the right mouse button to open the context menu and choose the Show details option, or double click the required value field with the left mouse button. Rearrange fields and adjust their properties Once the fields are added to the necessary sections, you can manage them to change the layout and format of the pivot table. Click the black arrow to the right of a field within the Filters, Columns, Rows, or Values sections to access the field context menu. It allows you to: Move the selected field Up, Down, to the Beginning, or to the End of the current section if you have added more than one field to the current section. Move the selected field to a different section - to Filters, Columns, Rows, or Values. The option that corresponds to the current section will be disabled. Remove the selected field from the current section. Adjust the selected field settings. The Filters, Columns, and Rows field settings look similarly: The Layout tab contains the following options: The Source name option allows you to view the field name corresponding to the column header from the source data set. The Custom name option allows you to change the name of the selected field displayed in the pivot table. The Report Form section allows you to change the way the selected field is displayed in the pivot table: Choose the necessary layout for the selected field in the pivot table: The Tabular form displays one column for each field and provides space for field headers. The Outline form displays one column for each field and provides space for field headers. It also allows you to display subtotals at the top of groups. The Compact form displays items from different row section fields in a single column. The Number format option allows you to choose the required number format for the value field. Click this button, choose the required format from the Category list, then click OK when ready. To learn more about number formats, please refer to the following article. The Repeat items labels at each row option allows you to visually group rows or columns together if you have multiple fields in the tabular form. The Insert blank rows after each item option allows you to add blank lines after items of the selected field. The Show subtotals option allows you to choose if you want to display subtotals for the selected field. You can select one of the options: Show at top of group or Show at bottom of group. The Show items with no data option allows you to show or hide blank items in the selected field. The Subtotals tab allows you to choose Functions for Subtotals. Check the necessary functions in the list: Sum, Count, Average, Max, Min, Product, Count Numbers, StdDev, StdDevp, Var, Varp. Values field settings The Source name option allows you to view the field name corresponding to the column header from the source data set. The Custom name option allows you to change the name of the selected field displayed in the pivot table. The Summarize value field by option allows you to choose the function used to calculate the summation value for all values from this field. By default, Sum is used for numeric values, Count is used for text values. The available functions are Sum, Count, Average, Max, Min, Product, Count Numbers, StdDev, StdDevp, Var, Varp. The Show values as option allows you to show instant custom calculations instead of adding a formula and creating a calculated field. No calculation is the default option that displays the actual value in the field. Other calculation options: % of grand total, % of column total, % of row total, % of, % of parent row total, % of parent column total, % of parent total, Difference from, % difference from, Running total in, % running total in, Rank smallest to largest, Rank largest to smallest, Index. Use Base field and Base item when these options are available for the calculation you selected (% of, % of parent total, Difference from, % difference from, Running total in, % running total in). The Number format option allows you to choose the required number format for the value field. Click this button, choose the required format from the Category list, then click OK when ready. To learn more about number formats, please refer to the following article. Group and ungroup data Data in pivot tables can be grouped according to custom requirements. Grouping is available for dates and basic numbers. Grouping dates To group dates, create a pivot table incorporating a set of needed dates. Right click any cell in a pivot table with a date, choose the Group option in the pop-up menu, and set the needed parameters in the opened window. Starting at - the first date in the source data is chosen by default. To change it, enter the needed date in this field. Deactivate this box to ignore the starting point. Ending at - the last date in the source data is chosen by default. To change it, enter the needed date in this field. Deactivate this box to ignore the ending point. By - the Seconds, Minutes, and Hours options group the data according to the time given in the source data. The Months option eliminates days and leaves months only. The Quarters option operates at a condition: four months constitute a quarter, thus providing Qtr1, Qtr2, etc. The Years option groups dates as per years given in the source data. Combine the options to achieve the needed result. Number of days - set the required value to determine a date range. Click OK when finished. Grouping numbers To group numbers, create a pivot table incorporating a set of needed numbers. Right click any cell in a pivot table with a number, choose the Group option in the pop-up menu, and set the needed parameters in the opened window. Starting at - the smallest number in the source data is chosen by default. To change it, enter the needed number in this field. Deactivate this box to ignore the smallest number. Ending at - the largest number in the source data is chosen by default. To change it, enter the needed number in this field. Deactivate this box to ignore the largest number. By - set the required interval for grouping numbers. E.g., “2” will group the set of numbers from 1 through 10 as “1-2”, “3-4”, etc. Click OK when finished. Ungrouping data To ungroup previously grouped data, right-click any cell that is in the group, select the Ungroup option in the context menu. Change the appearance of pivot tables You can use options available on the top toolbar to adjust the way your pivot table is displayed. These options are applied to the entire pivot table. Select at least one cell within the pivot table with the mouse to activate the editing tools on the top toolbar. The Report Layout drop-down list allows you to choose the necessary layout for your pivot table: Show in Compact Form - allows you to display items from different row section fields in a single column. Show in Outline Form - allows you to display the pivot table in the classic pivot table style. It displays one column for each field and provides space for field headers. It also allows you to display subtotals at the top of groups. Show in Tabular Form - allows you to display the pivot table in a traditional table format. It displays one column for each field and provides space for field headers. Repeat All Item Labels - allows you to visually group rows or columns together if you have multiple fields in the tabular form. Don't Repeat All Item Labels - allows you to hide item labels if you have multiple fields in the tabular form. The Blank Rows drop-down list allows you to choose if you want to display blank lines after items: Insert Blank Line after Each Item - allows you to add blank lines after items. Remove Blank Line after Each Item - allows you to remove the added blank lines. The Subtotals drop-down list allows you to choose if you want to display subtotals in the pivot table: Don't Show Subtotals - allows you to hide subtotals for all items. Show all Subtotals at Bottom of Group - allows you to display subtotals below the subtotaled rows. Show all Subtotals at Top of Group - allows you to display subtotals above the subtotaled rows. The Grand Totals drop-down list allows you to choose if you want to display grand totals in the pivot table: Off for Rows and Columns - allows you to hide grand totals for both rows and columns. On for Rows and Columns - allows you to display grand totals for both rows and columns. On for Rows Only - allows you to display grand totals for rows only. On for Columns Only - allows you to display grand totals for columns only. Note: the similar settings are also available in the pivot table advanced settings window in the Grand Totals section of the Name and Layout tab. The Select button allows you to select the entire pivot table. If you change the data in your source data set, select the pivot table and click the Refresh button to update the pivot table. Change the style of pivot tables You can change the appearance of pivot tables in a spreadsheet using the style editing tools available on the top toolbar. Select at least one cell within the pivot table with the mouse to activate the editing tools on the top toolbar. The rows and columns options allow you to emphasize certain rows/columns applying specific formatting to them, or highlight different rows/columns with different background colors to clearly distinguish them. The following options are available: Row Headers - allows you to highlight the row headers with special formatting. Column Headers - allows you to highlight the column headers with special formatting. Banded Rows - enables the background color alternation for odd and even rows. Banded Columns - enables the background color alternation for odd and even columns. The template list allows you to choose one of the predefined pivot table styles. Each template combines certain formatting parameters, such as a background color, border style, row/column banding, etc. Depending on the options checked for rows and columns, the templates set will be displayed differently. For example, if you've checked the Row Headers and Banded Columns options, the visible part of the templates list will include templates with the row headers highlighted and banded columns enabled, but you can expand the full list by clicking the arrow to see all the available templates. Filter, sort and add slicers in pivot tables You can filter pivot tables by labels or values and use the additional sort parameters. Filtering Click the drop-down arrow in the Row Labels or Column Labels of the pivot table. The Filter option list will open: Adjust the filter parameters. You can proceed in one of the following ways: select the data to display or filter the data by certain criteria. Select the data to display Uncheck the boxes near the data you need to hide. For your convenience, all the data within the Filter option list are sorted in ascending order. Note: the (blank) checkbox corresponds to the empty cells. It is available if the selected cell range contains at least one empty cell. To facilitate the process, make use of the search field on the top. Enter your query, entirely or partially, in the field - the values that include these characters will be displayed in the list below. The following two options will be also available: Select All Search Results - is checked by default. It allows selecting all the values that correspond to your query in the list. Add current selection to filter - if you check this box, the selected values will not be hidden when you apply the filter. After you select all the necessary data, click the OK button in the Filter option list to apply the filter. Filter data by certain criteria You can choose either the Label filter or the Value filter option on the right side of the Filter options list, and then select one of the options from the submenu: For the Label filter the following options are available: For texts: Equals..., Does not equal..., Begins with..., Does not begin with..., Ends with..., Does not end with..., Contains..., Does not contain... For numbers: Greater than..., Greater than or equal to..., Less than..., Less than or equal to..., Between, Not between. For the Value filter the following options are available: Equals..., Does not equal..., Greater than..., Greater than or equal to..., Less than..., Less than or equal to..., Between, Not between, Top 10. After you select one of the above options (apart from Top 10), the Label/Value Filter window will open. The corresponding field and criterion will be selected in the first and second drop-down lists. Enter the necessary value in the field on the right. Click OK to apply the filter. If you choose the Top 10 option from the Value filter option list, a new window will open: The first drop-down list allows choosing if you wish to display the highest (Top) or the lowest (Bottom) values. The second field allows specifying how many entries from the list or which percent of the overall entries number you want to display (you can enter a number from 1 to 500). The third drop-down list allows setting the units of measure: Item, Percent, or Sum. The fourth drop-down list displays the selected field name. Once the necessary parameters are set, click OK to apply the filter. The Filter button will appear in the Row Labels or Column Labels of the pivot table. It means that the filter is applied. Sorting You can sort your pivot table data using the sort options. Click the drop-down arrow in the Row Labels or Column Labels of the pivot table and then select Sort Lowest to Highest or Sort Highest to Lowest option from the submenu. The More Sort Options option allows you to open the Sort window where you can select the necessary sorting order - Ascending or Descending - and then select a certain field you want to sort. Adding slicers You can add slicers to filter data easier by displaying only what is needed. To learn more about slicers, please read the guide on creating slicers. Adjust pivot table advanced settings To change the advanced settings of the pivot table, use the Show advanced settings link on the right sidebar. The 'Pivot Table - Advanced Settings' window will open: The Name and Layout tab allows you to change the pivot table common properties. The Name option allows you to change the pivot table name. The Grand Totals section allows you to choose if you want to display grand totals in the pivot table. The Show for rows and Show for columns options are checked by default. You can uncheck either one of them or both these options to hide the corresponding grand totals from your pivot table. Note: the similar settings are available on the top toolbar in the Grand Totals menu. The Display fields in report filter area section allows you to adjust the report filters which appear when you add fields to the Filters section: The Down, then over option is used for column arrangement. It allows you to show the report filters across the column. The Over, then down option is used for row arrangement. It allows you to show the report filters across the row. The Report filter fields per column option allows you to select the number of filters to go in each column. The default value is set to 0. You can set the necessary numeric value. The Show field headers for rows and columns option allows you to choose if you want to display field headers in your pivot table. The option is enabled by default. Uncheck it to hide field headers from your pivot table. The Autofit column widths on update option allows you to enable/disable automatic adjusting of the column widths. The option is enabled by default. The Data Source tab allows you to change the data you wish to use to create the pivot table. Check the selected Data Range and modify it, if necessary. To do that, click the icon. In the Select Data Range window, enter the necessary data range in the following format: Sheet1!$A$1:$E$10. You can also select the necessary cell range in the sheet using the mouse. When ready, click OK. The Alternative Text tab allows specifying the Title and the Description which will be read to people with vision or cognitive impairments to help them better understand what information the pivot table contains. Delete a pivot table To delete a pivot table, Select the entire pivot table using the Select button on the top toolbar. Press the Delete key." + "body": "Pivot tables allow you to group and arrange data of large data sets to get summarized information. In the Spreadsheet Editor you can reorganize data in many different ways to display only the necessary information and focus on important aspects. Create a new pivot table To create a pivot table, Prepare the source data set you want to use for creating a pivot table. It should include column headers. The data set should not contain empty rows or columns. Select any cell within the source data range. Switch to the Pivot Table tab of the top toolbar and click the Insert Table icon. If you want to create a pivot table on the base of a formatted table, you can also use the Insert pivot table option on the Table settings tab of the right sidebar. The Create Pivot Table window will appear. The Source data range is already specified. In this case, all data from the source data range will be used. If you want to change the data range (e.g. to include only a part of source data), click the icon. In the Select Data Range window, enter the necessary data range in the following format: Sheet1!$A$1:$E$10. You can also select the necessary cell range on the sheet using the mouse. When ready, click OK. Specify where you want to place the pivot table. The New worksheet option is selected by default. It allows you to place the pivot table in a new worksheet. You can also select the Existing worksheet option and choose a certain cell. In this case, the selected cell will be the upper right cell of the created pivot table. To select a cell, click the icon. In the Select Data Range window, enter the cell address in the following format: Sheet1!$G$2. You can also click the necessary cell in the sheet. When ready, click OK. When you select the pivot table location, click OK in the Create Table window. An empty pivot table will be inserted in the selected location. The Pivot table settings tab on the right sidebar will be opened. You can hide or display this tab by clicking the icon. Pivot table settings are also available in the context menu that appears when you right click the table. The context menu options depend on the field you click. Select fields to display The Select Fields section contains the fields named according to the column headers in your source data set. Each field contains values from the corresponding column of the source table. The following four sections are available below: Filters, Columns, Rows, and Values. Check the fields you want to display in the pivot table. When you check a field, it will be added to one of the available sections on the right sidebar depending on the data type and will be displayed in the pivot table. Fields containing text values will be added to the Rows section; fields containing numeric values will be added to the Values section. You can simply drag fields to the necessary section as well as drag the fields between sections to quickly reorganize your pivot table. To remove a field from the current section, drag it out of this section. In order to add a field to the necessary section, it's also possible to click the black arrow to the right of a field in the Select Fields section and choose the necessary option from the menu: Add to Filters, Add to Rows, Add to Columns, Add to Values. Below you can see some examples of using the Filters, Columns, Rows, and Values sections. If you add a field to the Filters section, a separate filter will be added above the pivot table. It will be applied to the entire pivot table. If you click the drop-down arrow in the added filter, you'll see the values from the selected field. When you uncheck some values in the filter option window and click OK, the unchecked values will not be displayed in the pivot table. If you add a field to the Columns section, the pivot table will contain a number of columns equal to the number of values from the selected field. The Grand Total column will also be added. If you add a field to the Rows section, the pivot table will contain a number of rows equal to the number of values from the selected field. The Grand Total row will also be added. If you add a field to the Values section, the pivot table will display the summation value for all numeric values from the selected field. If the field contains text values, the count of values will be displayed. The function used to calculate the summation value can be changed in the field settings. To see more information regarding any value field, click it with the right mouse button to open the context menu and choose the Show details option, or double click the required value field with the left mouse button. The data that the value field is based on will open in a new sheet. Rearrange fields and adjust their properties Once the fields are added to the necessary sections, you can manage them to change the layout and format of the pivot table. Click the black arrow to the right of a field within the Filters, Columns, Rows, or Values sections to access the field context menu. It allows you to: Move the selected field Up, Down, to the Beginning, or to the End of the current section if you have added more than one field to the current section. Move the selected field to a different section - to Filters, Columns, Rows, or Values. The option that corresponds to the current section will be disabled. Remove the selected field from the current section. Adjust the selected field settings. The Filters, Columns, and Rows field settings look similarly: The Layout tab contains the following options: The Source name option allows you to view the field name corresponding to the column header from the source data set. The Custom name option allows you to change the name of the selected field displayed in the pivot table. The Report Form section allows you to change the way the selected field is displayed in the pivot table: Choose the necessary layout for the selected field in the pivot table: The Tabular form displays one column for each field and provides space for field headers. The Outline form displays one column for each field and provides space for field headers. It also allows you to display subtotals at the top of groups. The Compact form displays items from different row section fields in a single column. The Number format option allows you to choose the required number format for the value field. Click this button, choose the required format from the Category list, then click OK when ready. To learn more about number formats, please refer to the following article. The Repeat items labels at each row option allows you to visually group rows or columns together if you have multiple fields in the tabular form. The Insert blank rows after each item option allows you to add blank lines after items of the selected field. The Show subtotals option allows you to choose if you want to display subtotals for the selected field. You can select one of the options: Show at top of group or Show at bottom of group. The Show items with no data option allows you to show or hide blank items in the selected field. The Subtotals tab allows you to choose Functions for Subtotals. Check the necessary functions in the list: Sum, Count, Average, Max, Min, Product, Count Numbers, StdDev, StdDevp, Var, Varp. Values field settings The Source name option allows you to view the field name corresponding to the column header from the source data set. The Custom name option allows you to change the name of the selected field displayed in the pivot table. The Summarize value field by option allows you to choose the function used to calculate the summation value for all values from this field. By default, Sum is used for numeric values, Count is used for text values. The available functions are Sum, Count, Average, Max, Min, Product, Count Numbers, StdDev, StdDevp, Var, Varp. The Show values as option allows you to show instant custom calculations instead of adding a formula and creating a calculated field. No calculation is the default option that displays the actual value in the field. Other calculation options: % of grand total, % of column total, % of row total, % of, % of parent row total, % of parent column total, % of parent total, Difference from, % difference from, Running total in, % running total in, Rank smallest to largest, Rank largest to smallest, Index. Use Base field and Base item when these options are available for the calculation you selected (% of, % of parent total, Difference from, % difference from, Running total in, % running total in). The Number format option allows you to choose the required number format for the value field. Click this button, choose the required format from the Category list, then click OK when ready. To learn more about number formats, please refer to the following article. Group and ungroup data Data in pivot tables can be grouped according to custom requirements. Grouping is available for dates and basic numbers. Grouping dates To group dates, create a pivot table incorporating a set of needed dates. Right click any cell in a pivot table with a date, choose the Group option in the pop-up menu, and set the needed parameters in the opened window. Starting at - the first date in the source data is chosen by default. To change it, enter the needed date in this field. Deactivate this box to ignore the starting point. Ending at - the last date in the source data is chosen by default. To change it, enter the needed date in this field. Deactivate this box to ignore the ending point. By - the Seconds, Minutes, and Hours options group the data according to the time given in the source data. The Months option eliminates days and leaves months only. The Quarters option operates at a condition: four months constitute a quarter, thus providing Qtr1, Qtr2, etc. The Years option groups dates as per years given in the source data. Combine the options to achieve the needed result. Number of days - set the required value to determine a date range. Click OK when finished. Grouping numbers To group numbers, create a pivot table incorporating a set of needed numbers. Right click any cell in a pivot table with a number, choose the Group option in the pop-up menu, and set the needed parameters in the opened window. Starting at - the smallest number in the source data is chosen by default. To change it, enter the needed number in this field. Deactivate this box to ignore the smallest number. Ending at - the largest number in the source data is chosen by default. To change it, enter the needed number in this field. Deactivate this box to ignore the largest number. By - set the required interval for grouping numbers. E.g., “2” will group the set of numbers from 1 through 10 as “1-2”, “3-4”, etc. Click OK when finished. Ungrouping data To ungroup previously grouped data, right-click any cell that is in the group, select the Ungroup option in the context menu. Change the appearance of pivot tables You can use options available on the top toolbar to adjust the way your pivot table is displayed. These options are applied to the entire pivot table. Select at least one cell within the pivot table with the mouse to activate the editing tools on the top toolbar. The Report Layout drop-down list allows you to choose the necessary layout for your pivot table: Show in Compact Form - allows you to display items from different row section fields in a single column. Show in Outline Form - allows you to display the pivot table in the classic pivot table style. It displays one column for each field and provides space for field headers. It also allows you to display subtotals at the top of groups. Show in Tabular Form - allows you to display the pivot table in a traditional table format. It displays one column for each field and provides space for field headers. Repeat All Item Labels - allows you to visually group rows or columns together if you have multiple fields in the tabular form. Don't Repeat All Item Labels - allows you to hide item labels if you have multiple fields in the tabular form. The Blank Rows drop-down list allows you to choose if you want to display blank lines after items: Insert Blank Line after Each Item - allows you to add blank lines after items. Remove Blank Line after Each Item - allows you to remove the added blank lines. The Subtotals drop-down list allows you to choose if you want to display subtotals in the pivot table: Don't Show Subtotals - allows you to hide subtotals for all items. Show all Subtotals at Bottom of Group - allows you to display subtotals below the subtotaled rows. Show all Subtotals at Top of Group - allows you to display subtotals above the subtotaled rows. The Grand Totals drop-down list allows you to choose if you want to display grand totals in the pivot table: Off for Rows and Columns - allows you to hide grand totals for both rows and columns. On for Rows and Columns - allows you to display grand totals for both rows and columns. On for Rows Only - allows you to display grand totals for rows only. On for Columns Only - allows you to display grand totals for columns only. Note: the similar settings are also available in the pivot table advanced settings window in the Grand Totals section of the Name and Layout tab. The Select button allows you to select the entire pivot table. If you change the data in your source data set, select the pivot table and click the Refresh button to update the pivot table. Expand or collapse fields To expand or collapse data details, click a field with the right mouse button to open the context menu, choose the Expand/Collapse menu item, then select the necessary option: Expand - to show details for the currently selected item. Collapse - to hide details for the currently selected item. Expand Entire Field - to show details for all items in a field. The similar setting is also available at the top toolbar. Collapse Entire Field - to hide details for all items in a field. The similar setting is also available at the top toolbar. The groups are hidden behind the plus/minus icons. You can also expand/collapse fields by double-clicking the pivot table headers. The Expand option, when the last field of rows or columns is selected, opens a dialog window for adding a new field to the row or column. Choose the necessary field and click OK. Change the style of pivot tables You can change the appearance of pivot tables in a spreadsheet using the style editing tools available on the top toolbar. Select at least one cell within the pivot table with the mouse to activate the editing tools on the top toolbar. The rows and columns options allow you to emphasize certain rows/columns applying specific formatting to them, or highlight different rows/columns with different background colors to clearly distinguish them. The following options are available: Row Headers - allows you to highlight the row headers with special formatting. Column Headers - allows you to highlight the column headers with special formatting. Banded Rows - enables the background color alternation for odd and even rows. Banded Columns - enables the background color alternation for odd and even columns. The template list allows you to choose one of the predefined pivot table styles. Each template combines certain formatting parameters, such as a background color, border style, row/column banding, etc. Depending on the options checked for rows and columns, the templates set will be displayed differently. For example, if you've checked the Row Headers and Banded Columns options, the visible part of the templates list will include templates with the row headers highlighted and banded columns enabled, but you can expand the full list by clicking the arrow to see all the available templates. Filter, sort and add slicers in pivot tables You can filter pivot tables by labels or values and use the additional sort parameters. Filtering Click the drop-down arrow in the Row Labels or Column Labels of the pivot table. The Filter option list will open: Adjust the filter parameters. You can proceed in one of the following ways: select the data to display or filter the data by certain criteria. Select the data to display Uncheck the boxes near the data you need to hide. For your convenience, all the data within the Filter option list are sorted in ascending order. Note: the (blank) checkbox corresponds to the empty cells. It is available if the selected cell range contains at least one empty cell. To facilitate the process, make use of the search field on the top. Enter your query, entirely or partially, in the field - the values that include these characters will be displayed in the list below. The following two options will be also available: Select All Search Results - is checked by default. It allows selecting all the values that correspond to your query in the list. Add current selection to filter - if you check this box, the selected values will not be hidden when you apply the filter. After you select all the necessary data, click the OK button in the Filter option list to apply the filter. Filter data by certain criteria You can choose either the Label filter or the Value filter option on the right side of the Filter options list, and then select one of the options from the submenu: For the Label filter the following options are available: For texts: Equals..., Does not equal..., Begins with..., Does not begin with..., Ends with..., Does not end with..., Contains..., Does not contain... For numbers: Greater than..., Greater than or equal to..., Less than..., Less than or equal to..., Between, Not between. For the Value filter the following options are available: Equals..., Does not equal..., Greater than..., Greater than or equal to..., Less than..., Less than or equal to..., Between, Not between, Top 10. After you select one of the above options (apart from Top 10), the Label/Value Filter window will open. The corresponding field and criterion will be selected in the first and second drop-down lists. Enter the necessary value in the field on the right. Click OK to apply the filter. If you choose the Top 10 option from the Value filter option list, a new window will open: The first drop-down list allows choosing if you wish to display the highest (Top) or the lowest (Bottom) values. The second field allows specifying how many entries from the list or which percent of the overall entries number you want to display (you can enter a number from 1 to 500). The third drop-down list allows setting the units of measure: Item, Percent, or Sum. The fourth drop-down list displays the selected field name. Once the necessary parameters are set, click OK to apply the filter. The Filter button will appear in the Row Labels or Column Labels of the pivot table. It means that the filter is applied. Sorting You can sort your pivot table data using the sort options. Click the drop-down arrow in the Row Labels or Column Labels of the pivot table and then select Sort Lowest to Highest or Sort Highest to Lowest option from the submenu. The More Sort Options option allows you to open the Sort window where you can select the necessary sorting order - Ascending or Descending - and then select a certain field you want to sort. Adding slicers You can add slicers to filter data easier by displaying only what is needed. To learn more about slicers, please read the guide on creating slicers. Adjust pivot table advanced settings To change the advanced settings of the pivot table, use the Show advanced settings link on the right sidebar. The 'Pivot Table - Advanced Settings' window will open: The Name and Layout tab allows you to change the pivot table common properties. The Name option allows you to change the pivot table name. The Grand Totals section allows you to choose if you want to display grand totals in the pivot table. The Show for rows and Show for columns options are checked by default. You can uncheck either one of them or both these options to hide the corresponding grand totals from your pivot table. Note: the similar settings are available on the top toolbar in the Grand Totals menu. The Display fields in report filter area section allows you to adjust the report filters which appear when you add fields to the Filters section: The Down, then over option is used for column arrangement. It allows you to show the report filters across the column. The Over, then down option is used for row arrangement. It allows you to show the report filters across the row. The Report filter fields per column option allows you to select the number of filters to go in each column. The default value is set to 0. You can set the necessary numeric value. The Show field headers for rows and columns option allows you to choose if you want to display field headers in your pivot table. The option is enabled by default. Uncheck it to hide field headers from your pivot table. The Autofit column widths on update option allows you to enable/disable automatic adjusting of the column widths. The option is enabled by default. The Data Source tab allows you to change the data you wish to use to create the pivot table. Check the selected Data Range and modify it, if necessary. To do that, click the icon. In the Select Data Range window, enter the necessary data range in the following format: Sheet1!$A$1:$E$10. You can also select the necessary cell range in the sheet using the mouse. When ready, click OK. The Alternative Text tab allows specifying the Title and the Description which will be read to people with vision or cognitive impairments to help them better understand what information the pivot table contains. Delete a pivot table To delete a pivot table, Select the entire pivot table using the Select button on the top toolbar. Press the Delete key." }, { "id": "UsageInstructions/ProtectRanges.htm", @@ -2743,7 +2743,7 @@ var indexes = { "id": "UsageInstructions/SavePrintDownload.htm", "title": "Save/print/download your spreadsheet", - "body": "Saving By default, the online Spreadsheet Editor automatically saves your file each 2 seconds when you are working on it preventing your data from loss if the program closes unexpectedly. If you co-edit the file in the Fast mode, the timer requests for updates 25 times a second and saves the changes if they have been made. When the file is being co-edited in the Strict mode, changes are automatically saved at 10-minute intervals. If you need, you can easily select the preferred co-editing mode or disable the Autosave feature on the Advanced Settings page. To save your current spreadsheet manually in the current format and location, click the Save icon on the left side of the editor header, or use the Ctrl+S key combination, or click the File tab of the top toolbar and select the Save option. In the desktop version, to prevent data loss if the program closes unexpectedly, you can turn on the Autorecover option on the Advanced Settings page. In the desktop version, you can save the spreadsheet with another name, in a new location or format, click the File tab of the top toolbar, select the Save as option, choose one of the available formats depending on your needs: XLSX, XLTX, ODS, OTS, CSV, PDF, PDF/A, XLTM, JPG, PNG. Downloading In the online version, you can download the resulting spreadsheet onto your computer hard disk drive, click the File tab of the top toolbar, select the Download as option, choose one of the available formats depending on your needs: XLSX, ODS, CSV, PDF, XLTX, OTS, PDF/A, JPG, PNG. Note: if you select the CSV format, all features (font formatting, formulas, etc.) except the plain text will not be preserved in the CSV file. If you continue saving, the Choose CSV Options window will open. By default, Unicode (UTF-8) is used as the Encoding type. The default Delimiter is comma (,), but the following options are also available: semicolon (;), colon (:), Tab, Space and Other (this option allows you to set a custom delimiter character). Saving a copy In the online version, you can save a copy of the file on your portal, click the File tab of the top toolbar, select the Save Copy as option, choose one of the available formats depending on your needs: XLSX, ODS, CSV, PDF, XLTX, OTS, PDF/A, JPG, PNG, select a location of the file on the portal and press Save. Printing To print out the current spreadsheet, click the Print icon on the left side of the editor header, or use the Ctrl+P key combination, or click the File tab of the top toolbar and select the Print option. The Firefox browser enables printing without downloading the document as a .pdf file first. The spreadsheet Preview and the available printing options will open. Some of these settings (page Margins, Orientation, Size, Print Area as well as Scale to Fit) are also available on the Layout tab of the top toolbar. Here you can adjust the following parameters. In the desktop version you can also define the Print sides option to print on one or two sides flipping the pages on long or short edge as well as print the file to PDF or use the Quick print button in the top toolbar to print the file on the last selected or default printer. Print range - specify what to print: Active sheets, All sheets or Selection. If you previously set a constant print area but want to print the entire sheet, check the Ignore print area box. Pages - specify the range of pages for printing. You can enter the numbers manually or use the corresponding arrows. Settings of sheet - specify individual print settings for each separate sheet, if you have selected the All Sheets option in the Print range drop-down list. Page size - select one of the available sizes from the drop-down list. Page orientation - choose the Portrait option if you wish to print vertically on the page, or use the Landscape option to print horizontally. Margins - choose one of the availabe presets: Normal, Narrow, or Wide, or choose the Custom option and specify the distance between the worksheet data and the edges of the printed page changing the default sizes in the Top, Bottom, Left and Right fields. Scaling - if you do not want some columns or rows to be printed on the second page, you can shrink sheet contents to fit it on one page by selecting the corresponding option: Actual Size, Fit Sheet on One Page, Fit All Columns on One Page or Fit All Rows on One Page. Leave the Actual Size option to print the sheet without adjusting. If you choose the Custom Options item from the menu, the Scale Settings window will open: Fit To: allows you to select the necessary number of pages you want to fit the printed worksheet to. Select the necessary number of pages from the Width and Height lists. Scale To: allows you to enlarge or reduce the scale of the worksheet to fit printed pages by manually specifying the percentage of normal size. Print titles - if you want to print row or column titles on every page, use Repeat rows at top and/or Repeat columns at left to indicate the row and the column with the title to repeat, or select one of the available options from the drop-down list: Frozen rows/columns, First row/column or Don't repeat. Gridlines and headings - specify the worksheet elements to print by checking the corresponding boxes: Print gridlines and Print row and column headings. Header/footer settings - allow to add some additional information to a printed worksheet, such as date and time, page number, sheet name, etc. First page number - specify the number of the first page printed. After you have configured the printing settings click the Print button to save changes and print out the spreadsheet or the Save button to save changes made to printing settings. All changes you made will be lost if you don't print the spreadsheet or save the changes. The spreadsheet Preview allows you to navigate a spreadsheet using arrows at the bottom to see how your data will be displayed on a sheet when printed and to correct eventual faults using the print setting above. In the online version, a PDF file will be generated on the basis of the document. You can open and print it out, or save onto your computer hard disk drive or removable medium to print it out later. Some browsers (e.g. Chrome and Opera) support direct printing. Setting up the print area If you want to print the selected cell range only instead of the entire worksheet, you can use the Selection option from the Print range drop-down list. When the workbook is saved, this setting is not saved, it is intended for single use. If a cell range should be printed frequently, you can set a constant print area on the worksheet. When the workbook is saved, the print area is also saved, it can be used when you open the spreadsheet next time. It's also possible to set several constant print areas in a sheet, in this case each area will be printed on a separate page. To set the print area: select the necessary cell range on the worksheet. To select multiple cell ranges, hold down the Ctrl key, switch to the Layout tab of the top toolbar, click the arrow next to the Print Area button and select the Set Print Area option. The created print area is saved when the workbook is saved. When you open the file next time, the specified print area will be printed. When you create a print area, a Print_Area named range is also automatically created, which is displayed in the Name Manager. To highlight the borders of all the print areas on the current worksheet, you can click the arrow in the name box located to the left of the the formula bar and select the Print_Area name from the name list. To add cells to the print area: open the necessary worksheet where the print area is added, select the necessary cell range on the worksheet, switch to the Layout tab of the top toolbar, click the arrow next to the Print Area button and select the Add to Print Area option. A new print area will be added. Each print area will be printed on a separate page. To remove the print area: open the necessary worksheet where the print area is added, switch to the Layout tab of the top toolbar, click the arrow next to the Print Area button and select the Clear Print Area option. All the existing print areas in this sheet will be removed. Then the entire sheet will be printed." + "body": "Saving By default, the online Spreadsheet Editor automatically saves your file each 2 seconds when you are working on it preventing your data from loss if the program closes unexpectedly. If you co-edit the file in the Fast mode, the timer requests for updates 25 times a second and saves the changes if they have been made. When the file is being co-edited in the Strict mode, changes are automatically saved at 10-minute intervals. If you need, you can easily select the preferred co-editing mode or disable the Autosave feature on the Advanced Settings page. To save your current spreadsheet manually in the current format and location, click the Save icon on the left side of the editor header, or use the Ctrl+S key combination, or click the File tab of the top toolbar and select the Save option. In the desktop version, to prevent data loss if the program closes unexpectedly, you can turn on the Autorecover option on the Advanced Settings page. In the desktop version, you can save the spreadsheet with another name, in a new location or format, click the File tab of the top toolbar, select the Save as option, choose one of the available formats depending on your needs: XLSX, XLTX, ODS, OTS, CSV, PDF, PDF/A, XLTM, JPG, PNG. Downloading In the online version, you can download the resulting spreadsheet onto your computer hard disk drive, click the File tab of the top toolbar, select the Download as option, choose one of the available formats depending on your needs: XLSX, ODS, CSV, PDF, XLTX, OTS, PDF/A, JPG, PNG. Note: if you select the CSV format, all features (font formatting, formulas, etc.) except the plain text will not be preserved in the CSV file. If you continue saving, the Choose CSV Options window will open. By default, Unicode (UTF-8) is used as the Encoding type. The default Delimiter is comma (,), but the following options are also available: semicolon (;), colon (:), Tab, Space and Other (this option allows you to set a custom delimiter character). Saving a copy In the online version, you can save a copy of the file on your portal, click the File tab of the top toolbar, select the Save Copy as option, choose one of the available formats depending on your needs: XLSX, ODS, CSV, PDF, XLTX, OTS, PDF/A, JPG, PNG, select a location of the file on the portal and press Save. Printing To print out the current spreadsheet, click the Print icon on the left side of the editor header, or use the Ctrl+P key combination, or click the File tab of the top toolbar and select the Print option. The Firefox browser enables printing without downloading the document as a .pdf file first. The spreadsheet Preview and the available printing options will open. Some of these settings (page Margins, Orientation, Size, Print Area as well as Scale to Fit) are also available on the Layout tab of the top toolbar. Here you can adjust the following parameters. In the desktop version you can also define the Print sides option to print on one or two sides flipping the pages on long or short edge as well as print the file to PDF or use the Quick print button in the top toolbar to print the file on the last selected or default printer. Print range - specify what to print: Active sheets, All sheets or Selection. If you previously set a constant print area but want to print the entire sheet, check the Ignore print area box. Pages - specify the range of pages for printing. You can enter the numbers manually or use the corresponding arrows. Settings of sheet - specify individual print settings for each separate sheet, if you have selected the All Sheets option in the Print range drop-down list. Page size - select one of the available sizes from the drop-down list. Page orientation - choose the Portrait option if you wish to print vertically on the page, or use the Landscape option to print horizontally. Margins - choose one of the availabe presets: Normal, Narrow, or Wide, or choose the Custom option and specify the distance between the worksheet data and the edges of the printed page changing the default sizes in the Top, Bottom, Left and Right fields. To center data on the printed page, choose the Custom option from the Margins menu, check the Vertically/Horizontally box in the Center on page section, and click OK. Scaling - if you do not want some columns or rows to be printed on the second page, you can shrink sheet contents to fit it on one page by selecting the corresponding option: Actual Size, Fit Sheet on One Page, Fit All Columns on One Page or Fit All Rows on One Page. Leave the Actual Size option to print the sheet without adjusting. If you choose the Custom Options item from the menu, the Scale Settings window will open: Fit To: allows you to select the necessary number of pages you want to fit the printed worksheet to. Select the necessary number of pages from the Width and Height lists. Scale To: allows you to enlarge or reduce the scale of the worksheet to fit printed pages by manually specifying the percentage of normal size. Print titles - if you want to print row or column titles on every page, use Repeat rows at top and/or Repeat columns at left to indicate the row and the column with the title to repeat, or select one of the available options from the drop-down list: Frozen rows/columns, First row/column or Don't repeat. Gridlines and headings - specify the worksheet elements to print by checking the corresponding boxes: Print gridlines and Print row and column headings. Header/footer settings - allow to add some additional information to a printed worksheet, such as date and time, page number, sheet name, etc. First page number - specify the number of the first page printed. After you have configured the printing settings click the Print button to save changes and print out the spreadsheet or the Save button to save changes made to printing settings. All changes you made will be lost if you don't print the spreadsheet or save the changes. The spreadsheet Preview allows you to navigate a spreadsheet using arrows at the bottom to see how your data will be displayed on a sheet when printed and to correct eventual faults using the print setting above. In the online version, a PDF file will be generated on the basis of the document. You can open and print it out, or save onto your computer hard disk drive or removable medium to print it out later. Some browsers (e.g. Chrome and Opera) support direct printing. Setting up the print area If you want to print the selected cell range only instead of the entire worksheet, you can use the Selection option from the Print range drop-down list. When the workbook is saved, this setting is not saved, it is intended for single use. If a cell range should be printed frequently, you can set a constant print area on the worksheet. When the workbook is saved, the print area is also saved, it can be used when you open the spreadsheet next time. It's also possible to set several constant print areas in a sheet, in this case each area will be printed on a separate page. To set the print area: select the necessary cell range on the worksheet. To select multiple cell ranges, hold down the Ctrl key, switch to the Layout tab of the top toolbar, click the arrow next to the Print Area button and select the Set Print Area option. The created print area is saved when the workbook is saved. When you open the file next time, the specified print area will be printed. When you create a print area, a Print_Area named range is also automatically created, which is displayed in the Name Manager. To highlight the borders of all the print areas on the current worksheet, you can click the arrow in the name box located to the left of the the formula bar and select the Print_Area name from the name list. To add cells to the print area: open the necessary worksheet where the print area is added, select the necessary cell range on the worksheet, switch to the Layout tab of the top toolbar, click the arrow next to the Print Area button and select the Add to Print Area option. A new print area will be added. Each print area will be printed on a separate page. To remove the print area: open the necessary worksheet where the print area is added, switch to the Layout tab of the top toolbar, click the arrow next to the Print Area button and select the Clear Print Area option. All the existing print areas in this sheet will be removed. Then the entire sheet will be printed." }, { "id": "UsageInstructions/ScaleToFit.htm", diff --git a/apps/spreadsheeteditor/main/resources/help/images/icons.png b/apps/spreadsheeteditor/main/resources/help/images/icons.png index 97a5850332..3355affb14 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/images/icons.png and b/apps/spreadsheeteditor/main/resources/help/images/icons.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/images/sprite.css b/apps/spreadsheeteditor/main/resources/help/images/sprite.css index 6e2312eb56..2c0a252262 100644 --- a/apps/spreadsheeteditor/main/resources/help/images/sprite.css +++ b/apps/spreadsheeteditor/main/resources/help/images/sprite.css @@ -480,86 +480,86 @@ height: 20px; } -.icon-vector { +.icon-sortcommentsicon { background-position: -180px -20px; width: 20px; height: 20px; } -.icon-zoom_icon { +.icon-vector { background-position: -180px -40px; width: 20px; height: 20px; } -.icon-align_toptoolbar { +.icon-zoom_icon { background-position: -180px -60px; - width: 19px; + width: 20px; height: 20px; } -.icon-inserttextarticon { +.icon-align_toptoolbar { background-position: -180px -80px; - width: 16px; + width: 19px; height: 20px; } -.icon-sortcommentsicon { - background-position: 0px -167px; - width: 31px; - height: 19px; +.icon-inserttextarticon { + background-position: -180px -100px; + width: 16px; + height: 20px; } .icon-chat_toptoolbar { - background-position: -31px -167px; + background-position: 0px -167px; width: 24px; height: 19px; } .icon-chart { - background-position: -55px -167px; + background-position: -24px -167px; width: 22px; height: 19px; } .icon-comment_toptoolbar { - background-position: -77px -167px; + background-position: -46px -167px; width: 22px; height: 19px; } .icon-insertequationicon { - background-position: -99px -167px; + background-position: -68px -167px; width: 22px; height: 19px; } .icon-pivotselecticon { - background-position: -121px -167px; + background-position: -90px -167px; width: 22px; height: 19px; } .icon-functionicon { - background-position: -180px -100px; + background-position: -180px -120px; width: 20px; height: 19px; } .icon-paste_style { - background-position: -180px -119px; + background-position: -180px -139px; width: 20px; height: 19px; } .icon-addhyperlink { - background-position: -180px -138px; + background-position: -112px -167px; width: 19px; height: 19px; } .icon-hiderulers { - background-position: -143px -167px; + background-position: -131px -167px; width: 19px; height: 19px; } @@ -571,13 +571,13 @@ } .icon-customsort { - background-position: -162px -167px; + background-position: -150px -167px; width: 18px; height: 18px; } .icon-new_icon { - background-position: -180px -167px; + background-position: -168px -167px; width: 18px; height: 18px; } @@ -799,7 +799,7 @@ } .icon-distributevertically { - background-position: -102px -203px; + background-position: -186px -167px; width: 14px; height: 16px; } @@ -823,271 +823,271 @@ } .icon-access_rights { - background-position: -116px -203px; + background-position: -102px -203px; width: 19px; height: 15px; } .icon-chaticon { - background-position: -135px -203px; + background-position: -121px -203px; width: 18px; height: 15px; } .icon-gotodocuments { - background-position: -153px -203px; + background-position: -139px -203px; width: 18px; height: 15px; } .icon-print { - background-position: -171px -203px; + background-position: -157px -203px; width: 17px; height: 15px; } .icon-bgcolor { - background-position: -188px -203px; + background-position: -174px -203px; width: 16px; height: 15px; } .icon-about { - background-position: -204px -203px; + background-position: -190px -203px; width: 15px; height: 15px; } .icon-abouticon { - background-position: -219px -203px; + background-position: -205px -203px; width: 15px; height: 15px; } .icon-advanced_settings_icon { - background-position: 0px -219px; + background-position: -220px -203px; width: 15px; height: 15px; } .icon-insertpivot { - background-position: -15px -219px; + background-position: 0px -219px; width: 15px; height: 15px; } .icon-plus { - background-position: -30px -219px; + background-position: -15px -219px; width: 15px; height: 15px; } .icon-plus_sheet { - background-position: -45px -219px; + background-position: -30px -219px; width: 15px; height: 15px; } .icon-save { - background-position: -60px -219px; + background-position: -45px -219px; width: 15px; height: 15px; } .icon-tabstopcenter { - background-position: -75px -219px; + background-position: -60px -219px; width: 15px; height: 15px; } .icon-tabstopleft { - background-position: -90px -219px; + background-position: -75px -219px; width: 15px; height: 15px; } .icon-feedback { - background-position: -105px -219px; + background-position: -90px -219px; width: 14px; height: 15px; } .icon-flipupsidedown { - background-position: -119px -219px; + background-position: -104px -219px; width: 14px; height: 15px; } .icon-shapesettings { - background-position: -133px -219px; + background-position: -118px -219px; width: 14px; height: 15px; } .icon-file { - background-position: -147px -219px; + background-position: -132px -219px; width: 13px; height: 15px; } .icon-back { - background-position: -160px -219px; + background-position: -145px -219px; width: 12px; height: 15px; } .icon-fontcolor { - background-position: -172px -219px; + background-position: -157px -219px; width: 25px; height: 14px; } .icon-numbering { - background-position: -197px -219px; + background-position: -182px -219px; width: 24px; height: 14px; } .icon-spellcheckactivated { - background-position: -237px 0px; + background-position: -206px -219px; width: 17px; height: 14px; } .icon-spellcheckdeactivated { - background-position: -237px -14px; + background-position: -237px 0px; width: 17px; height: 14px; } .icon-distributehorizontally { - background-position: -237px -28px; + background-position: -237px -14px; width: 16px; height: 14px; } .icon-fliplefttoright { - background-position: -237px -42px; + background-position: -237px -28px; width: 15px; height: 14px; } .icon-sort { - background-position: -237px -56px; + background-position: -237px -42px; width: 15px; height: 14px; } .icon-alignobjectbottom { - background-position: -237px -70px; + background-position: -237px -56px; width: 14px; height: 14px; } .icon-alignobjectleft { - background-position: -237px -84px; + background-position: -237px -70px; width: 14px; height: 14px; } .icon-alignobjectright { - background-position: -237px -98px; + background-position: -237px -84px; width: 14px; height: 14px; } .icon-alignobjecttop { - background-position: -237px -112px; + background-position: -237px -98px; width: 14px; height: 14px; } .icon-bordercolor { - background-position: -237px -126px; + background-position: -237px -112px; width: 14px; height: 14px; } .icon-borderwidth { - background-position: -237px -140px; + background-position: -237px -126px; width: 14px; height: 14px; } .icon-chartsettingsicon { - background-position: -237px -154px; + background-position: -237px -140px; width: 14px; height: 14px; } .icon-clearicon { - background-position: -237px -168px; + background-position: -237px -154px; width: 14px; height: 14px; } .icon-commentsicon { - background-position: -237px -182px; + background-position: -237px -168px; width: 14px; height: 14px; } .icon-deleteicon { - background-position: -237px -196px; + background-position: -237px -182px; width: 14px; height: 14px; } .icon-function { - background-position: -237px -210px; + background-position: -237px -196px; width: 14px; height: 14px; } .icon-group { - background-position: -221px -219px; + background-position: -237px -210px; width: 14px; height: 14px; } .icon-image_settings_icon { - background-position: 0px -234px; + background-position: -223px -219px; width: 14px; height: 14px; } .icon-searchicon { - background-position: -14px -234px; + background-position: 0px -234px; width: 14px; height: 14px; } .icon-shape_settings_icon { - background-position: -28px -234px; + background-position: -14px -234px; width: 14px; height: 14px; } .icon-ungroup { - background-position: -42px -234px; + background-position: -28px -234px; width: 14px; height: 14px; } .icon-alignobjectcenter { - background-position: -56px -234px; + background-position: -42px -234px; width: 13px; height: 14px; } .icon-copystyle { - background-position: -69px -234px; + background-position: -55px -234px; width: 12px; height: 14px; } .icon-gradientslider { - background-position: -81px -234px; + background-position: -67px -234px; width: 12px; height: 14px; } @@ -1099,157 +1099,157 @@ } .icon-clear { - background-position: -93px -234px; + background-position: -79px -234px; width: 26px; height: 13px; } .icon-outline { - background-position: -119px -234px; + background-position: -105px -234px; width: 25px; height: 13px; } .icon-bullets { - background-position: -144px -234px; + background-position: -130px -234px; width: 24px; height: 13px; } .icon-insertfunction { - background-position: -168px -234px; + background-position: -154px -234px; width: 24px; height: 13px; } .icon-orientation { - background-position: -192px -234px; + background-position: -178px -234px; width: 24px; height: 13px; } .icon-insertchart { - background-position: -216px -234px; + background-position: -202px -234px; width: 22px; height: 13px; } .icon-insert_dropcap_icon { - background-position: -254px 0px; + background-position: -224px -234px; width: 22px; height: 13px; } .icon-headerfooter { - background-position: -254px -13px; + background-position: -254px 0px; width: 21px; height: 13px; } .icon-insertcells { - background-position: -254px -26px; + background-position: -254px -13px; width: 21px; height: 13px; } .icon-pagesize { - background-position: -254px -39px; + background-position: -254px -26px; width: 20px; height: 13px; } .icon-cut { - background-position: -254px -52px; + background-position: -254px -39px; width: 16px; height: 13px; } .icon-removeduplicates { - background-position: -254px -65px; + background-position: -254px -52px; width: 16px; height: 13px; } .icon-text_autoshape { - background-position: -254px -78px; + background-position: -254px -65px; width: 16px; height: 13px; } .icon-changerange { - background-position: -254px -91px; + background-position: -254px -78px; width: 15px; height: 13px; } .icon-feedbackicon { - background-position: -254px -104px; + background-position: -254px -91px; width: 15px; height: 13px; } .icon-greencircle { - background-position: -254px -117px; + background-position: -254px -104px; width: 15px; height: 13px; } .icon-alignobjectmiddle { - background-position: -254px -130px; + background-position: -254px -117px; width: 14px; height: 13px; } .icon-clearstyle { - background-position: -254px -143px; + background-position: -254px -130px; width: 14px; height: 13px; } .icon-copy { - background-position: -254px -156px; + background-position: -254px -143px; width: 14px; height: 13px; } .icon-hyperlink { - background-position: -254px -169px; + background-position: -254px -156px; width: 14px; height: 13px; } .icon-multiselect { - background-position: -254px -182px; + background-position: -254px -169px; width: 14px; height: 13px; } .icon-paste { - background-position: -254px -195px; + background-position: -254px -182px; width: 14px; height: 13px; } .icon-select_all { - background-position: -254px -208px; + background-position: -254px -195px; width: 14px; height: 13px; } .icon-wraptext { - background-position: -254px -221px; + background-position: -254px -208px; width: 14px; height: 13px; } .icon-allborders { - background-position: -254px -234px; + background-position: -254px -221px; width: 13px; height: 13px; } .icon-bottomborders { - background-position: -238px -234px; + background-position: -254px -234px; width: 13px; height: 13px; } @@ -1501,241 +1501,241 @@ } .icon-merge { - background-position: -276px 0px; + background-position: -275px 0px; width: 24px; height: 11px; } .icon-subscripticon { - background-position: -276px -11px; + background-position: -275px -11px; width: 24px; height: 11px; } .icon-addborders { - background-position: -276px -22px; + background-position: -275px -22px; width: 22px; height: 11px; } .icon-deletecells { - background-position: -276px -33px; + background-position: -275px -33px; width: 21px; height: 11px; } .icon-linespacing { - background-position: -276px -44px; + background-position: -275px -44px; width: 21px; height: 11px; } .icon-nonprintingcharacters { - background-position: -276px -55px; + background-position: -275px -55px; width: 20px; height: 11px; } .icon-namedranges { - background-position: -276px -66px; + background-position: -275px -66px; width: 16px; height: 11px; } .icon-table_settings_icon { - background-position: -276px -77px; + background-position: -275px -77px; width: 16px; height: 11px; } .icon-viewsettingsicon { - background-position: -276px -88px; + background-position: -275px -88px; width: 16px; height: 11px; } .icon-sub { - background-position: -276px -99px; + background-position: -275px -99px; width: 13px; height: 11px; } .icon-aligncenter { - background-position: -276px -110px; + background-position: -275px -110px; width: 12px; height: 11px; } .icon-alignleft { - background-position: -288px -110px; + background-position: -287px -110px; width: 12px; height: 11px; } .icon-alignright { - background-position: -276px -121px; + background-position: -275px -121px; width: 12px; height: 11px; } .icon-borderstyle { - background-position: -288px -121px; + background-position: -287px -121px; width: 12px; height: 11px; } .icon-clearfilter { - background-position: -276px -132px; + background-position: -275px -132px; width: 12px; height: 11px; } .icon-decreasedec { - background-position: -288px -132px; + background-position: -287px -132px; width: 12px; height: 11px; } .icon-decreaseindent { - background-position: -276px -143px; + background-position: -275px -143px; width: 12px; height: 11px; } .icon-increasedec { - background-position: -288px -143px; + background-position: -287px -143px; width: 12px; height: 11px; } .icon-increaseindent { - background-position: -276px -154px; + background-position: -275px -154px; width: 12px; height: 11px; } .icon-justify { - background-position: -288px -154px; + background-position: -287px -154px; width: 12px; height: 11px; } .icon-resolvedicon { - background-position: -276px -165px; + background-position: -275px -165px; width: 12px; height: 11px; } .icon-resolveicon { - background-position: -288px -165px; + background-position: -287px -165px; width: 12px; height: 11px; } .icon-selecttable_cursor { - background-position: -276px -176px; + background-position: -275px -176px; width: 12px; height: 11px; } .icon-sortandfilter { - background-position: -288px -176px; + background-position: -287px -176px; width: 12px; height: 11px; } .icon-alignbottom { - background-position: -289px -99px; + background-position: -288px -99px; width: 11px; height: 11px; } .icon-aligntop { - background-position: -276px -187px; + background-position: -275px -187px; width: 11px; height: 11px; } .icon-diagonal_down_border { - background-position: -287px -187px; + background-position: -286px -187px; width: 11px; height: 11px; } .icon-diagonal_up_border { - background-position: -276px -198px; + background-position: -275px -198px; width: 11px; height: 11px; } .icon-sortatoz { - background-position: -287px -198px; + background-position: -286px -198px; width: 11px; height: 11px; } .icon-sortztoa { - background-position: -276px -209px; + background-position: -275px -209px; width: 11px; height: 11px; } .icon-percentstyle { - background-position: -287px -209px; + background-position: -286px -209px; width: 10px; height: 11px; } .icon-underline { - background-position: -276px -220px; + background-position: -275px -220px; width: 10px; height: 11px; } .icon-verticaltext { - background-position: -286px -220px; + background-position: -285px -220px; width: 10px; height: 11px; } .icon-zoomout { - background-position: -276px -231px; + background-position: -275px -231px; width: 10px; height: 11px; } .icon-rotatedown { - background-position: -286px -231px; + background-position: -285px -231px; width: 9px; height: 11px; } .icon-highlightcolor { - background-position: -276px -242px; + background-position: -275px -242px; width: 23px; height: 10px; } .icon-navigationicon { - background-position: -276px -252px; + background-position: -275px -252px; width: 13px; height: 10px; } .icon-strike { - background-position: -276px -262px; + background-position: -275px -262px; width: 12px; height: 10px; } .icon-smaller { - background-position: -289px -252px; + background-position: -288px -252px; width: 11px; height: 10px; } .icon-yellowdiamond { - background-position: -288px -262px; + background-position: -287px -262px; width: 11px; height: 10px; } @@ -1747,37 +1747,37 @@ } .icon-rotateup { - background-position: -267px -234px; + background-position: -80px -70px; width: 9px; height: 10px; } .icon-bold { - background-position: -292px -66px; + background-position: -291px -66px; width: 8px; height: 10px; } .icon-nextsheet { - background-position: -292px -77px; + background-position: -291px -77px; width: 8px; height: 10px; } .icon-previoussheet { - background-position: -292px -88px; + background-position: -291px -88px; width: 8px; height: 10px; } .icon-italic { - background-position: -269px -91px; + background-position: -268px -117px; width: 7px; height: 10px; } .icon-redo { - background-position: -180px -157px; + background-position: -180px -158px; width: 17px; height: 9px; } @@ -1795,19 +1795,19 @@ } .icon-horizontaltext { - background-position: -80px -70px; + background-position: -12px -274px; width: 10px; height: 9px; } .icon-cellrow { - background-position: -12px -274px; + background-position: -22px -274px; width: 9px; height: 9px; } .icon-resize_square { - background-position: -21px -274px; + background-position: -31px -274px; width: 9px; height: 9px; } @@ -1819,37 +1819,37 @@ } .icon-searchupbutton { - background-position: -30px -274px; + background-position: -40px -274px; width: 14px; height: 8px; } .icon-constantproportions { - background-position: -44px -274px; + background-position: -54px -274px; width: 13px; height: 8px; } .icon-tabstopcenter_marker { - background-position: -57px -274px; + background-position: -67px -274px; width: 12px; height: 8px; } .icon-soft { - background-position: -69px -274px; + background-position: -79px -274px; width: 10px; height: 8px; } .icon-tabstopleft_marker { - background-position: -268px -130px; + background-position: -267px -221px; width: 8px; height: 8px; } .icon-tabstopright_marker { - background-position: -268px -143px; + background-position: -267px -234px; width: 8px; height: 8px; } @@ -1861,19 +1861,19 @@ } .icon-undo1 { - background-position: -79px -274px; + background-position: -89px -274px; width: 13px; height: 6px; } .icon-nextpage { - background-position: -295px -231px; + background-position: -294px -231px; width: 5px; height: 6px; } .icon-previouspage { - background-position: -270px -52px; + background-position: -270px -39px; width: 5px; height: 6px; } @@ -1885,25 +1885,25 @@ } .icon-connectionpoint { - background-position: -295px -237px; + background-position: -294px -237px; width: 5px; height: 5px; } .icon-nonbreakspace { - background-position: -270px -58px; + background-position: -270px -45px; width: 5px; height: 5px; } .icon-square { - background-position: -270px -65px; + background-position: -270px -52px; width: 5px; height: 5px; } .icon-space { - background-position: -298px -22px; + background-position: -297px -22px; width: 2px; height: 3px; } diff --git a/apps/spreadsheeteditor/main/resources/help/images/src/icons/sortcommentsicon.png b/apps/spreadsheeteditor/main/resources/help/images/src/icons/sortcommentsicon.png index 9e3ff28fed..79b6028637 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/images/src/icons/sortcommentsicon.png and b/apps/spreadsheeteditor/main/resources/help/images/src/icons/sortcommentsicon.png differ diff --git a/apps/spreadsheeteditor/mobile/locale/ar.json b/apps/spreadsheeteditor/mobile/locale/ar.json index 733901a95a..a34e201214 100644 --- a/apps/spreadsheeteditor/mobile/locale/ar.json +++ b/apps/spreadsheeteditor/mobile/locale/ar.json @@ -697,6 +697,7 @@ "textEnableAllMacrosWithoutNotification": "فعّل كل وحدات الماكرو بدون اشعارات", "textEncoding": "ترميز", "textExample": "مثال", + "textExplanationChangeDirection": "سيتم إعادة تشغيل البرنامج لتنشيط واجهة RTL", "textFeedback": "الملاحظات و الدعم", "textFind": "بحث", "textFindAndReplace": "بحث و استبدال", @@ -738,6 +739,7 @@ "textRestartApplication": "برجاء إعادة تشغيل التطبيق حتى يتم تطبيق التغييرات", "textRight": "اليمين", "textRightToLeft": "من اليمين إلى اليسار", + "textRtlInterface": "الواجهة بالاتجاه من اليمين لليسار", "textSameAsSystem": "نفس النظام", "textSearch": "بحث", "textSearchBy": "بحث", diff --git a/apps/spreadsheeteditor/mobile/locale/az.json b/apps/spreadsheeteditor/mobile/locale/az.json index ba9a4a1db2..125f519a3a 100644 --- a/apps/spreadsheeteditor/mobile/locale/az.json +++ b/apps/spreadsheeteditor/mobile/locale/az.json @@ -822,8 +822,10 @@ "warnDownloadAs": "Bu formatda yadda saxlamağa davam etsəniz, mətndən başqa bütün funksiyalar itiriləcək.
    Davam etmək istədiyinizdən əminsiniz?", "textDark": "Dark", "textDarkTheme": "Dark Theme", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textLight": "Light", "textRestartApplication": "Please restart the application for the changes to take effect", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textTheme": "Theme" } diff --git a/apps/spreadsheeteditor/mobile/locale/be.json b/apps/spreadsheeteditor/mobile/locale/be.json index 2f7112e8eb..92555293ea 100644 --- a/apps/spreadsheeteditor/mobile/locale/be.json +++ b/apps/spreadsheeteditor/mobile/locale/be.json @@ -512,7 +512,7 @@ "textAxisTitle": "Axis Title", "textBottom": "Bottom", "textBottomBorder": "Bottom Border", - "textBringToForeground": "Bring to Foreground", + "textBringToForeground": "Bring to foreground", "textClearFilter": "Clear Filter", "textCreateCustomFormat": "Create Custom Format", "textCreateFormat": "Create Format", @@ -708,6 +708,7 @@ "textEmail": "Email", "textEnableAll": "Enable All", "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textFeedback": "Feedback & Support", "textFindAndReplaceAll": "Find and Replace All", "textFormat": "Format", @@ -745,6 +746,7 @@ "textRestartApplication": "Please restart the application for the changes to take effect", "textRight": "Right", "textRightToLeft": "Right To Left", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textSpreadsheetFormats": "Spreadsheet Formats", "textSpreadsheetInfo": "Spreadsheet Info", diff --git a/apps/spreadsheeteditor/mobile/locale/bg.json b/apps/spreadsheeteditor/mobile/locale/bg.json index c0b702b0be..cc0ad79311 100644 --- a/apps/spreadsheeteditor/mobile/locale/bg.json +++ b/apps/spreadsheeteditor/mobile/locale/bg.json @@ -95,7 +95,7 @@ "textBorderStyle": "Border Style", "textBottom": "Bottom", "textBottomBorder": "Bottom Border", - "textBringToForeground": "Bring to Foreground", + "textBringToForeground": "Bring to foreground", "textCancel": "Cancel", "textCell": "Cell", "textCellStyle": "Cell Style", @@ -300,6 +300,7 @@ "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", "textEncoding": "Encoding", "textExample": "Example", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textFeedback": "Feedback & Support", "textFind": "Find", "textFindAndReplace": "Find and Replace", @@ -341,6 +342,7 @@ "textRestartApplication": "Please restart the application for the changes to take effect", "textRight": "Right", "textRightToLeft": "Right To Left", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textSearch": "Search", "textSearchBy": "Search", diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index 9bc685f3d9..b73bf17dc6 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -823,7 +823,9 @@ "txtZh": "Xinès", "warnDownloadAs": "Si continues i deses en aquest format, es perdran totes les característiques, excepte el text.
    Vols continuar?", "textDark": "Dark", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textLight": "Light", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textTheme": "Theme" } diff --git a/apps/spreadsheeteditor/mobile/locale/cs.json b/apps/spreadsheeteditor/mobile/locale/cs.json index 90adaa664c..53c85e6bac 100644 --- a/apps/spreadsheeteditor/mobile/locale/cs.json +++ b/apps/spreadsheeteditor/mobile/locale/cs.json @@ -825,7 +825,9 @@ "txtUk": "ukrajinština", "txtVi": "vietnamština", "txtZh": "čínština", - "warnDownloadAs": "Pokud budete pokračovat v ukládání v tomto formátu, vše kromě textu bude ztraceno.
    Opravdu chcete pokračovat?" + "warnDownloadAs": "Pokud budete pokračovat v ukládání v tomto formátu, vše kromě textu bude ztraceno.
    Opravdu chcete pokračovat?", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", + "textRtlInterface": "RTL Interface" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/da.json b/apps/spreadsheeteditor/mobile/locale/da.json index 4b2e7076c0..fbbddf911f 100644 --- a/apps/spreadsheeteditor/mobile/locale/da.json +++ b/apps/spreadsheeteditor/mobile/locale/da.json @@ -798,6 +798,7 @@ "advDRMEnterPassword": "Your password, please:", "strFuncLocale": "Formula Language", "textDark": "Dark", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textFeedback": "Feedback & Support", "textLight": "Light", "textNoMatches": "No Matches", @@ -806,6 +807,7 @@ "textRestartApplication": "Please restart the application for the changes to take effect", "textRight": "Right", "textRightToLeft": "Right To Left", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textSpreadsheetFormats": "Spreadsheet Formats", "textSpreadsheetInfo": "Spreadsheet Info", diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index ad2ceff25f..a953706456 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -41,10 +41,10 @@ "textThemeColors": "Farben des Themas" }, "Themes": { - "textTheme": "Thema", - "dark": "Dark", - "light": "Light", - "system": "Same as system" + "dark": "Dunkel", + "light": "Hell", + "system": "Wie im System", + "textTheme": "Thema" }, "VersionHistory": { "notcriticalErrorTitle": "Warnung", @@ -66,6 +66,7 @@ "errorInvalidLink": "Der Linkverweis ist nicht vorhanden. Bitte korrigieren oder löschen Sie den Link.", "menuAddComment": "Kommentar hinzufügen", "menuAddLink": "Link hinzufügen", + "menuAutofill": "Automatisches Ausfüllen", "menuCancel": "Abbrechen", "menuCell": "Zelle", "menuDelete": "Löschen", @@ -87,8 +88,7 @@ "textDoNotShowAgain": "Nicht mehr anzeigen", "textOk": "OK", "txtWarnUrl": "Dieser Link kann für Ihr Gerät und Daten gefährlich sein.
    Möchten Sie wirklich fortsetzen?", - "warnMergeLostData": "Nur die Daten aus der oberen linken Zelle bleiben nach der Vereinigung.
    Möchten Sie wirklich fortsetzen?", - "menuAutofill": "Autofill" + "warnMergeLostData": "Nur die Daten aus der oberen linken Zelle bleiben nach der Vereinigung.
    Möchten Sie wirklich fortsetzen?" }, "Controller": { "Main": { @@ -682,6 +682,7 @@ "textComments": "Kommentare", "textCreated": "Erstellt", "textCustomSize": "Benutzerdefinierte Größe", + "textDark": "Dunkel", "textDarkTheme": "Dunkelmodus", "textDelimeter": "Trennzeichen", "textDirection": "Richtung", @@ -696,6 +697,7 @@ "textEnableAllMacrosWithoutNotification": "Alle Makros ohne Benachrichtigung aktivieren", "textEncoding": "Codierung ", "textExample": "Beispiel", + "textExplanationChangeDirection": "Die Anwendung wird für die Aktivierung der RTL-Schnittstelle neu gestartet", "textFeedback": "Feedback und Support", "textFind": "Suche", "textFindAndReplace": "Suchen und ersetzen", @@ -713,6 +715,7 @@ "textLastModifiedBy": "Zuletzt geändert von", "textLeft": "Links", "textLeftToRight": "Links nach rechts", + "textLight": "Hell", "textLocation": "Standort", "textLookIn": "Suchen in", "textMacrosSettings": "Einstellungen von Makros", @@ -736,6 +739,8 @@ "textRestartApplication": "Bitte starten Sie die Anwendung neu, damit die Änderungen wirksam werden", "textRight": "Rechts", "textRightToLeft": "Von rechts nach links", + "textRtlInterface": "RTL-Schnittstelle", + "textSameAsSystem": "Wie im System", "textSearch": "Suche", "textSearchBy": "Suche", "textSearchIn": "Suchen in", @@ -822,10 +827,7 @@ "txtUk": "Ukrainisch", "txtVi": "Vietnamesisch", "txtZh": "Chinesisch ", - "warnDownloadAs": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.
    Möchten Sie wirklich fortsetzen?", - "textDark": "Dark", - "textLight": "Light", - "textSameAsSystem": "Same As System" + "warnDownloadAs": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.
    Möchten Sie wirklich fortsetzen?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/el.json b/apps/spreadsheeteditor/mobile/locale/el.json index c28a199dbd..01a6ccdb0b 100644 --- a/apps/spreadsheeteditor/mobile/locale/el.json +++ b/apps/spreadsheeteditor/mobile/locale/el.json @@ -162,7 +162,7 @@ "txtYears": "Έτη" }, "textAnonymous": "Ανώνυμος", - "textBuyNow": "Επισκεφθείτε την ιστοσελίδα", + "textBuyNow": "Επισκεφθείτε τον ιστότοπο", "textClose": "Κλείσιμο", "textContactUs": "Επικοινωνήστε με το τμήμα πωλήσεων", "textCustomLoader": "Λυπούμαστε, δεν επιτρέπεται να τροποποιήσετε τον φορτωτή. Παρακαλούμε, επικοινωνήστε με το τμήμα πωλήσεων για προσφορά.", @@ -489,7 +489,7 @@ "textBorderStyle": "Τεχνοτροπία περιγράμματος", "textBottom": "Κάτω", "textBottomBorder": "Κάτω περίγραμμα", - "textBringToForeground": "Μεταφορά στο Προσκήνιο", + "textBringToForeground": "Μεταφορά στο προσκήνιο", "textCancel": "Άκυρο", "textCell": "Κελί", "textCellStyle": "Τεχνοτροπία κελιού", @@ -697,6 +697,7 @@ "textEnableAllMacrosWithoutNotification": "Ενεργοποίηση όλων των μακροεντολών χωρίς ειδοποίηση", "textEncoding": "Κωδικοποίηση", "textExample": "Παράδειγμα", + "textExplanationChangeDirection": "Η εφαρμογή θα επανεκκινηθεί για ενεργοποίηση διεπαφής RTL", "textFeedback": "Ανατροφοδότηση & Υποστήριξη", "textFind": "Εύρεση", "textFindAndReplace": "Εύρεση και Αντικατάσταση", @@ -738,6 +739,7 @@ "textRestartApplication": "Παρακαλούμε επανεκκινήστε την εφαρμογή για να εφαρμοστούν οι αλλαγές", "textRight": "Δεξιά", "textRightToLeft": "Δεξιά Προς Αριστερά", + "textRtlInterface": "Διεπαφή RTL", "textSameAsSystem": "Ίδιο με το σύστημα", "textSearch": "Αναζήτηση", "textSearchBy": "Αναζήτηση", diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index 1a01cca57a..441ec98efb 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -489,7 +489,7 @@ "textBorderStyle": "Border Style", "textBottom": "Bottom", "textBottomBorder": "Bottom Border", - "textBringToForeground": "Bring to Foreground", + "textBringToForeground": "Bring to foreground", "textCancel": "Cancel", "textCell": "Cell", "textCellStyle": "Cell Style", @@ -665,8 +665,6 @@ "textAddress": "Address", "textApplication": "Application", "textApplicationSettings": "Application Settings", - "textRtlInterface": "RTL Interface", - "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textAuthor": "Author", "textBack": "Back", "textBottom": "Bottom", @@ -699,6 +697,7 @@ "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", "textEncoding": "Encoding", "textExample": "Example", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textFeedback": "Feedback & Support", "textFind": "Find", "textFindAndReplace": "Find and Replace", @@ -740,6 +739,7 @@ "textRestartApplication": "Please restart the application for the changes to take effect", "textRight": "Right", "textRightToLeft": "Right To Left", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textSearch": "Search", "textSearchBy": "Search", diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index 36b133499e..eccf351bd0 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -697,6 +697,7 @@ "textEnableAllMacrosWithoutNotification": "Habilitar todas las macros sin notificación ", "textEncoding": "Codificación", "textExample": "Ejemplo", + "textExplanationChangeDirection": "La aplicación se reiniciará para que se active la interfaz RTL", "textFeedback": "Comentarios y asistencia", "textFind": "Buscar", "textFindAndReplace": "Buscar y reemplazar", @@ -825,7 +826,8 @@ "txtUk": "Ucraniano", "txtVi": "Vietnamita", "txtZh": "Chino", - "warnDownloadAs": "Si sigue guardando en este formato, todas las características a excepción del texto se perderán.
    ¿Está seguro de que desea continuar?" + "warnDownloadAs": "Si sigue guardando en este formato, todas las características a excepción del texto se perderán.
    ¿Está seguro de que desea continuar?", + "textRtlInterface": "RTL Interface" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/eu.json b/apps/spreadsheeteditor/mobile/locale/eu.json index 0992e61e86..4d02e59cec 100644 --- a/apps/spreadsheeteditor/mobile/locale/eu.json +++ b/apps/spreadsheeteditor/mobile/locale/eu.json @@ -825,7 +825,9 @@ "txtUk": "Ukrainera", "txtVi": "Vietnamera", "txtZh": "Txinera", - "warnDownloadAs": "Formatu honetan gordetzen baduzu, testua ez diren ezaugarri guztiak galduko dira.
    Ziur zaude aurrera jarraitu nahi duzula?" + "warnDownloadAs": "Formatu honetan gordetzen baduzu, testua ez diren ezaugarri guztiak galduko dira.
    Ziur zaude aurrera jarraitu nahi duzula?", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", + "textRtlInterface": "RTL Interface" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index 5cda431ff8..3d6b5c813a 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -697,6 +697,7 @@ "textEnableAllMacrosWithoutNotification": "Activer toutes les macros sans notification", "textEncoding": "Encodage", "textExample": "Exemple", + "textExplanationChangeDirection": "L'application sera redémarrée pour activer l'interface RTL", "textFeedback": "Commentaires & assistance", "textFind": "Recherche", "textFindAndReplace": "Rechercher et remplacer", @@ -738,6 +739,7 @@ "textRestartApplication": "Veuillez redémarrer l'application pour que les modifications soient prises en compte", "textRight": "À droite", "textRightToLeft": "De droite à gauche", + "textRtlInterface": "Interface RTL", "textSameAsSystem": "Identique au système", "textSearch": "Rechercher", "textSearchBy": "Rechercher", diff --git a/apps/spreadsheeteditor/mobile/locale/gl.json b/apps/spreadsheeteditor/mobile/locale/gl.json index 7bbd265bc3..e6568fc26f 100644 --- a/apps/spreadsheeteditor/mobile/locale/gl.json +++ b/apps/spreadsheeteditor/mobile/locale/gl.json @@ -823,7 +823,9 @@ "txtZh": "Chinés", "warnDownloadAs": "Se segue gardando neste formato, todas as características a excepción do texto perderanse.
    Te na certeza de que desexa continuar?", "textDark": "Dark", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textLight": "Light", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textTheme": "Theme" } diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json index 3fa2d55fdd..407fdfac56 100644 --- a/apps/spreadsheeteditor/mobile/locale/hu.json +++ b/apps/spreadsheeteditor/mobile/locale/hu.json @@ -823,7 +823,9 @@ "txtZh": "Kínai", "warnDownloadAs": "Ha ebbe a formátumba ment, a nyers szövegen kívül minden elveszik.
    Biztos benne, hogy folytatni akarja?", "textDark": "Dark", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textLight": "Light", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textTheme": "Theme" } diff --git a/apps/spreadsheeteditor/mobile/locale/hy.json b/apps/spreadsheeteditor/mobile/locale/hy.json index fe84d6bcb5..29dc42ba9c 100644 --- a/apps/spreadsheeteditor/mobile/locale/hy.json +++ b/apps/spreadsheeteditor/mobile/locale/hy.json @@ -825,7 +825,9 @@ "txtUk": "ուկրաիներեն", "txtVi": "Վիետնամերեն", "txtZh": "Չինական", - "warnDownloadAs": "Եթե շարունակեք պահպանումն այս ձևաչափով, բոլոր հատկությունները՝ տեքստից բացի, կկորչեն։
    Վստա՞հ եք, որ ցանկանում եք շարունակել:" + "warnDownloadAs": "Եթե շարունակեք պահպանումն այս ձևաչափով, բոլոր հատկությունները՝ տեքստից բացի, կկորչեն։
    Վստա՞հ եք, որ ցանկանում եք շարունակել:", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", + "textRtlInterface": "RTL Interface" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/id.json b/apps/spreadsheeteditor/mobile/locale/id.json index adec3792fa..a2162ffd81 100644 --- a/apps/spreadsheeteditor/mobile/locale/id.json +++ b/apps/spreadsheeteditor/mobile/locale/id.json @@ -823,7 +823,9 @@ "txtZh": "China", "warnDownloadAs": "Jika Anda lanjut simpan dengan format ini, semua fitur kecuali teks akan hilang.
    Apakah Anda ingin melanjutkan?", "textDark": "Dark", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textLight": "Light", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textTheme": "Theme" } diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index 675f1f622f..37a566c125 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -820,8 +820,10 @@ "strFuncLocale": "Formula Language", "strFuncLocaleEx": "Example: SUM; MIN; MAX; COUNT", "textDark": "Dark", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textLight": "Light", "textNoMatches": "No Matches", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textTheme": "Theme", "textVersionHistory": "Version History", diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index 20af8691b5..91e6cea186 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -697,6 +697,7 @@ "textEnableAllMacrosWithoutNotification": "警告を表示してないすべてのマクロを有効にする", "textEncoding": "エンコード", "textExample": "例文", + "textExplanationChangeDirection": "RTLインターフェースのアクティベーションのため、アプリケーションが再起動されます。", "textFeedback": "フィードバック&サポート", "textFind": "検索する", "textFindAndReplace": "検索と置換", @@ -738,6 +739,7 @@ "textRestartApplication": "変更を有効にするには、アプリケーションを再起動してください", "textRight": "右", "textRightToLeft": "右から左に", + "textRtlInterface": "RTLインターフェース", "textSameAsSystem": "システム設定と同じ", "textSearch": "検索", "textSearchBy": "検索", diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json index 29c3bc151e..0b75434879 100644 --- a/apps/spreadsheeteditor/mobile/locale/ko.json +++ b/apps/spreadsheeteditor/mobile/locale/ko.json @@ -823,7 +823,9 @@ "txtZh": "중국어", "warnDownloadAs": "이 형식으로 저장을 계속하면 텍스트를 제외한 모든 기능이 손실됩니다. 계속 하시겠습니까?", "textDark": "Dark", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textLight": "Light", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textTheme": "Theme" } diff --git a/apps/spreadsheeteditor/mobile/locale/lo.json b/apps/spreadsheeteditor/mobile/locale/lo.json index 90cc02513c..6af97d2677 100644 --- a/apps/spreadsheeteditor/mobile/locale/lo.json +++ b/apps/spreadsheeteditor/mobile/locale/lo.json @@ -818,10 +818,12 @@ "warnDownloadAs": "ຖ້າທ່ານສືບຕໍ່ບັນທຶກໃນຮູບແບບນີ້ທຸກລັກສະນະ ຍົກເວັ້ນຂໍ້ຄວາມຈະຫາຍໄປ.
    ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການດໍາເນີນຕໍ່?", "strFuncLocaleEx": "Example: SUM; MIN; MAX; COUNT", "textDark": "Dark", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textFeedback": "Feedback & Support", "textLight": "Light", "textNoMatches": "No Matches", "textRestartApplication": "Please restart the application for the changes to take effect", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textTheme": "Theme", "textVersionHistory": "Version History", diff --git a/apps/spreadsheeteditor/mobile/locale/lv.json b/apps/spreadsheeteditor/mobile/locale/lv.json index 4c8858af8d..ec10f7ae46 100644 --- a/apps/spreadsheeteditor/mobile/locale/lv.json +++ b/apps/spreadsheeteditor/mobile/locale/lv.json @@ -822,7 +822,9 @@ "txtZh": "Ķīniešu", "warnDownloadAs": "Ja jūs izvēlēsieties turpināt saglabāt šajā formātā visas diagrammas un attēli tiks zaudēti.
    Vai tiešām vēlaties turpināt?", "textDark": "Dark", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textLight": "Light", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textTheme": "Theme", "txtDe": "German" diff --git a/apps/spreadsheeteditor/mobile/locale/ms.json b/apps/spreadsheeteditor/mobile/locale/ms.json index 3e74f76a94..ead62c89a8 100644 --- a/apps/spreadsheeteditor/mobile/locale/ms.json +++ b/apps/spreadsheeteditor/mobile/locale/ms.json @@ -789,8 +789,10 @@ "strFuncLocale": "Formula Language", "strFuncLocaleEx": "Example: SUM; MIN; MAX; COUNT", "textDark": "Dark", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textLight": "Light", "textNoMatches": "No Matches", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textTheme": "Theme", "textVersionHistory": "Version History", diff --git a/apps/spreadsheeteditor/mobile/locale/nl.json b/apps/spreadsheeteditor/mobile/locale/nl.json index 93bb66b73c..7dda699de7 100644 --- a/apps/spreadsheeteditor/mobile/locale/nl.json +++ b/apps/spreadsheeteditor/mobile/locale/nl.json @@ -817,11 +817,13 @@ "warnDownloadAs": "Als u doorgaat met opslaan in dit formaat, gaat alle opmaak verloren en blijft alleen de tekst behouden.
    Wilt u doorgaan?", "textDark": "Dark", "textDirection": "Direction", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textFeedback": "Feedback & Support", "textLight": "Light", "textNoMatches": "No Matches", "textRestartApplication": "Please restart the application for the changes to take effect", "textRightToLeft": "Right To Left", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textTheme": "Theme", "textVersionHistory": "Version History", diff --git a/apps/spreadsheeteditor/mobile/locale/pl.json b/apps/spreadsheeteditor/mobile/locale/pl.json index c4950cb4e5..f24dde06d3 100644 --- a/apps/spreadsheeteditor/mobile/locale/pl.json +++ b/apps/spreadsheeteditor/mobile/locale/pl.json @@ -487,7 +487,7 @@ "textAxisPosition": "Axis Position", "textAxisTitle": "Axis Title", "textBetweenTickMarks": "Between Tick Marks", - "textBringToForeground": "Bring to Foreground", + "textBringToForeground": "Bring to foreground", "textCell": "Cell", "textCellStyle": "Cell Style", "textCenter": "Center", @@ -692,6 +692,7 @@ "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", "textEncoding": "Encoding", "textExample": "Example", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textFeedback": "Feedback & Support", "textFind": "Find", "textFindAndReplace": "Find and Replace", @@ -732,6 +733,7 @@ "textRestartApplication": "Please restart the application for the changes to take effect", "textRight": "Right", "textRightToLeft": "Right To Left", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textSearch": "Search", "textSearchBy": "Search", diff --git a/apps/spreadsheeteditor/mobile/locale/pt-pt.json b/apps/spreadsheeteditor/mobile/locale/pt-pt.json index b263341b5f..b1a555d03c 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt-pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt-pt.json @@ -825,6 +825,8 @@ "txtVi": "Vietnamita", "txtZh": "Chinês", "warnDownloadAs": "Se guardar o documento neste formato, perderá todos os atributos com exceção do texto.
    Tem a certeza de que deseja continuar?", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System" } } diff --git a/apps/spreadsheeteditor/mobile/locale/pt.json b/apps/spreadsheeteditor/mobile/locale/pt.json index 43c4c58007..3667e5bcb6 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt.json @@ -102,9 +102,9 @@ "notcriticalErrorTitle": "Aviso", "SDK": { "txtAccent": "Acento", - "txtAll": "(Todos)", + "txtAll": "(Tudo)", "txtArt": "Seu texto aqui", - "txtBlank": "Em branco", + "txtBlank": "(vazio)", "txtByField": "%1 de %2", "txtClearFilter": "Limpar Filtro", "txtColLbls": "Rótulos da coluna", @@ -178,7 +178,7 @@ "textRemember": "Lembrar minha escolha", "textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.", "textReplaceSuccess": "A pesquisa foi realizada. Ocorrências substituídas: {0}", - "textRequestMacros": "Uma macro faz uma solicitação para URL. Deseja permitir a solicitação para %1?", + "textRequestMacros": "Uma macro faz uma solicitação ao URL. Você deseja permitir o acesso para o %1?", "textUpdate": "Atualizar", "textWarnUpdateExternalData": "Esta pasta de trabalho contém links para uma ou mais fontes externas que podem não ser seguras. Se você confia nos links, atualize-os para obter os dados mais recentes.", "textYes": "Sim", @@ -377,7 +377,7 @@ "textMore": "Mais", "textMove": "Mover", "textMoveBefore": "Mover antes da folha", - "textMoveToEnd": "(Mover para fim)", + "textMoveToEnd": "(Mover para o final)", "textOk": "OK", "textRename": "Renomear", "textRenameSheet": "Renomear Folha", @@ -544,9 +544,9 @@ "textHorizontal": "Horizontal", "textHorizontalAxis": "Eixo horizontal", "textHorizontalText": "Texto horizontal", - "textHundredMil": "100.000.000 ", + "textHundredMil": "100 000 000 ", "textHundreds": "Centenas", - "textHundredThousands": "100.000 ", + "textHundredThousands": "100 000 ", "textHyperlink": "Hiperlink", "textImage": "Imagem", "textImageURL": "URL da imagem", @@ -626,8 +626,8 @@ "textSheet": "Folha", "textSize": "Tamanho", "textStyle": "Estilo", - "textTenMillions": "10.000.000 ", - "textTenThousands": "10.000 ", + "textTenMillions": "10 000 000 ", + "textTenThousands": "10 000 ", "textText": "Тexto", "textTextColor": "Cor do texto", "textTextFormat": "Formatação do texto", @@ -697,6 +697,7 @@ "textEnableAllMacrosWithoutNotification": "Habilitar todas as macros sem uma notificação", "textEncoding": "Codificação", "textExample": "Exemplo", + "textExplanationChangeDirection": "O aplicativo será reiniciado para ativação da interface RTL", "textFeedback": "Feedback e Suporte", "textFind": "Localizar", "textFindAndReplace": "Localizar e substituir", @@ -738,6 +739,7 @@ "textRestartApplication": "Reinicie o aplicativo para que as alterações entrem em vigor", "textRight": "Direita", "textRightToLeft": "Da direita para a esquerda", + "textRtlInterface": "Interface RTL", "textSameAsSystem": "O mesmo que sistema", "textSearch": "Pesquisar", "textSearchBy": "Pesquisar", diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index 6b2742b0f4..43c1391e65 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -697,6 +697,7 @@ "textEnableAllMacrosWithoutNotification": "Se activează toate macrocomenzile, fără notificare", "textEncoding": "Codificare", "textExample": "Exemplu", + "textExplanationChangeDirection": "Aplicația va fi repornită pentru a activa interfața care acceptă limbile cu scriere de la dreapta la stânga", "textFeedback": "Feedback și asistența", "textFind": "Găsire", "textFindAndReplace": "Găsire și înlocuire", @@ -738,6 +739,7 @@ "textRestartApplication": "Vă rugăm să reporniți aplicația pentru ca modificările să intre în vigoare", "textRight": "Dreapta", "textRightToLeft": "De la dreapta la stânga", + "textRtlInterface": "Interfața care acceptă limbile cu scriere de la dreapta la stânga", "textSameAsSystem": "La fel ca sistemul", "textSearch": "Căutare", "textSearchBy": "Căutare", diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index 9311de8884..970c0bd94e 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -697,6 +697,7 @@ "textEnableAllMacrosWithoutNotification": "Включить все макросы без уведомления", "textEncoding": "Кодировка", "textExample": "Пример", + "textExplanationChangeDirection": "Приложение будет перезапущено для активации RTL-интерфейса", "textFeedback": "Обратная связь и поддержка", "textFind": "Поиск", "textFindAndReplace": "Поиск и замена", @@ -738,6 +739,7 @@ "textRestartApplication": "Перезапустите приложение, чтобы изменения вступили в силу.", "textRight": "Справа", "textRightToLeft": "Справа налево", + "textRtlInterface": "RTL-интерфейс", "textSameAsSystem": "Системная", "textSearch": "Поиск", "textSearchBy": "Поиск", diff --git a/apps/spreadsheeteditor/mobile/locale/si.json b/apps/spreadsheeteditor/mobile/locale/si.json index 741436444a..51c5760156 100644 --- a/apps/spreadsheeteditor/mobile/locale/si.json +++ b/apps/spreadsheeteditor/mobile/locale/si.json @@ -697,6 +697,7 @@ "textEnableAllMacrosWithoutNotification": "දැනුම්දීමකින් තොරව සියළු සාර්ව සබල කරන්න", "textEncoding": "ආකේතනය", "textExample": "උදාහරණය", + "textExplanationChangeDirection": "RTL අතුරුමුහුණත සක්‍රියනය සඳහා යෙදුම නැවත ආරම්භ කෙරේ", "textFeedback": "ප්‍රතිපෝෂණය සහ සහාය", "textFind": "හොයන්න", "textFindAndReplace": "සොයා ප්‍රතිස්ථාපනය", @@ -738,6 +739,7 @@ "textRestartApplication": "වෙනස්කම් යෙදීමට කරුණාකර යෙදුම නැවත අරඹන්න", "textRight": "දකුණ", "textRightToLeft": "දකුණෙන් වමට", + "textRtlInterface": "RTL අතුරුමුහුණත", "textSameAsSystem": "පද්ධතියේ ලෙසම", "textSearch": "සොයන්න", "textSearchBy": "සොයන්න", diff --git a/apps/spreadsheeteditor/mobile/locale/sk.json b/apps/spreadsheeteditor/mobile/locale/sk.json index 38fea0b9cc..25903ca35b 100644 --- a/apps/spreadsheeteditor/mobile/locale/sk.json +++ b/apps/spreadsheeteditor/mobile/locale/sk.json @@ -818,10 +818,12 @@ "txtZh": "Čínsky", "warnDownloadAs": "Ak budete pokračovať v ukladaní v tomto formáte, všetky funkcie okrem textu sa stratia.
    Ste si istý, že chcete pokračovať?", "textDark": "Dark", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textFeedback": "Feedback & Support", "textLight": "Light", "textNoMatches": "No Matches", "textRestartApplication": "Please restart the application for the changes to take effect", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textTheme": "Theme", "textVersionHistory": "Version History", diff --git a/apps/spreadsheeteditor/mobile/locale/sl.json b/apps/spreadsheeteditor/mobile/locale/sl.json index 35f7e9c3c8..f3487a17d9 100644 --- a/apps/spreadsheeteditor/mobile/locale/sl.json +++ b/apps/spreadsheeteditor/mobile/locale/sl.json @@ -243,7 +243,7 @@ "textBorderStyle": "Border Style", "textBottom": "Bottom", "textBottomBorder": "Bottom Border", - "textBringToForeground": "Bring to Foreground", + "textBringToForeground": "Bring to foreground", "textCancel": "Cancel", "textCell": "Cell", "textCellStyle": "Cell Style", @@ -443,6 +443,7 @@ "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", "textEncoding": "Encoding", "textExample": "Example", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textFeedback": "Feedback & Support", "textFind": "Find", "textFindAndReplace": "Find and Replace", @@ -484,6 +485,7 @@ "textRestartApplication": "Please restart the application for the changes to take effect", "textRight": "Right", "textRightToLeft": "Right To Left", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textSearch": "Search", "textSearchBy": "Search", diff --git a/apps/spreadsheeteditor/mobile/locale/sr.json b/apps/spreadsheeteditor/mobile/locale/sr.json index 01cc6441b6..cea252e238 100644 --- a/apps/spreadsheeteditor/mobile/locale/sr.json +++ b/apps/spreadsheeteditor/mobile/locale/sr.json @@ -825,7 +825,9 @@ "txtUk": "Ukrajinski", "txtVi": "Vijetnamski", "txtZh": "Kineski", - "warnDownloadAs": "Ako nastavite da čuvate u ovom formatu sve karakteristike osim teksta će biti izgubljene.
    Da li ste sigurni da želite da nastavite?" + "warnDownloadAs": "Ako nastavite da čuvate u ovom formatu sve karakteristike osim teksta će biti izgubljene.
    Da li ste sigurni da želite da nastavite?", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", + "textRtlInterface": "RTL Interface" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/tr.json b/apps/spreadsheeteditor/mobile/locale/tr.json index 270931ba6e..7101c91588 100644 --- a/apps/spreadsheeteditor/mobile/locale/tr.json +++ b/apps/spreadsheeteditor/mobile/locale/tr.json @@ -819,9 +819,11 @@ "warnDownloadAs": "Bu formatta kaydetmeye devam ederseniz, metin dışındaki tüm özellikler kaybolacak.
    Devam etmek istediğinize emin misiniz?", "textDark": "Dark", "textDirection": "Direction", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textLight": "Light", "textNoMatches": "No Matches", "textRestartApplication": "Please restart the application for the changes to take effect", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textTheme": "Theme", "textVersionHistory": "Version History", diff --git a/apps/spreadsheeteditor/mobile/locale/uk.json b/apps/spreadsheeteditor/mobile/locale/uk.json index f637d0d3e6..6172373da1 100644 --- a/apps/spreadsheeteditor/mobile/locale/uk.json +++ b/apps/spreadsheeteditor/mobile/locale/uk.json @@ -148,7 +148,7 @@ "textBetweenTickMarks": "Between Tick Marks", "textBillions": "Billions", "textBottom": "Bottom", - "textBringToForeground": "Bring to Foreground", + "textBringToForeground": "Bring to foreground", "textCancel": "Cancel", "textCell": "Cell", "textCellStyle": "Cell Style", @@ -408,6 +408,7 @@ "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", "textEncoding": "Encoding", "textExample": "Example", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textFeedback": "Feedback & Support", "textFind": "Find", "textFindAndReplace": "Find and Replace", @@ -449,6 +450,7 @@ "textRestartApplication": "Please restart the application for the changes to take effect", "textRight": "Right", "textRightToLeft": "Right To Left", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textSearch": "Search", "textSearchBy": "Search", diff --git a/apps/spreadsheeteditor/mobile/locale/vi.json b/apps/spreadsheeteditor/mobile/locale/vi.json index 3c055f4e26..b5d681906a 100644 --- a/apps/spreadsheeteditor/mobile/locale/vi.json +++ b/apps/spreadsheeteditor/mobile/locale/vi.json @@ -835,7 +835,9 @@ "textDark": "Dark", "textLight": "Light", "textTheme": "Theme", - "textSameAsSystem": "Same As System" + "textSameAsSystem": "Same As System", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", + "textRtlInterface": "RTL Interface" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/zh-tw.json b/apps/spreadsheeteditor/mobile/locale/zh-tw.json index 3d37ea2b56..53aafb3b72 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh-tw.json +++ b/apps/spreadsheeteditor/mobile/locale/zh-tw.json @@ -24,21 +24,21 @@ "textEdit": "編輯", "textEditComment": "編輯評論", "textEditReply": "編輯回覆", - "textEditUser": "正在編輯文件的用戶:", + "textEditUser": "正在編輯文件的使用者:", "textMessageDeleteComment": "確定要刪除評論嗎?", "textMessageDeleteReply": "確定要刪除回覆嗎?", "textNoComments": "沒評論", "textOk": "好", - "textReopen": "重開", + "textReopen": "重新開啟", "textResolve": "解決", - "textSharingSettings": "分享設定", - "textTryUndoRedo": "在快速共同編輯模式下,撤消/重做功能被禁用。", + "textSharingSettings": "共用設定", + "textTryUndoRedo": "在快速共同編輯模式下,復原/重做功能被禁用。", "textUsers": "使用者" }, "ThemeColorPalette": { "textCustomColors": "自訂顏色", "textStandartColors": "標準顏色", - "textThemeColors": "主題顏色" + "textThemeColors": "主題色彩" }, "Themes": { "dark": "Dark", @@ -63,7 +63,7 @@ }, "ContextMenu": { "errorCopyCutPaste": "使用右鍵選單動作的複製、剪下和貼上的動作將只在目前的檔案中執行。", - "errorInvalidLink": "連結引用不存在。請更正連結或將其刪除。", + "errorInvalidLink": "引用的連結不存在。請更正連結或將其刪除。", "menuAddComment": "新增註解", "menuAddLink": "新增連結", "menuCancel": "取消", @@ -79,9 +79,9 @@ "menuShow": "顯示", "menuUnfreezePanes": "取消凍結窗格", "menuUnmerge": "取消合併", - "menuUnwrap": "攤開", - "menuViewComment": "查看評論", - "menuWrap": "包覆", + "menuUnwrap": "取消自動換行", + "menuViewComment": "查看註解", + "menuWrap": "換行", "notcriticalErrorTitle": "警告", "textCopyCutPasteActions": "複製, 剪下, 與貼上之動作", "textDoNotShowAgain": "不再顯示", @@ -93,17 +93,17 @@ "Controller": { "Main": { "criticalErrorTitle": "錯誤", - "errorAccessDeny": "您正在嘗試執行您無權執行的動作。
    請聯繫您的管理員。", - "errorOpensource": "在使用免費社群版本時,您只能瀏覽開啟的文件。欲使用移動版本的編輯功能,您需要付費的憑證。", - "errorProcessSaveResult": "保存失敗。", - "errorServerVersion": "編輯器版本已更新。該頁面將被重新加載以應用更改。", - "errorUpdateVersion": "文件版本已更改。該頁面將重新加載。", - "leavePageText": "您在此文件中有未儲存的變更。點擊\"留在此頁面\"以等待自動儲存。點擊\"離開此頁面\"以放棄所有未儲存的變更。", + "errorAccessDeny": "您正在嘗試執行一個無權限的操作。
    請聯絡系統管理員。", + "errorOpensource": "目前版本只能以檢視模式打開文件。若要使用行動網頁編輯器,需要額外授權。", + "errorProcessSaveResult": "儲存失敗", + "errorServerVersion": "編輯器版本已更新。將重新載入頁面以更新改動。", + "errorUpdateVersion": "文件版本已更改。將重新載入頁面。", + "leavePageText": "您在此文件中有未儲存的變更。點擊\"留在此頁面\"等待自動儲存,或點擊\"離開此頁面\"放棄所有未儲存的變更。", "notcriticalErrorTitle": "警告", "SDK": { "txtAccent": "強調", "txtAll": "(所有)", - "txtArt": "在這輸入文字", + "txtArt": "在此輸入文字", "txtBlank": "(空白)", "txtByField": "第%1個,共%2個", "txtClearFilter": "清除過濾器(Alt + C)", @@ -159,28 +159,28 @@ "txtValues": "值", "txtXAxis": "X軸", "txtYAxis": "Y軸", - "txtYears": "年" + "txtYears": "年份" }, "textAnonymous": "匿名", - "textBuyNow": "訪問網站", + "textBuyNow": "瀏覽網站", "textClose": "關閉", "textContactUs": "聯絡銷售人員", - "textCustomLoader": "很抱歉,您無權變更載入程序。 請聯繫我們的業務部門取得報價。", + "textCustomLoader": "很抱歉,您無權更改載入程式。", "textDontUpdate": "不要升級", "textGuest": "訪客", "textHasMacros": "此檔案包含自動巨集程式。
    是否要執行這些巨集?", "textNo": "否", - "textNoChoices": "無法選擇要填充儲存格的內容。
    只能選擇列中的文本值進行替換。", + "textNoChoices": "在填充單元格的選擇中沒有項目。
    只能從列中選擇文字進行替換。", "textNoLicenseTitle": "達到許可限制", "textNoMatches": "無匹配", "textOk": "好", "textPaidFeature": "付費功能", "textRemember": "記住我的選擇", - "textReplaceSkipped": "替換已完成。 {0}個事件被跳過。", - "textReplaceSuccess": "搜索已完成。發生的事件已替換:{0}", + "textReplaceSkipped": "替換已完成。有 {0} 個項目被跳過。", + "textReplaceSuccess": "已完成搜尋。已替換的次數:{0}。", "textRequestMacros": "有一個巨集指令要求連結至URL。是否允許該要求至%1?", - "textUpdate": "升級", - "textWarnUpdateExternalData": "此工作表包含一個或多個可能不安全的外部源連結。如果您信任這些連結,請更新它們以得到最新數據。", + "textUpdate": "更新", + "textWarnUpdateExternalData": "此活頁簿包含對一個或多個不安全的外部來源的連結。如果您信任這些連結,請更新它們以獲取最新資料。", "textYes": "是", "titleLicenseExp": "證件過期", "titleLicenseNotActive": "授權未啟用", @@ -188,14 +188,14 @@ "titleUpdateVersion": "版本已更改", "warnLicenseAnonymous": "匿名使用者無法存取。
    此文件將僅供檢視。", "warnLicenseBefore": "授權未啟用。
    請聯絡您的管理員。", - "warnLicenseExceeded": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。請聯繫您的管理員以了解更多資訊。", - "warnLicenseExp": "您的憑證已過期,請升級並刷新此頁面。", + "warnLicenseExceeded": "您已達到同時連線 %1 編輯者的限制。此文件將僅以檢視模式開啟。", + "warnLicenseExp": "您的授權已過期。請更新您的授權並重新整理頁面。", "warnLicenseLimitedNoAccess": "憑證已過期。您無法使用文件編輯功能。請聯絡您的帳號管理員", "warnLicenseLimitedRenewed": "憑證需要續約。您目前只有文件編輯的部份功能。
    欲使用完整功能,請聯絡您的帳號管理員。", - "warnLicenseUsersExceeded": "您已達到 %1 個編輯器的使用者限制。請聯繫您的管理員以了解更多資訊。", - "warnNoLicense": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。有關個人升級條款,請聯繫 %1 業務團隊。", - "warnNoLicenseUsers": "您已達到%1個編輯器的用戶限制。與%1銷售團隊聯繫以了解個人升級條款。", - "warnProcessRightsChange": "您沒有編輯此文件的權限。" + "warnLicenseUsersExceeded": "您已達到 %1 編輯器的使用者限制。請聯繫您的管理員以了解詳情。", + "warnNoLicense": "您已達到同時連線 %1 編輯者的限制。此文件將僅以檢視模式開啟。", + "warnNoLicenseUsers": "您已達到編輯器的使用者限制。", + "warnProcessRightsChange": "您無權編輯此檔案。" } }, "Error": { @@ -203,69 +203,69 @@ "criticalErrorExtText": "點擊\"好\"回到文件列表。", "criticalErrorTitle": "錯誤", "downloadErrorText": "下載失敗", - "errorAccessDeny": "您正在嘗試執行您無權執行的動作。
    請聯繫您的管理員。", + "errorAccessDeny": "您正在嘗試執行一個無權限的操作。
    請聯絡系統管理員。", "errorArgsRange": "公式中有錯誤。
    不正確的引數範圍。", - "errorAutoFilterChange": "不允許該動作,因為它試圖移動您的工作表上表格中的儲存格。", - "errorAutoFilterChangeFormatTable": "無法對所選儲存格執行該動作,因為無法移動表格的一部分。
    請選擇另一個資料範圍以便移動整個表格並重試。", - "errorAutoFilterDataRange": "無法對選定的儲存格區域執行該動作。
    請選擇工作表內部或外部的統一資料範圍並重試。", - "errorAutoFilterHiddenRange": "無法執行該動作,因為該區域包含過濾的儲存格。
    請取消隱藏過濾的元素並重試。", + "errorAutoFilterChange": "此操作不允許移動工作表中的表格儲存格。", + "errorAutoFilterChangeFormatTable": "此操作無法針對所選儲存格進行,因為您無法移動表格的一部分。請選擇另一個資料範圍,以便整個表格移動,然後重試。", + "errorAutoFilterDataRange": "無法對所選儲存格範圍進行此操作。請選擇表格內或表格外的統一資料範圍,然後重試。", + "errorAutoFilterHiddenRange": "無法執行該操作,因為區域中包含篩選的儲存格。請取消隱藏篩選的元素,然後重試。", "errorBadImageUrl": "不正確的圖像 URL", - "errorCannotUseCommandProtectedSheet": "您無法在受保護的工作表使用這個指令,若要使用這個指令,請取消保護該工作表。
    您可能需要輸入密碼。", - "errorChangeArray": "您不能更改數組的一部分。", - "errorChangeOnProtectedSheet": "您嘗試變更的儲存格或圖表位於受保護的工作表上。 要進行變更,請取消工作表的保護。您將可能會被要求您輸入密碼。", + "errorCannotUseCommandProtectedSheet": "您無法在受保護的工作表上使用此命令。要使用此命令,請取消保護工作表。<br>您可能需要輸入密碼。", + "errorChangeArray": "您無法更改數組的一部分。", + "errorChangeOnProtectedSheet": "您嘗試更改的儲存格或圖表位於受保護的工作表上。若要進行更改,請取消保護工作表。您可能需要輸入密碼。", "errorConnectToServer": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。請聯繫您的管理員以了解更多資訊。", - "errorCopyMultiselectArea": "此命令不能用於多個選擇。
    選擇單個範圍,然後重試。", + "errorCopyMultiselectArea": "此命令無法與多個選擇一起使用。請選擇單一範圍並重試。", "errorCountArg": "公式中有錯誤。
    無效的引數數字。", "errorCountArgExceed": "公式中有錯誤。
    超過最大的引數數字。", - "errorCreateDefName": "由於其中一些正在被編輯,因此目前無法編輯現有命名範圍,也無法創建新的命名範圍。", + "errorCreateDefName": "現有的命名範圍無法編輯,並且無法創建新的<br>因為其中一些正在進行編輯。", "errorDatabaseConnection": "外部錯誤
    資料庫連結錯誤, 請聯絡技術支援。", "errorDataEncrypted": "已收到加密的更改,無法解密。", "errorDataRange": "不正確的資料範圍", - "errorDataValidate": "您輸入的值無效。
    用戶具有可以在此儲存格中輸入的限制值。", + "errorDataValidate": "您輸入的值無效。<br>用戶對可在此單元格中輸入的值進行了限制。", "errorDefaultMessage": "錯誤編號:%1", "errorDirectUrl": "請確認文件的連結。
    該連結必須可直接下載檔案。", "errorEditingDownloadas": "處理文件檔時發生錯誤。
    請使用\"下載\"來儲存一份備份檔案到本機端。", "errorFilePassProtect": "此文件使用密碼保護功能,無法開啟。", "errorFileRequest": "外部錯誤。
    檔案請求。請聯絡支援。", - "errorFileSizeExceed": "檔案大小已超過了您的伺服器限制。
    請聯繫您的管理員了解詳情。", + "errorFileSizeExceed": "檔案大小超過伺服器限制。詳情請聯絡您的管理員。", "errorFileVKey": "外部錯誤。
    錯誤的安全金鑰。請聯絡支援。", "errorFillRange": "無法填充所選的單元格範圍。
    所有合併的儲存格必須具有相同的大小。", "errorFormulaName": "公式中有錯誤。
    錯誤的公式名稱。", "errorFormulaParsing": "公式分析時出現內部錯誤。", - "errorFrmlMaxLength": "您無法添加此公式,因為它的長度超過了允許的字符數。
    請編輯它,然後重試。", - "errorFrmlMaxReference": "您無法輸入此公式,因為它具有太多的值,
    單元格引用和/或名稱。", - "errorFrmlMaxTextLength": "在公式中的文字數值有255字元的限制。
    使用 CONCATENATE 函數或序連運算子(&)", - "errorFrmlWrongReferences": "該函數引用了一個不存在的工作表。
    請檢查內容並重試。", + "errorFrmlMaxLength": "無法新增此公式,因為其長度超過允許的字符數。請進行編輯後再試一次。", + "errorFrmlMaxReference": "您無法輸入此公式,因為它包含太多值、儲存格引用和/或名稱。", + "errorFrmlMaxTextLength": "公式中的文字限制為255個字元。請使用CONCATENATE函數或串連運算子 &。", + "errorFrmlWrongReferences": "函數參照了不存在的工作表。請檢查資料並重試。", "errorInconsistentExt": "開啟檔案時發生錯誤。
    檔案內容與副檔名不一致。", "errorInconsistentExtDocx": "開啟檔案時發生錯誤。
    檔案內容對應到文字檔(例如 docx),但檔案副檔名不一致:%1。", "errorInconsistentExtPdf": "開啟檔案時發生錯誤。
    檔案內容對應到下列格式之一:pdf/djvu/xps/oxps,但檔案副檔名不一致:%1。", "errorInconsistentExtPptx": "開啟檔案時發生錯誤。
    檔案內容對應到簡報檔(例如 pptx),但檔案副檔名不一致:%1。", "errorInconsistentExtXlsx": "開啟檔案時發生錯誤。
    檔案內容對應到試算表檔案(例如 xlsx),但檔案副檔名不一致:%1。", "errorInvalidRef": "輸入正確的選擇名稱或有效參考。", - "errorKeyEncrypt": "未知密鑰描述符", + "errorKeyEncrypt": "未知的按鍵快捷功能", "errorKeyExpire": "密鑰描述符已過期", "errorLoadingFont": "字體未載入。
    請聯絡檔案伺服器管理員。", - "errorLockedAll": "該工作表已被另一位用戶鎖定,因此無法完成該操作。", - "errorLockedCellPivot": "您不能在數據透視表中更改數據。", - "errorLockedWorksheetRename": "該工作表目前無法重命名,因為它正在被其他用戶重命名", - "errorMaxPoints": "每個圖表的最大串聯點數為4096。", + "errorLockedAll": "由於其他用戶鎖定了工作表,因此無法執行操作。", + "errorLockedCellPivot": "您無法更改樞紐分析表中的數據。", + "errorLockedWorksheetRename": "目前無法對工作表進行重新命名,因為其正由其他用戶重新命名。", + "errorMaxPoints": "每個圖表系列中的最大點數量為4096。", "errorMoveRange": "無法改變合併儲存格內的一部分", "errorMultiCellFormula": "表中不允許使用多儲存格數組公式。", - "errorOpenWarning": "文件中的一個公式長度超過了
    允許的字元數並已被移除。", - "errorOperandExpected": "輸入的函數語法不正確。請檢查您是否遺漏了任何括號之一 - '(' 或 ')'。", - "errorPasteMaxRange": "複製和貼上的區域不匹配。 請選擇一個相同大小的區域或點擊一行中的第一個儲存格以貼上已複製的儲存格。", - "errorPrintMaxPagesCount": "不幸的是,在目前版本的程式中一次不可列印超過 1500 頁。
    在即將發布的版本中將會取消此限制。", - "errorProtectedRange": "此範圍不允許進行編輯。", - "errorSessionAbsolute": "該檔案編輯時效已逾期。請重新載入此頁面。", - "errorSessionIdle": "無 該文件已經有一段時間沒有進行編輯了。 請重新載入頁面。", - "errorSessionToken": "主機連線被中斷,請重新載入此頁面。", + "errorOpenWarning": "檔案中的其中一個公式長度超過了允許的字符數,已被刪除。", + "errorOperandExpected": "輸入的函數語法不正確。請檢查是否遺漏了其中一個括號 - ( 或 )。", + "errorPasteMaxRange": "複製和貼上區域不相符。請選擇相同大小的區域,或點擊行中的第一個儲存格以貼上複製的儲存格。", + "errorPrintMaxPagesCount": "很抱歉,目前版本的程式無法一次列印超過1500頁。這個限制將在未來的版本中消除。", + "errorProtectedRange": "不允許編輯此範圍。", + "errorSessionAbsolute": "文件編輯工作階段已過期。請重新載入頁面。", + "errorSessionIdle": "該文件已很長時間未進行編輯。請重新載入頁面。", + "errorSessionToken": "與伺服器的連線中斷。請重新載入頁面。", "errorStockChart": "行序錯誤。要建立股票圖表,請將數據按照以下順序工作表:
    開盤價、最高價、最低價、收盤價。 ", - "errorToken": "檔案安全憑證格式不正確。
    請聯絡您的檔案伺服器管理員。", - "errorTokenExpire": "檔案安全憑證已過期。
    請聯絡您的檔案伺服器管理員。", + "errorToken": "文件安全令牌格式不正確。
    請聯繫您的相關管理員。", + "errorTokenExpire": "文件安全令牌已過期。
    請聯繫相關管理員。", "errorUnexpectedGuid": "外部錯誤。
    未預期的導向。請聯絡支援。", "errorUpdateVersionOnDisconnect": "網路連接已恢復,文件版本已更改。
    在繼續工作之前,您需要下載文件或複制其內容以確保沒有丟失,然後重新加載此頁面。", - "errorUserDrop": "目前無法存取該文件。", - "errorUsersExceed": "超出了定價計劃所允許的用戶數量", + "errorUserDrop": "目前無法存取該檔案。", + "errorUsersExceed": "已超出價格方案允許的使用者數量。", "errorViewerDisconnect": "網路連線失敗。您可以繼續瀏覽這份文件,
    在連線恢復前以及頁面重新加載之前,您無法下載或列印此文件。", "errorWrongBracketsCount": "公式中有錯誤。
    括號數字錯誤。", "errorWrongOperator": "輸入的公式中有錯誤。使用了錯誤的運算符。
    請更正錯誤。", @@ -273,14 +273,14 @@ "openErrorText": "開啟文件時發生錯誤", "pastInMergeAreaError": "無法改變合併儲存格內的一部分", "saveErrorText": "存檔時發生錯誤", - "scriptLoadError": "連線速度過慢,某些組件無法加載。 請重新載入頁面。", + "scriptLoadError": "連線速度太慢,部分元件無法載入。請重新載入頁面。", "textCancel": "取消", - "textErrorPasswordIsNotCorrect": "密碼錯誤。
    核實蓋帽封鎖鍵關閉並且是肯定使用正確資本化。", + "textErrorPasswordIsNotCorrect": "您提供的密碼不正確。
    請確保大寫鎖定鍵已關閉,並確保使用正確的大小寫。", "textOk": "好", "unknownErrorText": "未知錯誤。", - "uploadImageExtMessage": "圖片格式未知。", + "uploadImageExtMessage": "未知圖片格式。", "uploadImageFileCountMessage": "沒有上傳圖片。", - "uploadImageSizeMessage": "圖像超出最大大小限制。最大大小為25MB。", + "uploadImageSizeMessage": "圖片超出最大大小限制。最大大小為25MB。", "errNoDuplicates": "No duplicate values found.", "errorCannotUngroup": "Cannot ungroup. To start an outline, select the detail rows or columns and group them.", "errorChangeFilteredRange": "This will change a filtered range on your worksheet.
    To complete this task, please remove AutoFilters.", @@ -322,9 +322,9 @@ "advDRMPassword": "密碼", "applyChangesTextText": "加載數據中...", "applyChangesTitleText": "加載數據中", - "confirmMaxChangesSize": "您執行的動作超出伺服器設定的大小限制。
    點選\"復原\"以取消動作,或點選\"繼續\"保留該動作(您需要下載檔案或複製其內容以確保沒有資料遺失)。", - "confirmMoveCellRange": "目標儲存格的範圍可以包含資料。繼續動作?", - "confirmPutMergeRange": "資料來源包含合併的儲存格。
    它們在貼上到表格之前將被取消合併。", + "confirmMaxChangesSize": "操作的大小超出了您的伺服器設定的限制。
    按一下「復原」來取消上一個動作,或按一下「繼續」在本地保留動作(您需要下載該文件或複製其內容,以確保不會丟失任何內容)。", + "confirmMoveCellRange": "目標儲存格範圍可能包含資料。是否繼續操作?", + "confirmPutMergeRange": "來源資料包含合併的儲存格。在將其貼到表格中之前,這些儲存格將被取消合併。", "confirmReplaceFormulaInTable": "標題行中的公式將被刪除並轉換為靜態文本。
    是否繼續?", "downloadTextText": "文件下載中...", "downloadTitleText": "文件下載中", @@ -345,21 +345,21 @@ "printTitleText": "列印文件", "savePreparingText": "準備儲存", "savePreparingTitle": "正在準備儲存。請耐心等候...", - "saveTextText": "儲存文件...", - "saveTitleText": "儲存文件", + "saveTextText": "正在儲存文件...", + "saveTitleText": "正在儲存文件", "textCancel": "取消", "textContinue": "繼續", - "textErrorWrongPassword": "密碼錯誤", + "textErrorWrongPassword": "您輸入的密碼不正確。", "textLoadingDocument": "載入文件", "textNo": "否", "textOk": "好", "textUndo": "復原", - "textUnlockRange": "範圍解鎖", + "textUnlockRange": "解除鎖定範圍", "textUnlockRangeWarning": "試圖改變的範圍受密碼保護。", "textYes": "是", "txtEditingMode": "設定編輯模式...", "uploadImageTextText": "正在上傳圖片...", - "uploadImageTitleText": "上載圖片", + "uploadImageTitleText": "正在上傳圖片", "waitText": "請耐心等待..." }, "Statusbar": { @@ -370,7 +370,7 @@ "textErrNameExists": "具有此名稱的工作表已存在。", "textErrNameWrongChar": "工作表名稱不能包含以下字符:\\,/,*,?,[,] 、:", "textErrNotEmpty": "表格名稱不能為空", - "textErrorLastSheet": "工作簿必須至少有一個可見的工作表。", + "textErrorLastSheet": "活頁簿必須至少有一個可見的工作表。", "textErrorRemoveSheet": "無法刪除工作表。", "textHidden": "隱長", "textHide": "隱藏", @@ -385,11 +385,11 @@ "textSheetName": "表格名稱", "textTabColor": "標籤顏色", "textUnhide": "取消隱藏", - "textWarnDeleteSheet": "工作表內可能有資料。 進行動作?" + "textWarnDeleteSheet": "工作表可能包含資料。是否繼續操作?" }, "Toolbar": { - "dlgLeaveMsgText": "您在此文件中有未儲存的變更。點擊\"留在此頁面\"以等待自動儲存。點擊\"離開此頁面\"以放棄所有未儲存的變更。", - "dlgLeaveTitleText": "您離開應用程式。", + "dlgLeaveMsgText": "您在此文件中有未儲存的變更。點擊\"留在此頁面\"等待自動儲存,或點擊\"離開此頁面\"放棄所有未儲存的變更。", + "dlgLeaveTitleText": "您離開應用程式", "leaveButtonText": "離開此頁面", "stayButtonText": "留在此頁面", "textCloseHistory": "Close History", @@ -420,7 +420,7 @@ "textDataTableHint": "回傳表格儲存格,或指定的表格儲存格", "textDisplay": "顯示", "textDone": "完成", - "textEmptyImgUrl": "您需要指定影像的 URL。", + "textEmptyImgUrl": "您需要指定圖片的URL。", "textExternalLink": "外部連結", "textFilter": "篩選條件", "textFunction": "功能", @@ -441,7 +441,7 @@ "textPictureFromLibrary": "圖片來自圖庫", "textPictureFromURL": "網址圖片", "textRange": "範圍", - "textRecommended": "建議", + "textRecommended": "推薦", "textRequired": "必填", "textScreenTip": "螢幕提示", "textSelectedRange": "選擇範圍", @@ -451,10 +451,10 @@ "textThisRowHint": "在選定的列裡選擇這列", "textTotalsTableHint": "回傳表格或指定表格列的總行數", "txtExpand": "展開和排序", - "txtExpandSort": "選擇項旁邊的數據將不會排序。您是否要擴展選擇範圍以包括相鄰數據,還是僅對當前選定的單元格進行排序?", + "txtExpandSort": "選擇範圍旁邊的數據將不會被刪除。您要擴展選擇範圍以包括相鄰數據還是僅繼續使用當前選定的單元格?", "txtLockSort": "您選材的比鄰有數據,可您更改權限不足。
    是否繼續當前選材?", "txtNo": "沒有", - "txtNotUrl": "此字段應為格式為\"http://www.example.com\"的URL。", + "txtNotUrl": "此字段應為格式為“ http://www.example.com”的URL。", "txtSorting": "排序", "txtSortSelected": "排序已選擇項目", "txtYes": "是" @@ -518,9 +518,9 @@ "textDone": "完成", "textEditLink": "編輯連結", "textEffects": "效果", - "textEmptyImgUrl": "您需要指定影像的 URL。", + "textEmptyImgUrl": "您需要指定圖片的URL。", "textEmptyItem": "{空白}", - "textErrorMsg": "您必須選擇至少一個值", + "textErrorMsg": "您必須至少選擇一個值", "textErrorTitle": "警告", "textEuro": "歐元", "textExternalLink": "外部連結", @@ -581,7 +581,7 @@ "textNoBorder": "無邊界", "textNone": "無", "textNoOverlay": "無覆蓋", - "textNotUrl": "此字段應為格式為\"http://www.example.com\"的URL。", + "textNotUrl": "此字段應為格式為“ http://www.example.com”的URL。", "textNumber": "數字", "textOk": "好", "textOnTickMarks": "在勾號上", @@ -596,11 +596,11 @@ "textPound": "英鎊", "textPt": "pt", "textRange": "範圍", - "textRecommended": "建議", - "textRemoveChart": "刪除圖表", - "textRemoveShape": "去除形狀", + "textRecommended": "推薦", + "textRemoveChart": "移除圖表", + "textRemoveShape": "移除形狀", "textReplace": "取代", - "textReplaceImage": "替換圖片", + "textReplaceImage": "取代圖片", "textRequired": "必填", "textRight": "右", "textRightBorder": "右邊界", @@ -627,10 +627,10 @@ "textTextOrientation": "文字方向", "textThick": "粗", "textThin": "細", - "textThousands": "千", - "textTickOptions": "勾號選項", + "textThousands": "千位數", + "textTickOptions": "刻度選項", "textTime": "時間", - "textTop": "上方", + "textTop": "頂部", "textTopBorder": "上邊框", "textTrillions": "兆", "textType": "類型", @@ -639,9 +639,9 @@ "textVertical": "垂直", "textVerticalAxis": "垂直軸", "textVerticalText": "垂直文字", - "textWrapText": "包覆文字", - "textYen": "日圓", - "txtNotUrl": "此字段應為格式為\"http://www.example.com\"的URL。", + "textWrapText": "換行文字", + "textYen": "日元", + "txtNotUrl": "此字段應為格式為“ http://www.example.com”的URL。", "txtSortHigh2Low": "從最高到最低排序", "txtSortLow2High": "從最低到最高排序", "textCreateCustomFormat": "Create Custom Format", @@ -731,11 +731,11 @@ "textR1C1Style": "R1C1參考樣式", "textRegionalSettings": "區域設置", "textReplace": "取代", - "textReplaceAll": "全部替換", + "textReplaceAll": "全部取代", "textResolvedComments": "已解決的評論", "textRestartApplication": "請重新啟動應用程式以讓變更生效", "textRight": "右", - "textRightToLeft": "右到左", + "textRightToLeft": "從右到左", "textSearch": "搜尋", "textSearchBy": "搜尋", "textSearchIn": "搜尋", @@ -749,9 +749,9 @@ "textSubject": "主旨", "textTel": "電話", "textTitle": "標題", - "textTop": "上方", + "textTop": "頂部", "textUnitOfMeasurement": "測量單位", - "textUploaded": "\n已上傳", + "textUploaded": "已上傳", "textValues": "值", "textVersion": "版本", "textWorkbook": "工作簿", @@ -800,8 +800,8 @@ "txtScheme18": "技術", "txtScheme19": "跋涉", "txtScheme2": "灰階", - "txtScheme20": "市區", - "txtScheme21": "感染力", + "txtScheme20": "城市", + "txtScheme21": "活力", "txtScheme22": "新的Office", "txtScheme3": "頂尖", "txtScheme4": "方面", @@ -822,7 +822,9 @@ "txtZh": "中文", "warnDownloadAs": "如果繼續以這種格式保存,則除文本外的所有功能都將丟失。
    確定要繼續嗎?", "textDark": "Dark", + "textExplanationChangeDirection": "Application will be restarted for RTL interface activation", "textLight": "Light", + "textRtlInterface": "RTL Interface", "textSameAsSystem": "Same As System", "textTheme": "Theme", "textVersionHistory": "Version History" diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index d6dd2dadf3..0221c9165a 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -131,7 +131,7 @@ "txtRow": "行", "txtRowLbls": "行标签", "txtSeconds": "秒", - "txtSeries": "系列", + "txtSeries": "序列", "txtStyle_Bad": "坏", "txtStyle_Calculation": "计算", "txtStyle_Check_Cell": "检查单元格", @@ -697,6 +697,7 @@ "textEnableAllMacrosWithoutNotification": "启用全部宏,并且不发出通知", "textEncoding": "编码", "textExample": "例子", + "textExplanationChangeDirection": "应用程序将重新启动以开启 RTL 界面", "textFeedback": "反馈和支持", "textFind": "查找", "textFindAndReplace": "查找和替换", @@ -738,6 +739,7 @@ "textRestartApplication": "请重新启动应用程序以使更改生效", "textRight": "右", "textRightToLeft": "從右到左", + "textRtlInterface": "RTL 界面", "textSameAsSystem": "与系统一致", "textSearch": "搜索", "textSearchBy": "搜索", diff --git a/vendor/framework7-react/build/webpack.config.js b/vendor/framework7-react/build/webpack.config.js index 8db88e5200..fe2475eb8b 100644 --- a/vendor/framework7-react/build/webpack.config.js +++ b/vendor/framework7-react/build/webpack.config.js @@ -50,7 +50,7 @@ const config = { jquery: 'jQuery' }, - devtool: env === 'production' ? false/*'source-map'*/ : 'source-map', // TODO: turn off debugger source map before release + devtool: env === 'production' ? 'source-map' : 'source-map', // TODO: turn off debugger source map before release optimization: { minimizer: [new TerserPlugin({ })],