{"id":2185,"date":"2024-08-26T00:00:00","date_gmt":"2024-08-25T15:00:00","guid":{"rendered":"https:\/\/www.ishikawasekkei.com\/?p=2185"},"modified":"2024-08-28T09:08:55","modified_gmt":"2024-08-28T00:08:55","slug":"which-is-faster-excel-function","status":"publish","type":"post","link":"https:\/\/www.ishikawasekkei.com\/index.php\/2024\/08\/26\/which-is-faster-excel-function\/","title":{"rendered":"\u3069\u3063\u3061\u304c\u901f\u3044\uff1f\u30a8\u30af\u30bb\u30eb\u306e\u81ea\u4f5c\u95a2\u6570"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">\u3000\u898b\u306b\u304d\u3066\u304f\u308c\u3066\u3001\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u3002\u77f3\u5ddd\u3055\u3093\u3067\u3059\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u5148\u65e5\u3001\u4ed5\u4e8b\u3092\u3057\u3066\u3044\u305f\u3089\u3001<a href=\"https:\/\/www.ishikawasekkei.com\/index.php\/2019\/12\/29\/execution-error-1004\/\" target=\"_blank\" rel=\"noopener\" title=\"\">\u5b9f\u884c\u6642\u30a8\u30e9\u30fc\u306e\u539f\u56e0\u3068\u306a\u3063\u305f\u95a2\u6570<\/a>\u306b\u518d\u3073\u51fa\u4f1a\u3044\u307e\u3057\u305f\u3002\u3053\u306e\u3068\u304d\u306b\u53c2\u8003\u307e\u3067\u306b\u4f5c\u3063\u305f\u95a2\u6570\u3068\u6bd4\u8f03\u3057\u3066\u3001\u306f\u3066\u3001\u3053\u308c\u3063\u3066\u3069\u3063\u3061\u306e\u95a2\u6570\u304c\u901f\u3044\u306e\u3067\u3057\u3087\u3046\u304b\u3001\u3068\u3001\u8a00\u3046\u306e\u304c\u7591\u554f\u306b\u6d6e\u304b\u3073\u307e\u3057\u305f\u306e\u3067\u3001\u5b9f\u6e2c\u3057\u3066\u307f\u307e\u3059\uff01<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u7d39\u4ecb\u3057\u305f\u95a2\u6570<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u5148\u65e5\u7d39\u4ecb\u3057\u305f\u81ea\u4f5c\u95a2\u6570(Number2Letter)\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3001\u30a8\u30af\u30bb\u30eb\u306e\u30bb\u30eb\u306eAddress\u95a2\u6570\u3092\u4f7f\u7528\u3057\u3066\u6c42\u3081\u3066\u3044\u307e\u3057\u305f\u3002<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"visualbasic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">'*****************************************************************\n'*\u95a2\u6570\u540d\u3000\uff1aNumber2Letter\n'*\u6a5f\u80fd\u6982\u8981\uff1a\u5165\u529b\u3055\u308c\u305f\u30ab\u30e9\u30e0\u4f4d\u7f6e\u306e\u6570\u5024\u304b\u3089\u30ab\u30e9\u30e0\u6587\u5b57\u306e\u82f1\u6570\u5b57\u306b\u5909\u63db\u3057\u307e\u3059\n'*\u5f15\u6570  \u3000\uff1a\u30ab\u30e9\u30e0\u4f4d\u7f6e\uff081\uff5e16384\uff09\n'*\u623b\u308a\u5024\u3000\uff1a\u30ab\u30e9\u30e0\u6587\u5b57\n'*****************************************************************\nFunction Number2Letter(iCol As Integer) As String\n    Number2Letter = Split(Columns(iCol).Address(True, False), \":\")(0)\nEnd Function<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u305d\u3057\u3066\u3001\u305d\u306e\u6642\u306b\u3071\u3063\u3068\u4f5c\u3063\u305f\u306e\u304c\u4ee5\u4e0b\u306e\u95a2\u6570\u3067\u3059\u3002\u540d\u524d\u304c\u91cd\u8907\u3057\u306a\u3044\u3088\u3046\u300c2\u300d\u3092\u4ed8\u3051\u307e\u3057\u305f\u3002<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"visualbasic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Function Number2Letter2(iCol As Integer) As String\n    If iCol &lt; 1 Then Number2Letter2 = \"\": Exit Function\n    Number2Letter2 = Number2Letter2(Int((iCol - 1) \/ 26)) &amp; Chr(Asc(\"A\") + ((iCol - 1) Mod 26))\nEnd Function<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u306a\u3093\u3068\u3001\u518d\u5e30\u95a2\u6570\u3092\u4f7f\u3063\u3066\u304a\u308a\u307e\u3059\u3002\u304b\u3063\u3053\u3044\u3044\uff01\u3042\u3001\u81ea\u753b\u81ea\u8cdb\u306b\u306a\u3063\u3066\u3057\u307e\u3063\u305f\u3002\u3002\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u5ff5\u306e\u305f\u3081\u30c6\u30b9\u30c8<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u3000\u3053\u306e\u30dd\u30b9\u30c8\u3092\u66f8\u3044\u3066\u3044\u308b\u3046\u3061\u306b\u3001\u4f5c\u3063\u305f\u95a2\u6570\u306f\u6b63\u3057\u3044\u306e\u304b\u306a\u3001\u3068\u3044\u3046\u7591\u5ff5\u304c\u6e67\u3044\u3066\u304d\u305f\u306e\u3067\u3001\u307e\u305a\u306f\u30c6\u30b9\u30c8\u3057\u3066\u307f\u307e\u3059\u3002\u30c6\u30b9\u30c8\u30b9\u30af\u30ea\u30d7\u30c8\u3068\u7d50\u679c\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059\u3002\u3061\u306a\u307f\u306b\u300116384\u306f\u30a8\u30af\u30bb\u30eb\u306e\u5217\u756a\u53f7\u306e\u4e0a\u9650\u3067\u3059\u3002<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"visualbasic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Sub test()\n    Dim i As Integer\n    Debug.Print \"\u30c1\u30a7\u30c3\u30af\u3092\u958b\u59cb\u3057\u307e\u3059\u3002\"\n    For i = 1 To 16384\n        If Number2Letter(i) &lt;> Number2Letter2(i) Then\n            Debug.Print \"\u30a8\u30e9\u30fc\u3067\u3059\uff01\", Number2Letter(i), Number2Letter2(i)\n            Exit Sub\n        End If\n    Next i\n    Debug.Print \"\u30a8\u30e9\u30fc\u306f\u7121\u304b\u3063\u305f\u3088\u3046\u3067\u3059\u3002\"\nEnd Sub<\/pre>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">\u30c1\u30a7\u30c3\u30af\u3092\u958b\u59cb\u3057\u307e\u3059\u3002\n\u30a8\u30e9\u30fc\u306f\u7121\u304b\u3063\u305f\u3088\u3046\u3067\u3059\u3002<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u3053\u306e\u3068\u304a\u308a\u3001\u7279\u306b\u554f\u984c\u306f\u3042\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u3067\u306f\u3001\u5b9f\u6e2c\u3057\u307e\u3059<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u3000\u306f\u3044\u3001\u8272\u3005\u3068\u3042\u3042\u3067\u3082\u306a\u3044\u3053\u3046\u3067\u3082\u306a\u3044\u3068\u8a00\u3063\u3066\u3044\u308b\u6642\u9593\u304c\u3082\u3063\u305f\u3044\u306a\u3044\u306e\u3067\u3001\u307e\u305a\u306f\u5b9f\u6e2c\u3057\u3066\u307f\u307e\u3059\u3002\u79d2\u672a\u6e80\u306e\u6642\u9593\u3092\u6e2c\u308b\u65b9\u6cd5\u3092\u5931\u5ff5\u3057\u305f\u305f\u3081\u3001\u30b0\u30b0\u3063\u3066<a href=\"https:\/\/www.excellovers.com\/entry\/2018\/07\/21\/135247\" target=\"_blank\" rel=\"noopener\" title=\"\">\u3053\u3061\u3089\u3092\u53c2\u8003\u306b<\/a>\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3057\u305f\u3002\u4eca\u306f\u898b\u3089\u308c\u307e\u305b\u3093\u304c\u3001\u4f1a\u793e\u306b\u7f6e\u3044\u3066\u3042\u308b\u66f8\u7c4d\u306b\u306fGetTickCount\u304c\u7d39\u4ecb\u3055\u308c\u3066\u3044\u305f\u3088\u3046\u306b\u601d\u3044\u307e\u3059\u3002GetTickCount\u306f1\u30df\u30ea\u79d2\u3001Timer\u306fSingle\u578b\u306e\u5834\u5408\u306f0.01\u79d2\uff0810\u30df\u30ea\u79d2\uff09\u3067Double\u578b\u306e\u5834\u5408\u306f0.00000001\u79d2\uff0810\u30ca\u30ce\u79d2\uff09\u306a\u306e\u3067\u3001\u4f55\u3068\u306a\u304fTimer\u3092Double\u306b\u3057\u3066\u4f7f\u3046\u306e\u304c\u3088\u3055\u305d\u3046\u3067\u3059\u3002\uff08\u3068\u3001\u601d\u3063\u3066Timer\u3092Double\u306b\u3057\u3066\u4f7f\u3063\u3066\u307f\u305f\u7d50\u679c\u304b\u3089\u306f10\u9032\u6570\u3067\u3044\u304f\u306850\u30ca\u30ce\u79d2\u304c\u6700\u5c0f\u3067\u9593\u9055\u3044\u306a\u304b\u3063\u305f\u3068\u601d\u3063\u305f\u306e\u3067\u3059\u304c\u3001\u3088\u304f\u898b\u308b\u3068\u5b9f\u969b\u306f\u3001\u5185\u90e8\u7684\u306b2\u9032\u6570\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u305f\u3081\u30012^-8(0.00390625)\u304c\u6700\u5c0f\u306e\u3088\u3046\u3067\u3059\u3002\u3082\u3057GetTickCount\u304c\u3082\u3063\u3068\u7d30\u304b\u304f\u51fa\u529b\u3055\u308c\u308b\u306e\u3067\u3042\u308c\u3070\u3001\u30df\u30ea\u79d2\u306eGetTickCount\u3092\u4f7f\u3046\u306e\u304c\u4e00\u756a\u3088\u304b\u3063\u305f\u306e\u304b\u3082\u77e5\u308c\u307e\u305b\u3093\u306d\u3002\u305f\u3060\u3001\u307e\u3042\u8aa4\u5dee\u3067\u3059\u3088\u306d\u3047\u3002\uff09<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u30c8\u30e9\u30a4\u30a2\u30f3\u30c9\u30a8\u30e9\u30fc\u3067\u6700\u7d42\u7684\u306b\u3001\u5b9f\u6e2c\u7528\u306e\u30b9\u30af\u30ea\u30d7\u30c8\u3068\u5b9f\u884c\u7d50\u679c\u306f\u4ee5\u4e0b\u306e\u3068\u304a\u308a\u306b\u306a\u308a\u307e\u3057\u305f\u3002\u3055\u3066\u3001\u3069\u3061\u3089\u304c\u901f\u3044\u3067\u3057\u3087\u3046\u304b\uff1f<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"visualbasic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Sub \u8a08\u6e2c()\n    Dim start, diff, total As Double\n    Dim i As Integer, j As Integer\n    Debug.Print \"##### \u30c6\u30b9\u30c8\uff11\u8a08\u6e2c\u958b\u59cb #####\"\n    total = 0\n    For j = 1 To 10\n        start = Timer\n        For i = 1 To 16384\n            buf = Number2Letter(i)\n        Next i\n        diff = Timer - start\n        Debug.Print \"time : \" &amp; Format(diff, \"0.00000000\") &amp; \"\u79d2\"\n        total = total + diff\n    Next j\n    Debug.Print \"Total : \" &amp; total &amp; \"\u79d2\"\n      \n    Debug.Print\n    \n    Debug.Print \"##### \u30c6\u30b9\u30c8\uff12\u8a08\u6e2c\u958b\u59cb #####\"\n    total = 0\n    For j = 1 To 10\n        start = Timer\n        For i = 1 To 16384\n            buf = Number2Letter2(i)\n        Next i\n        diff = Timer - start\n        Debug.Print \"time : \" &amp; Format(diff, \"0.00000000\") &amp; \"\u79d2\"\n        total = total + diff\n    Next j\n    Debug.Print \"Total : \" &amp; total &amp; \"\u79d2\"\nEnd Sub<\/pre>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">##### \u30c6\u30b9\u30c8\uff11\u8a08\u6e2c\u958b\u59cb #####\ntime : 0.07812500\u79d2\ntime : 0.07421875\u79d2\ntime : 0.07031250\u79d2\ntime : 0.07031250\u79d2\ntime : 0.07421875\u79d2\ntime : 0.08593750\u79d2\ntime : 0.07812500\u79d2\ntime : 0.07812500\u79d2\ntime : 0.07031250\u79d2\ntime : 0.07812500\u79d2\nTotal : 0.7578125\u79d2\n\n##### \u30c6\u30b9\u30c8\uff12\u8a08\u6e2c\u958b\u59cb #####\ntime : 0.01953125\u79d2\ntime : 0.01953125\u79d2\ntime : 0.01562500\u79d2\ntime : 0.02343750\u79d2\ntime : 0.02343750\u79d2\ntime : 0.01562500\u79d2\ntime : 0.01562500\u79d2\ntime : 0.01953125\u79d2\ntime : 0.01953125\u79d2\ntime : 0.01953125\u79d2\nTotal : 0.19140625\u79d2<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u7d50\u679c\u306b\u306f\u307e\u3042\u307e\u3042\u306e\u8aa4\u5dee\u304c\u3042\u308b\u3088\u3046\u306b\u601d\u3048\u305f\u306e\u30671\uff5e16384\u306e\u5909\u63db\u3092\u305d\u308c\u305e\u308c10\u56de\u305a\u3064\u5b9f\u884c\u3057\u3066\u307f\u307e\u3057\u305f\u3002\u30c8\u30fc\u30bf\u30eb\u3067\u3001\u304a\u3088\u305d4\u500d\u306e\u5dee\u304c\u3042\u308b\u3053\u3068\u306b\u306a\u308a\u307e\u3057\u305f\u30024\u500d\u3068\u3044\u3046\u3068\u5927\u304d\u306a\u5dee\u306e\u7528\u306b\u611f\u3058\u307e\u3059\u304c\u300116\u4e07\u56de\u5b9f\u884c\u3057\u3066\u30010.56640625\u79d2\u306e\u5dee\u3001\u3068\u3044\u3046\u3053\u3068\u306a\u306e\u3067\u3001\u30c7\u30fc\u30bf\u91cf\u306b\u3088\u308a\u307e\u3059\u304c\u3001\u307b\u3068\u3093\u3069\u306e\u30b1\u30fc\u30b9\u3067\u306f\u8aa4\u5dee\u3068\u8003\u3048\u3066\u3082\u554f\u984c\u306a\u3055\u305d\u3067\u3059\u306d\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u30a2\u30c9\u30ec\u30b9\u306e\u6307\u5b9a\u65b9\u6cd5\u306b\u3088\u308b\u5dee\u306f\u3069\u3046\u3067\u3057\u3087\u3046\u304b<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u3000\u4eca\u56de\u306e\u5b9f\u9a13\u3092\u3059\u308b\u524d\u306b\u3001\u4ed5\u4e8b\u306e\u30de\u30af\u30ed\u3092\u5b9f\u884c\u3057\u3066\u3044\u305f\u6642\u306b\u3001\u51e6\u7406\u306b\u95a2\u4fc2\u306e\u306a\u3044\u30a8\u30af\u30bb\u30eb\u30d5\u30a1\u30a4\u30eb\u30924\u3064\u307b\u3069\u958b\u3044\u3066\u5b9f\u884c\u3057\u305f\u3068\u3053\u308d\u3001\u51e6\u7406\u304c\u7d50\u69cb\u9045\u304f\u306a\u3063\u305f\u4e8b\u4ef6\u304c\u3042\u308a\u307e\u3057\u305f\u3002\u3082\u3057\u304b\u3057\u305f\u3089\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u3069\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u5dee\u3057\u3066\u3044\u308b\u306e\u304b\u3092\u8abf\u3079\u308b\u306e\u306b\u6642\u9593\u304c\u304b\u304b\u3063\u3066\u3044\u308b\u306e\u304b\u3082\u77e5\u308c\u306a\u3044\u3001\u3068\u3044\u3046\u3053\u3068\u3067\u3001\u4eca\u56de\u306e\u95a2\u6570\u3067\u4f7f\u7528\u3057\u3066\u3044\u308b\u300cColumns\u300d\u306b\u7740\u76ee\u3057\u307e\u3057\u305f\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u5b9f\u306f\u3001\u3053\u306e\u300cColumns\u300d\u306f\u3001Sheet1.Columns\u306e\u3053\u3068\u3067\u3057\u305f\u3002\u305d\u3053\u3067\u3001\u4eca\u56de\u306e\u7d9a\u304d\u3068\u3057\u3066\u3001Sheet1\u3092\u8a18\u8f09\u3057\u305f\u5834\u5408\u3068\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306e\u5dee\u3092\u8a08\u6e2c\u3057\u3066\u307f\u305f\u3044\u3068\u601d\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"visualbasic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">? Columns.Parent.name ' ? \u306f\u3001debug.Print \u3068\u540c\u7fa9\nSheet1\n? Sheet1.Parent.name\n\u3069\u3063\u3061\u304c\u901f\u3044\uff1f.xlsx<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\u89aa\u306e\u8981\u7d20\u540d\u3092\u8a18\u8f09\u3057\u3066\u5b9f\u884c\u6642\u9593\u3092\u8a08\u6e2c\u3057\u3066\u307f\u307e\u3059<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u3000\u30ef\u30fc\u30af\u30b7\u30fc\u30c8\u3092\u6307\u5b9a\u3059\u308b\u3088\u3046\u306b\u3057\u3066\u3001\u5148\u307b\u3069\u306eNumber2Letter\u3092Number2Letter3\u3068\u3057\u3066\u4f5c\u6210\u3057\u3066\u540c\u69d8\u306b\u5b9f\u884c\u7d50\u679c\u3092\u6bd4\u8f03\u3057\u3066\u307f\u307e\u3057\u305f\u3002\u8a08\u6e2c2\u306f\u3001\u30df\u30ea\u79d2\u5358\u4f4d\u3067\u8a08\u6e2c\u3059\u308b\u3088\u3046\u4fee\u6b63\u3057\u307e\u3057\u305f\u3002\u3055\u3066\u3001\u7d50\u679c\u3084\u5982\u4f55\u306b\uff1f<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"visualbasic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Function Number2Letter3(iCol As Integer) As String\n    Number2Letter3 = Split(Sheet1.Columns(iCol).Address(True, False), \":\")(0)\nEnd Function<\/pre>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"visualbasic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Sub \u8a08\u6e2c2()\n    Dim start, diff, total As Double\n    Dim i As Integer, j As Integer\n    Debug.Print \"##### \u30c6\u30b9\u30c8\uff13\u8a08\u6e2c\u958b\u59cb #####\"\n    total = 0\n    For j = 1 To 10\n        start = GetTickCount()\n        For i = 1 To 16384\n            buf = Number2Letter(i)\n        Next i\n        diff = GetTickCount() - start\n        Debug.Print \"time : \" &amp; Format(diff, \"####\") &amp; \"\u30df\u30ea\u79d2\"\n        total = total + diff\n    Next j\n    Debug.Print \"Total : \" &amp; total &amp; \"\u30df\u30ea\u79d2\"\n      \n    Debug.Print\n    \n    Debug.Print \"##### \u30c6\u30b9\u30c8\uff14\u8a08\u6e2c\u958b\u59cb #####\"\n    total = 0\n    For j = 1 To 10\n        start = GetTickCount()\n        For i = 1 To 16384\n            buf = Number2Letter3(i)\n        Next i\n        diff = GetTickCount() - start\n        Debug.Print \"time : \" &amp; Format(diff, \"####\") &amp; \"\u30df\u30ea\u79d2\"\n        total = total + diff\n    Next j\n    Debug.Print \"Total : \" &amp; total &amp; \"\u30df\u30ea\u79d2\"\nEnd Sub<\/pre>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">##### \u30c6\u30b9\u30c8\uff13\u8a08\u6e2c\u958b\u59cb #####\ntime : 94\u30df\u30ea\u79d2\ntime : 78\u30df\u30ea\u79d2\ntime : 78\u30df\u30ea\u79d2\ntime : 78\u30df\u30ea\u79d2\ntime : 78\u30df\u30ea\u79d2\ntime : 109\u30df\u30ea\u79d2\ntime : 78\u30df\u30ea\u79d2\ntime : 78\u30df\u30ea\u79d2\ntime : 79\u30df\u30ea\u79d2\ntime : 93\u30df\u30ea\u79d2\nTotal : 843\u30df\u30ea\u79d2\n\n##### \u30c6\u30b9\u30c8\uff14\u8a08\u6e2c\u958b\u59cb #####\ntime : 78\u30df\u30ea\u79d2\ntime : 79\u30df\u30ea\u79d2\ntime : 78\u30df\u30ea\u79d2\ntime : 78\u30df\u30ea\u79d2\ntime : 78\u30df\u30ea\u79d2\ntime : 78\u30df\u30ea\u79d2\ntime : 78\u30df\u30ea\u79d2\ntime : 78\u30df\u30ea\u79d2\ntime : 78\u30df\u30ea\u79d2\ntime : 79\u30df\u30ea\u79d2\nTotal : 782\u30df\u30ea\u79d2<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u30db\u30f3\u30c8\u306b\u5fae\u5dee\u3067\u3059\u304c\u3001\u6539\u5584\u3057\u307e\u3057\u305f\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u307e\u3068\u3081<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u3000\u610f\u5916\u306b\u3082\u601d\u3044\u4ed8\u304d\u3067\u4f5c\u6210\u3057\u305f\u518d\u5e30\u95a2\u6570\u306e\u65b9\u304c\u901f\u304f\u3066\u9a5a\u304d\u307e\u3057\u305f\uff01\u5c11\u91cf\u306e\u30c7\u30fc\u30bf\u306e\u5834\u5408\u306f\u3042\u3093\u307e\u308a\u6c17\u306b\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093\u306d\u3002\u305f\u3060\u3082\u3057<span style=\"font-size: revert;\">\u5927\u91cf\u306b\u30c7\u30fc\u30bf\u3092\u51e6\u7406\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u5834\u5408\u306f\u3001\u518d\u5e30\u3067\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u4f7f\u3044\u307e\u3057\u3087\u3046\uff01<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u3000\u898b\u306b\u304d\u3066\u304f\u308c\u3066\u3001\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u3002\u77f3\u5ddd\u3055\u3093\u3067\u3059\u3002 \u5148\u65e5\u3001\u4ed5\u4e8b\u3092\u3057\u3066\u3044\u305f\u3089\u3001\u5b9f\u884c\u6642\u30a8\u30e9\u30fc\u306e\u539f\u56e0\u3068\u306a\u3063\u305f\u95a2\u6570\u306b\u518d\u3073\u51fa\u4f1a\u3044\u307e\u3057\u305f\u3002\u3053\u306e\u3068\u304d\u306b\u53c2\u8003\u307e\u3067\u306b\u4f5c\u3063\u305f\u95a2\u6570\u3068\u6bd4\u8f03\u3057\u3066\u3001\u306f\u3066\u3001\u3053\u308c\u3063\u3066\u3069\u3063\u3061\u306e\u95a2\u6570\u304c\u901f\u3044\u306e\u3067\u3057\u3087\u3046\u304b\u3001\u3068 &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.ishikawasekkei.com\/index.php\/2024\/08\/26\/which-is-faster-excel-function\/\" class=\"more-link\"><span class=\"screen-reader-text\">&#8220;\u3069\u3063\u3061\u304c\u901f\u3044\uff1f\u30a8\u30af\u30bb\u30eb\u306e\u81ea\u4f5c\u95a2\u6570&#8221; \u306e<\/span>\u7d9a\u304d\u3092\u8aad\u3080<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8,2],"tags":[],"class_list":["post-2185","post","type-post","status-publish","format-standard","hentry","category-program","category-blog"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"sTone\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.ishikawasekkei.com\/index.php\/2024\/08\/26\/which-is-faster-excel-function\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"ja_JP\" \/>\n\t\t<meta property=\"og:site_name\" content=\"\u682a\u5f0f\u4f1a\u793e \u77f3\u5ddd\u8a2d\u8a08 \u30b7\u30b9\u30c6\u30e0\u958b\u767a\u3092\u3068\u3053\u3068\u3093\u6975\u3081\u307e\u3059\uff01 | \u3068\u3044\u3046\u3053\u3068\u3067\u4e00\u7dd2\u306b\u6975\u3081\u307e\u3057\u3087\u3046\uff01\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u8ad6\u7406\u8a2d\u8a08\uff08\u696d\u52d9\u5206\u6790\uff09\u304c\u8da3\u5473\u306e\u3088\u3046\u306b\u306a\u3063\u3066\u3057\u307e\u3063\u305f\u30b7\u30b9\u30c6\u30e0\u958b\u767a\u306e\u30b9\u30da\u30b7\u30e3\u30ea\u30b9\u30c8\u3067\u3059\u3002\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0\u3082\u5f97\u610f\u3067\u3059\u3002\u30b7\u30b9\u30c6\u30e0\u306b\u304a\u3051\u308b\u69d8\u3005\u306a\u554f\u984c\u3092\u89e3\u6c7a\u3057\u3066\u3044\u307e\u3059\u306e\u3067\u3001\u305d\u308c\u3089\u3092\u5171\u6709\u3067\u304d\u308c\u3070\u3068\u601d\u3044\u307e\u3059\u3002\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\u3069\u3063\u3061\u304c\u901f\u3044\uff1f\u30a8\u30af\u30bb\u30eb\u306e\u81ea\u4f5c\u95a2\u6570 | \u682a\u5f0f\u4f1a\u793e \u77f3\u5ddd\u8a2d\u8a08 \u30b7\u30b9\u30c6\u30e0\u958b\u767a\u3092\u3068\u3053\u3068\u3093\u6975\u3081\u307e\u3059\uff01\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.ishikawasekkei.com\/index.php\/2024\/08\/26\/which-is-faster-excel-function\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.ishikawasekkei.com\/wp-content\/uploads\/2019\/02\/cropped-ishikawasekkei-2.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.ishikawasekkei.com\/wp-content\/uploads\/2019\/02\/cropped-ishikawasekkei-2.png\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-08-25T15:00:00+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-08-28T00:08:55+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"\u3069\u3063\u3061\u304c\u901f\u3044\uff1f\u30a8\u30af\u30bb\u30eb\u306e\u81ea\u4f5c\u95a2\u6570 | \u682a\u5f0f\u4f1a\u793e \u77f3\u5ddd\u8a2d\u8a08 \u30b7\u30b9\u30c6\u30e0\u958b\u767a\u3092\u3068\u3053\u3068\u3093\u6975\u3081\u307e\u3059\uff01\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.ishikawasekkei.com\/wp-content\/uploads\/2019\/02\/cropped-ishikawasekkei-2.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/2024\\\/08\\\/26\\\/which-is-faster-excel-function\\\/#article\",\"name\":\"\\u3069\\u3063\\u3061\\u304c\\u901f\\u3044\\uff1f\\u30a8\\u30af\\u30bb\\u30eb\\u306e\\u81ea\\u4f5c\\u95a2\\u6570 | \\u682a\\u5f0f\\u4f1a\\u793e \\u77f3\\u5ddd\\u8a2d\\u8a08 \\u30b7\\u30b9\\u30c6\\u30e0\\u958b\\u767a\\u3092\\u3068\\u3053\\u3068\\u3093\\u6975\\u3081\\u307e\\u3059\\uff01\",\"headline\":\"\\u3069\\u3063\\u3061\\u304c\\u901f\\u3044\\uff1f\\u30a8\\u30af\\u30bb\\u30eb\\u306e\\u81ea\\u4f5c\\u95a2\\u6570\",\"author\":{\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/author\\\/admin\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/wp-content\\\/uploads\\\/2019\\\/02\\\/ishikawasekkei.png\",\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/#articleImage\",\"width\":1000,\"height\":1000},\"datePublished\":\"2024-08-26T00:00:00+09:00\",\"dateModified\":\"2024-08-28T09:08:55+09:00\",\"inLanguage\":\"ja\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/2024\\\/08\\\/26\\\/which-is-faster-excel-function\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/2024\\\/08\\\/26\\\/which-is-faster-excel-function\\\/#webpage\"},\"articleSection\":\"Program, \\u30d6\\u30ed\\u30b0\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/2024\\\/08\\\/26\\\/which-is-faster-excel-function\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.ishikawasekkei.com\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/category\\\/blog\\\/#listItem\",\"name\":\"\\u30d6\\u30ed\\u30b0\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/category\\\/blog\\\/#listItem\",\"position\":2,\"name\":\"\\u30d6\\u30ed\\u30b0\",\"item\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/category\\\/blog\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/2024\\\/08\\\/26\\\/which-is-faster-excel-function\\\/#listItem\",\"name\":\"\\u3069\\u3063\\u3061\\u304c\\u901f\\u3044\\uff1f\\u30a8\\u30af\\u30bb\\u30eb\\u306e\\u81ea\\u4f5c\\u95a2\\u6570\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/2024\\\/08\\\/26\\\/which-is-faster-excel-function\\\/#listItem\",\"position\":3,\"name\":\"\\u3069\\u3063\\u3061\\u304c\\u901f\\u3044\\uff1f\\u30a8\\u30af\\u30bb\\u30eb\\u306e\\u81ea\\u4f5c\\u95a2\\u6570\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/category\\\/blog\\\/#listItem\",\"name\":\"\\u30d6\\u30ed\\u30b0\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/#organization\",\"name\":\"\\u682a\\u5f0f\\u4f1a\\u793e \\u77f3\\u5ddd\\u8a2d\\u8a08\",\"description\":\"\\u3068\\u3044\\u3046\\u3053\\u3068\\u3067\\u4e00\\u7dd2\\u306b\\u6975\\u3081\\u307e\\u3057\\u3087\\u3046\\uff01\\u30c7\\u30fc\\u30bf\\u30d9\\u30fc\\u30b9\\u8ad6\\u7406\\u8a2d\\u8a08\\uff08\\u696d\\u52d9\\u5206\\u6790\\uff09\\u304c\\u8da3\\u5473\\u306e\\u3088\\u3046\\u306b\\u306a\\u3063\\u3066\\u3057\\u307e\\u3063\\u305f\\u30b7\\u30b9\\u30c6\\u30e0\\u958b\\u767a\\u306e\\u30b9\\u30da\\u30b7\\u30e3\\u30ea\\u30b9\\u30c8\\u3067\\u3059\\u3002\\u30d1\\u30d5\\u30a9\\u30fc\\u30de\\u30f3\\u30b9\\u30c1\\u30e5\\u30fc\\u30cb\\u30f3\\u30b0\\u3082\\u5f97\\u610f\\u3067\\u3059\\u3002\\u30b7\\u30b9\\u30c6\\u30e0\\u306b\\u304a\\u3051\\u308b\\u69d8\\u3005\\u306a\\u554f\\u984c\\u3092\\u89e3\\u6c7a\\u3057\\u3066\\u3044\\u307e\\u3059\\u306e\\u3067\\u3001\\u305d\\u308c\\u3089\\u3092\\u5171\\u6709\\u3067\\u304d\\u308c\\u3070\\u3068\\u601d\\u3044\\u307e\\u3059\\u3002\",\"url\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/wp-content\\\/uploads\\\/2019\\\/02\\\/ishikawasekkei.png\",\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/2024\\\/08\\\/26\\\/which-is-faster-excel-function\\\/#organizationLogo\",\"width\":1000,\"height\":1000},\"image\":{\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/2024\\\/08\\\/26\\\/which-is-faster-excel-function\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/author\\\/admin\\\/#author\",\"url\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/author\\\/admin\\\/\",\"name\":\"sTone\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/2024\\\/08\\\/26\\\/which-is-faster-excel-function\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2f57b28952073aaca504b61d7b66d58e91b0b7847aabadc207080755d0f507ea?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"sTone\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/2024\\\/08\\\/26\\\/which-is-faster-excel-function\\\/#webpage\",\"url\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/2024\\\/08\\\/26\\\/which-is-faster-excel-function\\\/\",\"name\":\"\\u3069\\u3063\\u3061\\u304c\\u901f\\u3044\\uff1f\\u30a8\\u30af\\u30bb\\u30eb\\u306e\\u81ea\\u4f5c\\u95a2\\u6570 | \\u682a\\u5f0f\\u4f1a\\u793e \\u77f3\\u5ddd\\u8a2d\\u8a08 \\u30b7\\u30b9\\u30c6\\u30e0\\u958b\\u767a\\u3092\\u3068\\u3053\\u3068\\u3093\\u6975\\u3081\\u307e\\u3059\\uff01\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/2024\\\/08\\\/26\\\/which-is-faster-excel-function\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/author\\\/admin\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/index.php\\\/author\\\/admin\\\/#author\"},\"datePublished\":\"2024-08-26T00:00:00+09:00\",\"dateModified\":\"2024-08-28T09:08:55+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/#website\",\"url\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/\",\"name\":\"\\u682a\\u5f0f\\u4f1a\\u793e \\u77f3\\u5ddd\\u8a2d\\u8a08 \\u30b7\\u30b9\\u30c6\\u30e0\\u958b\\u767a\\u3092\\u3068\\u3053\\u3068\\u3093\\u6975\\u3081\\u307e\\u3059\\uff01\",\"description\":\"\\u3068\\u3044\\u3046\\u3053\\u3068\\u3067\\u4e00\\u7dd2\\u306b\\u6975\\u3081\\u307e\\u3057\\u3087\\u3046\\uff01\\u30c7\\u30fc\\u30bf\\u30d9\\u30fc\\u30b9\\u8ad6\\u7406\\u8a2d\\u8a08\\uff08\\u696d\\u52d9\\u5206\\u6790\\uff09\\u304c\\u8da3\\u5473\\u306e\\u3088\\u3046\\u306b\\u306a\\u3063\\u3066\\u3057\\u307e\\u3063\\u305f\\u30b7\\u30b9\\u30c6\\u30e0\\u958b\\u767a\\u306e\\u30b9\\u30da\\u30b7\\u30e3\\u30ea\\u30b9\\u30c8\\u3067\\u3059\\u3002\\u30d1\\u30d5\\u30a9\\u30fc\\u30de\\u30f3\\u30b9\\u30c1\\u30e5\\u30fc\\u30cb\\u30f3\\u30b0\\u3082\\u5f97\\u610f\\u3067\\u3059\\u3002\\u30b7\\u30b9\\u30c6\\u30e0\\u306b\\u304a\\u3051\\u308b\\u69d8\\u3005\\u306a\\u554f\\u984c\\u3092\\u89e3\\u6c7a\\u3057\\u3066\\u3044\\u307e\\u3059\\u306e\\u3067\\u3001\\u305d\\u308c\\u3089\\u3092\\u5171\\u6709\\u3067\\u304d\\u308c\\u3070\\u3068\\u601d\\u3044\\u307e\\u3059\\u3002\",\"inLanguage\":\"ja\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.ishikawasekkei.com\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\u3069\u3063\u3061\u304c\u901f\u3044\uff1f\u30a8\u30af\u30bb\u30eb\u306e\u81ea\u4f5c\u95a2\u6570 | \u682a\u5f0f\u4f1a\u793e \u77f3\u5ddd\u8a2d\u8a08 \u30b7\u30b9\u30c6\u30e0\u958b\u767a\u3092\u3068\u3053\u3068\u3093\u6975\u3081\u307e\u3059\uff01","description":"","canonical_url":"https:\/\/www.ishikawasekkei.com\/index.php\/2024\/08\/26\/which-is-faster-excel-function\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ishikawasekkei.com\/index.php\/2024\/08\/26\/which-is-faster-excel-function\/#article","name":"\u3069\u3063\u3061\u304c\u901f\u3044\uff1f\u30a8\u30af\u30bb\u30eb\u306e\u81ea\u4f5c\u95a2\u6570 | \u682a\u5f0f\u4f1a\u793e \u77f3\u5ddd\u8a2d\u8a08 \u30b7\u30b9\u30c6\u30e0\u958b\u767a\u3092\u3068\u3053\u3068\u3093\u6975\u3081\u307e\u3059\uff01","headline":"\u3069\u3063\u3061\u304c\u901f\u3044\uff1f\u30a8\u30af\u30bb\u30eb\u306e\u81ea\u4f5c\u95a2\u6570","author":{"@id":"https:\/\/www.ishikawasekkei.com\/index.php\/author\/admin\/#author"},"publisher":{"@id":"https:\/\/www.ishikawasekkei.com\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.ishikawasekkei.com\/wp-content\/uploads\/2019\/02\/ishikawasekkei.png","@id":"https:\/\/www.ishikawasekkei.com\/#articleImage","width":1000,"height":1000},"datePublished":"2024-08-26T00:00:00+09:00","dateModified":"2024-08-28T09:08:55+09:00","inLanguage":"ja","mainEntityOfPage":{"@id":"https:\/\/www.ishikawasekkei.com\/index.php\/2024\/08\/26\/which-is-faster-excel-function\/#webpage"},"isPartOf":{"@id":"https:\/\/www.ishikawasekkei.com\/index.php\/2024\/08\/26\/which-is-faster-excel-function\/#webpage"},"articleSection":"Program, \u30d6\u30ed\u30b0"},{"@type":"BreadcrumbList","@id":"https:\/\/www.ishikawasekkei.com\/index.php\/2024\/08\/26\/which-is-faster-excel-function\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.ishikawasekkei.com#listItem","position":1,"name":"Home","item":"https:\/\/www.ishikawasekkei.com","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ishikawasekkei.com\/index.php\/category\/blog\/#listItem","name":"\u30d6\u30ed\u30b0"}},{"@type":"ListItem","@id":"https:\/\/www.ishikawasekkei.com\/index.php\/category\/blog\/#listItem","position":2,"name":"\u30d6\u30ed\u30b0","item":"https:\/\/www.ishikawasekkei.com\/index.php\/category\/blog\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ishikawasekkei.com\/index.php\/2024\/08\/26\/which-is-faster-excel-function\/#listItem","name":"\u3069\u3063\u3061\u304c\u901f\u3044\uff1f\u30a8\u30af\u30bb\u30eb\u306e\u81ea\u4f5c\u95a2\u6570"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ishikawasekkei.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.ishikawasekkei.com\/index.php\/2024\/08\/26\/which-is-faster-excel-function\/#listItem","position":3,"name":"\u3069\u3063\u3061\u304c\u901f\u3044\uff1f\u30a8\u30af\u30bb\u30eb\u306e\u81ea\u4f5c\u95a2\u6570","previousItem":{"@type":"ListItem","@id":"https:\/\/www.ishikawasekkei.com\/index.php\/category\/blog\/#listItem","name":"\u30d6\u30ed\u30b0"}}]},{"@type":"Organization","@id":"https:\/\/www.ishikawasekkei.com\/#organization","name":"\u682a\u5f0f\u4f1a\u793e \u77f3\u5ddd\u8a2d\u8a08","description":"\u3068\u3044\u3046\u3053\u3068\u3067\u4e00\u7dd2\u306b\u6975\u3081\u307e\u3057\u3087\u3046\uff01\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u8ad6\u7406\u8a2d\u8a08\uff08\u696d\u52d9\u5206\u6790\uff09\u304c\u8da3\u5473\u306e\u3088\u3046\u306b\u306a\u3063\u3066\u3057\u307e\u3063\u305f\u30b7\u30b9\u30c6\u30e0\u958b\u767a\u306e\u30b9\u30da\u30b7\u30e3\u30ea\u30b9\u30c8\u3067\u3059\u3002\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0\u3082\u5f97\u610f\u3067\u3059\u3002\u30b7\u30b9\u30c6\u30e0\u306b\u304a\u3051\u308b\u69d8\u3005\u306a\u554f\u984c\u3092\u89e3\u6c7a\u3057\u3066\u3044\u307e\u3059\u306e\u3067\u3001\u305d\u308c\u3089\u3092\u5171\u6709\u3067\u304d\u308c\u3070\u3068\u601d\u3044\u307e\u3059\u3002","url":"https:\/\/www.ishikawasekkei.com\/","logo":{"@type":"ImageObject","url":"https:\/\/www.ishikawasekkei.com\/wp-content\/uploads\/2019\/02\/ishikawasekkei.png","@id":"https:\/\/www.ishikawasekkei.com\/index.php\/2024\/08\/26\/which-is-faster-excel-function\/#organizationLogo","width":1000,"height":1000},"image":{"@id":"https:\/\/www.ishikawasekkei.com\/index.php\/2024\/08\/26\/which-is-faster-excel-function\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/www.ishikawasekkei.com\/index.php\/author\/admin\/#author","url":"https:\/\/www.ishikawasekkei.com\/index.php\/author\/admin\/","name":"sTone","image":{"@type":"ImageObject","@id":"https:\/\/www.ishikawasekkei.com\/index.php\/2024\/08\/26\/which-is-faster-excel-function\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/2f57b28952073aaca504b61d7b66d58e91b0b7847aabadc207080755d0f507ea?s=96&d=mm&r=g","width":96,"height":96,"caption":"sTone"}},{"@type":"WebPage","@id":"https:\/\/www.ishikawasekkei.com\/index.php\/2024\/08\/26\/which-is-faster-excel-function\/#webpage","url":"https:\/\/www.ishikawasekkei.com\/index.php\/2024\/08\/26\/which-is-faster-excel-function\/","name":"\u3069\u3063\u3061\u304c\u901f\u3044\uff1f\u30a8\u30af\u30bb\u30eb\u306e\u81ea\u4f5c\u95a2\u6570 | \u682a\u5f0f\u4f1a\u793e \u77f3\u5ddd\u8a2d\u8a08 \u30b7\u30b9\u30c6\u30e0\u958b\u767a\u3092\u3068\u3053\u3068\u3093\u6975\u3081\u307e\u3059\uff01","inLanguage":"ja","isPartOf":{"@id":"https:\/\/www.ishikawasekkei.com\/#website"},"breadcrumb":{"@id":"https:\/\/www.ishikawasekkei.com\/index.php\/2024\/08\/26\/which-is-faster-excel-function\/#breadcrumblist"},"author":{"@id":"https:\/\/www.ishikawasekkei.com\/index.php\/author\/admin\/#author"},"creator":{"@id":"https:\/\/www.ishikawasekkei.com\/index.php\/author\/admin\/#author"},"datePublished":"2024-08-26T00:00:00+09:00","dateModified":"2024-08-28T09:08:55+09:00"},{"@type":"WebSite","@id":"https:\/\/www.ishikawasekkei.com\/#website","url":"https:\/\/www.ishikawasekkei.com\/","name":"\u682a\u5f0f\u4f1a\u793e \u77f3\u5ddd\u8a2d\u8a08 \u30b7\u30b9\u30c6\u30e0\u958b\u767a\u3092\u3068\u3053\u3068\u3093\u6975\u3081\u307e\u3059\uff01","description":"\u3068\u3044\u3046\u3053\u3068\u3067\u4e00\u7dd2\u306b\u6975\u3081\u307e\u3057\u3087\u3046\uff01\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u8ad6\u7406\u8a2d\u8a08\uff08\u696d\u52d9\u5206\u6790\uff09\u304c\u8da3\u5473\u306e\u3088\u3046\u306b\u306a\u3063\u3066\u3057\u307e\u3063\u305f\u30b7\u30b9\u30c6\u30e0\u958b\u767a\u306e\u30b9\u30da\u30b7\u30e3\u30ea\u30b9\u30c8\u3067\u3059\u3002\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0\u3082\u5f97\u610f\u3067\u3059\u3002\u30b7\u30b9\u30c6\u30e0\u306b\u304a\u3051\u308b\u69d8\u3005\u306a\u554f\u984c\u3092\u89e3\u6c7a\u3057\u3066\u3044\u307e\u3059\u306e\u3067\u3001\u305d\u308c\u3089\u3092\u5171\u6709\u3067\u304d\u308c\u3070\u3068\u601d\u3044\u307e\u3059\u3002","inLanguage":"ja","publisher":{"@id":"https:\/\/www.ishikawasekkei.com\/#organization"}}]},"og:locale":"ja_JP","og:site_name":"\u682a\u5f0f\u4f1a\u793e \u77f3\u5ddd\u8a2d\u8a08 \u30b7\u30b9\u30c6\u30e0\u958b\u767a\u3092\u3068\u3053\u3068\u3093\u6975\u3081\u307e\u3059\uff01 | \u3068\u3044\u3046\u3053\u3068\u3067\u4e00\u7dd2\u306b\u6975\u3081\u307e\u3057\u3087\u3046\uff01\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u8ad6\u7406\u8a2d\u8a08\uff08\u696d\u52d9\u5206\u6790\uff09\u304c\u8da3\u5473\u306e\u3088\u3046\u306b\u306a\u3063\u3066\u3057\u307e\u3063\u305f\u30b7\u30b9\u30c6\u30e0\u958b\u767a\u306e\u30b9\u30da\u30b7\u30e3\u30ea\u30b9\u30c8\u3067\u3059\u3002\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0\u3082\u5f97\u610f\u3067\u3059\u3002\u30b7\u30b9\u30c6\u30e0\u306b\u304a\u3051\u308b\u69d8\u3005\u306a\u554f\u984c\u3092\u89e3\u6c7a\u3057\u3066\u3044\u307e\u3059\u306e\u3067\u3001\u305d\u308c\u3089\u3092\u5171\u6709\u3067\u304d\u308c\u3070\u3068\u601d\u3044\u307e\u3059\u3002","og:type":"article","og:title":"\u3069\u3063\u3061\u304c\u901f\u3044\uff1f\u30a8\u30af\u30bb\u30eb\u306e\u81ea\u4f5c\u95a2\u6570 | \u682a\u5f0f\u4f1a\u793e \u77f3\u5ddd\u8a2d\u8a08 \u30b7\u30b9\u30c6\u30e0\u958b\u767a\u3092\u3068\u3053\u3068\u3093\u6975\u3081\u307e\u3059\uff01","og:url":"https:\/\/www.ishikawasekkei.com\/index.php\/2024\/08\/26\/which-is-faster-excel-function\/","og:image":"https:\/\/www.ishikawasekkei.com\/wp-content\/uploads\/2019\/02\/cropped-ishikawasekkei-2.png","og:image:secure_url":"https:\/\/www.ishikawasekkei.com\/wp-content\/uploads\/2019\/02\/cropped-ishikawasekkei-2.png","article:published_time":"2024-08-25T15:00:00+00:00","article:modified_time":"2024-08-28T00:08:55+00:00","twitter:card":"summary","twitter:title":"\u3069\u3063\u3061\u304c\u901f\u3044\uff1f\u30a8\u30af\u30bb\u30eb\u306e\u81ea\u4f5c\u95a2\u6570 | \u682a\u5f0f\u4f1a\u793e \u77f3\u5ddd\u8a2d\u8a08 \u30b7\u30b9\u30c6\u30e0\u958b\u767a\u3092\u3068\u3053\u3068\u3093\u6975\u3081\u307e\u3059\uff01","twitter:image":"https:\/\/www.ishikawasekkei.com\/wp-content\/uploads\/2019\/02\/cropped-ishikawasekkei-2.png"},"aioseo_meta_data":{"post_id":"2185","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-08-25 03:48:23","updated":"2025-07-16 15:57:45","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.ishikawasekkei.com\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.ishikawasekkei.com\/index.php\/category\/blog\/\" title=\"\u30d6\u30ed\u30b0\">\u30d6\u30ed\u30b0<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t\u3069\u3063\u3061\u304c\u901f\u3044\uff1f\u30a8\u30af\u30bb\u30eb\u306e\u81ea\u4f5c\u95a2\u6570\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.ishikawasekkei.com"},{"label":"\u30d6\u30ed\u30b0","link":"https:\/\/www.ishikawasekkei.com\/index.php\/category\/blog\/"},{"label":"\u3069\u3063\u3061\u304c\u901f\u3044\uff1f\u30a8\u30af\u30bb\u30eb\u306e\u81ea\u4f5c\u95a2\u6570","link":"https:\/\/www.ishikawasekkei.com\/index.php\/2024\/08\/26\/which-is-faster-excel-function\/"}],"_links":{"self":[{"href":"https:\/\/www.ishikawasekkei.com\/index.php\/wp-json\/wp\/v2\/posts\/2185","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ishikawasekkei.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ishikawasekkei.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ishikawasekkei.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ishikawasekkei.com\/index.php\/wp-json\/wp\/v2\/comments?post=2185"}],"version-history":[{"count":5,"href":"https:\/\/www.ishikawasekkei.com\/index.php\/wp-json\/wp\/v2\/posts\/2185\/revisions"}],"predecessor-version":[{"id":2191,"href":"https:\/\/www.ishikawasekkei.com\/index.php\/wp-json\/wp\/v2\/posts\/2185\/revisions\/2191"}],"wp:attachment":[{"href":"https:\/\/www.ishikawasekkei.com\/index.php\/wp-json\/wp\/v2\/media?parent=2185"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ishikawasekkei.com\/index.php\/wp-json\/wp\/v2\/categories?post=2185"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ishikawasekkei.com\/index.php\/wp-json\/wp\/v2\/tags?post=2185"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}