{"id":18879904,"url":"https://github.com/gusenov/excel-functions","last_synced_at":"2026-05-10T06:36:34.106Z","repository":{"id":130182024,"uuid":"102347472","full_name":"gusenov/excel-functions","owner":"gusenov","description":"Функции Excel.","archived":false,"fork":false,"pushed_at":"2018-07-19T14:56:51.000Z","size":540,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-12-31T03:12:42.307Z","etag":null,"topics":["console-log","data-generation","excel","excel-functions","functions","html-parsing","jq","jquery","json"],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gusenov.png","metadata":{"files":{"readme":"README.developer.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-09-04T10:05:27.000Z","updated_at":"2018-07-19T14:56:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"d4f4a7f9-e3e7-46b6-af91-a039ff374846","html_url":"https://github.com/gusenov/excel-functions","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gusenov%2Fexcel-functions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gusenov%2Fexcel-functions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gusenov%2Fexcel-functions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gusenov%2Fexcel-functions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gusenov","download_url":"https://codeload.github.com/gusenov/excel-functions/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239841743,"owners_count":19705981,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["console-log","data-generation","excel","excel-functions","functions","html-parsing","jq","jquery","json"],"created_at":"2024-11-08T06:40:21.958Z","updated_at":"2026-02-20T05:30:17.060Z","avatar_url":"https://github.com/gusenov.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# En\n\n[Excel functions (alphabetical)](https://support.office.com/en-us/article/Excel-functions-alphabetical-b3944572-255d-4efb-bb96-c6d90033e188)\n\n```js\n(function () {\n var result = \"{\\n \\\"functions\\\": [\\n\",\n     tableId = \"tblID0EBDAAA\",\n     tbody = $('#' + tableId).children('tbody');\n $(tbody).find('tr').each(function (index) {\n    var functionNameCol = $(this).find(\"td:eq(0)\"),\n        functionNameParagraph = $(functionNameCol).find(\"p:eq(0)\"),\n        functionNameLink = $(functionNameParagraph).find(\"a:eq(0)\"),\n        functionName = functionNameLink.text(),\n        functionLink = functionNameLink.attr('href'),\n        functionIntro = $(functionNameParagraph).find(\"img:eq(0)\").attr('title'),\n        typeAndDescriptionCol = $(this).find(\"td:eq(1)\"),\n        description = $(typeAndDescriptionCol).find(\"p:eq(0)\").clone().children().remove().end().text().replace(/[\\n\\r]/g, ' '),\n        category = $(typeAndDescriptionCol).find(\"b:eq(0)\").text().replace(/[\\n\\r]/g, ' '),\n        categoryLastChar = category.trim().substr(category.length - 1);\n        item = \"  {\\n   \\\"name\\\": \" \n         + (functionName.endsWith(\" function\") ? \"\\\"\" + functionName.slice(0, -9) + \"\\\"\" :\n            (functionName.endsWith(\" functions\") ? \"[\\\"\" + functionName.slice(0, -10).split(\", \").join(\"\\\", \\\"\") + \"\\\"]\" : \"\\\"\" + functionName + \"\\\"\"))\n         + \",\\n   \\\"url\\\": \\\"https://support.office.com/en-us/article/\" \n         + functionLink + \"\\\",\\n\"\n         + \"   \\\"category\\\": \\\"\" + (categoryLastChar === ':' ? category.slice(0, -1) : category) + \"\\\",\\n\"\n         + \"   \\\"description\\\": \\\"\" + description.trim() + \"\\\",\\n\"\n         + \"   \\\"intro\\\": \\\"\" + (typeof functionIntro === \"undefined\" ? \"\" : \n                             (functionIntro.startsWith(\"Excel \") ? functionIntro.slice(6, functionIntro.length) : functionIntro)) + \"\\\"\\n\"\n         + \"  },\\n\";\n    result += item;\n });\n console.log(result + \" ]\\n}\\n\");\n}());\n```\n\n[excel-functions-alphabetical.json](excel-functions-alphabetical.json)\n\n[Excel functions (by category)](https://support.office.com/en-us/article/Excel-functions-by-category-5f91f4e9-7b42-46d2-9bd1-63f26a86c0eb)\n\n# Ru\n\n[Функции Excel](https://support.office.com/ru-ru/article/%D0%A4%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D0%B8-Excel-%D0%BF%D0%BE-%D0%B0%D0%BB%D1%84%D0%B0%D0%B2%D0%B8%D1%82%D1%83-b3944572-255d-4efb-bb96-c6d90033e188)\n\n```js\n(function () {\n var result = \"{\\n \\\"functions\\\": [\\n\",\n     tableId = \"tblID0EBDAAA\",\n     tbody = $('#' + tableId).children('tbody');\n $(tbody).find('tr').each(function (index) {\n    var functionNameCol = $(this).find(\"td:eq(0)\"),\n        functionNameParagraph = $(functionNameCol).find(\"p:eq(0)\"),\n        functionNameLink = $(functionNameParagraph).find(\"a:eq(0)\"),\n        functionName = functionNameLink.text(),\n        functionLink = functionNameLink.attr('href'),\n        functionIntro = $(functionNameParagraph).find(\"img:eq(0)\").attr('title'),\n        typeAndDescriptionCol = $(this).find(\"td:eq(1)\"),\n        description = $(typeAndDescriptionCol).find(\"p:eq(0)\").clone().children().remove().end().text().replace(/[\\n\\r]/g, ' '),\n        category = $(typeAndDescriptionCol).find(\"b:eq(0)\").text().replace(/[\\n\\r]/g, ' '),\n        categoryLastChar = category.trim().substr(category.length - 1);\n        item = \"  {\\n   \\\"name\\\": \" \n         + (functionName.startsWith(\"Функция \") ? \"\\\"\" + functionName.slice(8, functionName.length) + \"\\\"\" :\n            (functionName.startsWith(\"Функции\") ? \"[\\\"\" + functionName.slice(8, functionName.length).split(\", \").join(\"\\\", \\\"\") + \"\\\"]\" : \"\\\"\" + functionName + \"\\\"\"))\n         + \",\\n   \\\"url\\\": \\\"https://support.office.com/ru-ru/article/\" \n         + functionLink + \"\\\",\\n\"\n         + \"   \\\"category\\\": \\\"\" + (categoryLastChar === ':' ? category.slice(0, -1) : category) + \"\\\",\\n\"\n         + \"   \\\"description\\\": \\\"\" + description.trim() + \"\\\",\\n\"\n         + \"   \\\"intro\\\": \\\"\" + (typeof functionIntro === \"undefined\" ? \"\" : \n                             (functionIntro.startsWith(\"Excel \") ? functionIntro.slice(6, functionIntro.length) : functionIntro)) + \"\\\"\\n\"\n         + \"  },\\n\";\n    result += item;\n });\n console.log(result + \" ]\\n}\\n\");\n}());\n```\n\n[функции-excel.json](функции-excel.json)\n\n[Функции Excel (по категориям)](https://support.office.com/ru-ru/article/%D0%A4%D1%83%D0%BD%D0%BA%D1%86%D0%B8%D0%B8-Excel-%D0%BF%D0%BE-%D0%BA%D0%B0%D1%82%D0%B5%D0%B3%D0%BE%D1%80%D0%B8%D1%8F%D0%BC-5f91f4e9-7b42-46d2-9bd1-63f26a86c0eb)\n\n# Ссылки\n\n- [api.jquery.com/find](https://api.jquery.com/find/)\n- [w3schools.com/jquery/jquery_ref_selectors.asp](https://www.w3schools.com/jquery/jquery_ref_selectors.asp)\n- [stackoverflow.com/questions/8624592/jquery-how-to-get-only-direct-text-without-tags-in-html](https://stackoverflow.com/questions/8624592/jquery-how-to-get-only-direct-text-without-tags-in-html)\n- [stackoverflow.com/questions/952924/javascript-chop-slice-trim-off-last-character-in-string](https://stackoverflow.com/questions/952924/javascript-chop-slice-trim-off-last-character-in-string)\n- [stackoverflow.com/questions/8483179/javascript-array-as-a-list-of-strings-preserving-quotes](https://stackoverflow.com/questions/8483179/javascript-array-as-a-list-of-strings-preserving-quotes)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgusenov%2Fexcel-functions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgusenov%2Fexcel-functions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgusenov%2Fexcel-functions/lists"}