{"id":4426,"date":"2014-05-03T23:44:11","date_gmt":"2014-05-03T14:44:11","guid":{"rendered":"http:\/\/www.ka-net.org\/blog\/?p=4426"},"modified":"2014-05-03T23:44:11","modified_gmt":"2014-05-03T14:44:11","slug":"%e6%8c%87%e5%ae%9a%e3%81%97%e3%81%9f%e3%82%bb%e3%83%ab%e7%af%84%e5%9b%b2%e3%82%92utf-8%e3%82%84euc-jp%e7%ad%89%e3%81%ae%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%a8","status":"publish","type":"post","link":"https:\/\/www.ka-net.org\/blog\/?p=4426","title":{"rendered":"\u6307\u5b9a\u3057\u305f\u30bb\u30eb\u7bc4\u56f2\u3092UTF-8\u3084EUC-JP\u7b49\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u51fa\u529b\u3059\u308bExcel\u30de\u30af\u30ed"},"content":{"rendered":"<p>Excel\u30d5\u30a1\u30a4\u30eb\u3092UTF-8\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u51fa\u529b\u3059\u308b\u5fc5\u8981\u304c\u3042\u3063\u305f\u306e\u3067\u3001Stream\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u4f7f\u3063\u305f\u7c21\u5358\u306a\u30de\u30af\u30ed\u3092\u4f5c\u3063\u3066\u307f\u307e\u3057\u305f\u3002<\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">Option Explicit\r\n\r\nPublic Sub Sample()\r\n  If LCase(TypeName(Application.Selection)) &lt;&gt; &quot;range&quot; Then Exit Sub\r\n  '\u9078\u629e\u7bc4\u56f2\u3092&#x5B;UTF-8,\u30bf\u30d6\u533a\u5207\u308a,CRLF\u6539\u884c,\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3\u56f2\u307f\u6709]\u3067&#x5B;C:\\Test\\Test.csv]\u3068\u3057\u3066\u51fa\u529b\r\n  RangeToText Application.Selection, &quot;C:\\Test\\Test.csv&quot;, &quot;utf-8&quot;\r\n  '\u9078\u629e\u7bc4\u56f2\u3092&#x5B;EUC-JP,\u30ab\u30f3\u30de\u533a\u5207\u308a,LF\u6539\u884c,\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3\u56f2\u307f\u7121]\u3067&#x5B;C:\\Test\\Test2.csv]\u3068\u3057\u3066\u51fa\u529b\r\n  RangeToText Application.Selection, &quot;C:\\Test\\Test2.csv&quot;, &quot;euc-jp&quot;, &quot;,&quot;, 10, False\r\n  MsgBox &quot;\u51e6\u7406\u304c\u7d42\u4e86\u3057\u307e\u3057\u305f\u3002&quot;, vbInformation + vbSystemModal\r\nEnd Sub\r\n\r\nPrivate Sub RangeToText(ByVal TargetRange As Excel.Range, _\r\n                        ByVal FilePath As String, _\r\n                        ByVal CharacterSet As String, _\r\n                        Optional ByVal Separator As String = vbTab, _\r\n                        Optional ByVal LnSeparator As Long = -1, _\r\n                        Optional ByVal FlgQuotes As Boolean = True)\r\n  '\u6307\u5b9a\u3057\u305f\u30bb\u30eb\u7bc4\u56f2\u3092\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u51fa\u529b\r\n  '----------------------------------------\r\n  'TargetRange:\u51fa\u529b\u5bfe\u8c61\u30bb\u30eb\u7bc4\u56f2\r\n  'FilePath:\u51fa\u529b\u5148\u306e\u30d5\u30a9\u30eb\u30c0\u30d1\u30b9\r\n  'CharacterSet:\u6587\u5b57\u30bb\u30c3\u30c8(HKEY_CLASSES_ROOT\\MIME\\Database\\Charset \u53c2\u7167)\r\n  'Separator:\u533a\u5207\u308a\u6587\u5b57\r\n  'LnSeparator:\u884c\u533a\u5207\u308a\u6587\u5b57(adCR:13, adCRLF:-1, adLF:10)\r\n  'FlgQuotes:&#x5B;&quot;]\u3067\u56f2\u3080\u304b\u3069\u3046\u304b\u3092\u6307\u5b9a\r\n  Dim str As String\r\n  Dim i As Long, j As Long\r\n  Const adTypeText = 2\r\n  Const adWriteChar = 0\r\n  Const adWriteLine = 1\r\n  Const adSaveCreateOverWrite = 2\r\n  \r\n  On Error Resume Next\r\n  With CreateObject(&quot;ADODB.Stream&quot;)\r\n    .Type = adTypeText\r\n    .Charset = CharacterSet\r\n    .LineSeparator = LnSeparator\r\n    .Open\r\n    For i = 1 To TargetRange.Rows.Count\r\n      For j = 1 To TargetRange.Columns.Count\r\n        If j = 1 Then\r\n          If FlgQuotes = True Then\r\n            str = ChrW(&amp;H22) &amp; TargetRange(i, j) &amp; ChrW(&amp;H22)\r\n          Else\r\n            str = TargetRange(i, j)\r\n          End If\r\n        Else\r\n          If FlgQuotes = True Then\r\n            str = str &amp; Separator &amp; ChrW(&amp;H22) &amp; TargetRange(i, j).Value &amp; ChrW(&amp;H22)\r\n          Else\r\n            str = str &amp; Separator &amp; TargetRange(i, j).Value\r\n          End If\r\n        End If\r\n      Next\r\n      If i = TargetRange.Rows.Count Then\r\n        .WriteText str, adWriteChar\r\n      Else\r\n        .WriteText str, adWriteLine\r\n      End If\r\n    Next\r\n    .SaveToFile FilePath, adSaveCreateOverWrite\r\n    .Close\r\n  End With\r\n  If Err.Number &lt;&gt; 0 Then\r\n    MsgBox &quot;Err:&quot; &amp; Err.Description, vbCritical + vbSystemModal\r\n    Exit Sub\r\n  End If\r\n  On Error GoTo 0\r\nEnd Sub<\/pre>\n<p>\u6587\u5b57\u30bb\u30c3\u30c8\u3084\u533a\u5207\u308a\u6587\u5b57\u3092\u5f15\u6570\u306b\u3057\u3066\u3044\u308b\u306e\u3067\u3001\u4f8b\u3048\u3070\u3001[<em>LF\u533a\u5207\u308a\u306e\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3\u56f2\u307f\u7121\u3057EUC-JP\u30c6\u30ad\u30b9\u30c8<\/em>]\u3068\u3044\u3063\u305f\u30d5\u30a1\u30a4\u30eb\u3082\u7c21\u5358\u306b\u4f5c\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"Excel\u30d5\u30a1\u30a4\u30eb\u3092UTF-8\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u51fa\u529b\u3059\u308b\u5fc5\u8981\u304c\u3042\u3063\u305f\u306e\u3067\u3001Stream\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u4f7f\u3063\u305f\u7c21\u5358\u306a\u30de\u30af\u30ed\u3092\u4f5c\u3063\u3066\u307f\u307e\u3057\u305f\u3002 Option Explicit Public Sub Sample() If L [&hellip;]","protected":false},"author":1,"featured_media":7111,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[4,48],"tags":[],"class_list":["post-4426","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-office","category-excel-office"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Excel\u30d5\u30a1\u30a4\u30eb\u3092UTF-8\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u51fa\u529b\u3059\u308b\u5fc5\u8981\u304c\u3042\u3063\u305f\u306e\u3067\u3001Stream\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u4f7f\u3063\u305f\u7c21\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"\u304d\u306c\u3042\u3055\"\/>\n\t<meta name=\"google-site-verification\" content=\"xy7uchdGM1SE5sADlVsdekXridA1vSaVWceffSwnE48\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.ka-net.org\/blog\/?p=4426\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"ja_JP\" \/>\n\t\t<meta property=\"og:site_name\" content=\"\u521d\u5fc3\u8005\u5099\u5fd8\u9332 | Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\u6307\u5b9a\u3057\u305f\u30bb\u30eb\u7bc4\u56f2\u3092UTF-8\u3084EUC-JP\u7b49\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u51fa\u529b\u3059\u308bExcel\u30de\u30af\u30ed | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta property=\"og:description\" content=\"Excel\u30d5\u30a1\u30a4\u30eb\u3092UTF-8\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u51fa\u529b\u3059\u308b\u5fc5\u8981\u304c\u3042\u3063\u305f\u306e\u3067\u3001Stream\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u4f7f\u3063\u305f\u7c21\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.ka-net.org\/blog\/?p=4426\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2014-05-03T14:44:11+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2014-05-03T14:44:11+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"\u6307\u5b9a\u3057\u305f\u30bb\u30eb\u7bc4\u56f2\u3092UTF-8\u3084EUC-JP\u7b49\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u51fa\u529b\u3059\u308bExcel\u30de\u30af\u30ed | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Excel\u30d5\u30a1\u30a4\u30eb\u3092UTF-8\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u51fa\u529b\u3059\u308b\u5fc5\u8981\u304c\u3042\u3063\u305f\u306e\u3067\u3001Stream\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u4f7f\u3063\u305f\u7c21\" \/>\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.ka-net.org\\\/blog\\\/?p=4426#article\",\"name\":\"\\u6307\\u5b9a\\u3057\\u305f\\u30bb\\u30eb\\u7bc4\\u56f2\\u3092UTF-8\\u3084EUC-JP\\u7b49\\u306e\\u30c6\\u30ad\\u30b9\\u30c8\\u30d5\\u30a1\\u30a4\\u30eb\\u3068\\u3057\\u3066\\u51fa\\u529b\\u3059\\u308bExcel\\u30de\\u30af\\u30ed | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"headline\":\"\\u6307\\u5b9a\\u3057\\u305f\\u30bb\\u30eb\\u7bc4\\u56f2\\u3092UTF-8\\u3084EUC-JP\\u7b49\\u306e\\u30c6\\u30ad\\u30b9\\u30c8\\u30d5\\u30a1\\u30a4\\u30eb\\u3068\\u3057\\u3066\\u51fa\\u529b\\u3059\\u308bExcel\\u30de\\u30af\\u30ed\",\"author\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/wp-content\\\/uploads\\\/eyecatch-Excel.png\",\"width\":790,\"height\":480},\"datePublished\":\"2014-05-03T23:44:11+09:00\",\"dateModified\":\"2014-05-03T23:44:11+09:00\",\"inLanguage\":\"ja\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4426#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4426#webpage\"},\"articleSection\":\"Office\\u95a2\\u9023, Excel\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4426#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=4#listItem\",\"name\":\"Office\\u95a2\\u9023\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=4#listItem\",\"position\":2,\"name\":\"Office\\u95a2\\u9023\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=4\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=48#listItem\",\"name\":\"Excel\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=48#listItem\",\"position\":3,\"name\":\"Excel\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=48\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4426#listItem\",\"name\":\"\\u6307\\u5b9a\\u3057\\u305f\\u30bb\\u30eb\\u7bc4\\u56f2\\u3092UTF-8\\u3084EUC-JP\\u7b49\\u306e\\u30c6\\u30ad\\u30b9\\u30c8\\u30d5\\u30a1\\u30a4\\u30eb\\u3068\\u3057\\u3066\\u51fa\\u529b\\u3059\\u308bExcel\\u30de\\u30af\\u30ed\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=4#listItem\",\"name\":\"Office\\u95a2\\u9023\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4426#listItem\",\"position\":4,\"name\":\"\\u6307\\u5b9a\\u3057\\u305f\\u30bb\\u30eb\\u7bc4\\u56f2\\u3092UTF-8\\u3084EUC-JP\\u7b49\\u306e\\u30c6\\u30ad\\u30b9\\u30c8\\u30d5\\u30a1\\u30a4\\u30eb\\u3068\\u3057\\u3066\\u51fa\\u529b\\u3059\\u308bExcel\\u30de\\u30af\\u30ed\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=48#listItem\",\"name\":\"Excel\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\",\"name\":\"\\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"Power Automate for desktop\\u3084Microsoft Office\\u958b\\u767a\\u306e\\u60c5\\u5831\\u304c\\u6e80\\u8f09\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1\",\"name\":\"\\u304d\\u306c\\u3042\\u3055\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4426#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1c6237fc3012b3da1f36fa6435b2ccea656e2ff69a51f709c7d8352c69356dc3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"\\u304d\\u306c\\u3042\\u3055\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4426#webpage\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4426\",\"name\":\"\\u6307\\u5b9a\\u3057\\u305f\\u30bb\\u30eb\\u7bc4\\u56f2\\u3092UTF-8\\u3084EUC-JP\\u7b49\\u306e\\u30c6\\u30ad\\u30b9\\u30c8\\u30d5\\u30a1\\u30a4\\u30eb\\u3068\\u3057\\u3066\\u51fa\\u529b\\u3059\\u308bExcel\\u30de\\u30af\\u30ed | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"Excel\\u30d5\\u30a1\\u30a4\\u30eb\\u3092UTF-8\\u306e\\u30c6\\u30ad\\u30b9\\u30c8\\u30d5\\u30a1\\u30a4\\u30eb\\u3067\\u51fa\\u529b\\u3059\\u308b\\u5fc5\\u8981\\u304c\\u3042\\u3063\\u305f\\u306e\\u3067\\u3001Stream\\u30aa\\u30d6\\u30b8\\u30a7\\u30af\\u30c8\\u3092\\u4f7f\\u3063\\u305f\\u7c21\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4426#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/wp-content\\\/uploads\\\/eyecatch-Excel.png\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4426\\\/#mainImage\",\"width\":790,\"height\":480},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=4426#mainImage\"},\"datePublished\":\"2014-05-03T23:44:11+09:00\",\"dateModified\":\"2014-05-03T23:44:11+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/\",\"name\":\"\\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"Power Automate for desktop\\u3084Microsoft Office\\u958b\\u767a\\u306e\\u60c5\\u5831\\u304c\\u6e80\\u8f09\",\"inLanguage\":\"ja\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\u6307\u5b9a\u3057\u305f\u30bb\u30eb\u7bc4\u56f2\u3092UTF-8\u3084EUC-JP\u7b49\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u51fa\u529b\u3059\u308bExcel\u30de\u30af\u30ed | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"Excel\u30d5\u30a1\u30a4\u30eb\u3092UTF-8\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u51fa\u529b\u3059\u308b\u5fc5\u8981\u304c\u3042\u3063\u305f\u306e\u3067\u3001Stream\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u4f7f\u3063\u305f\u7c21","canonical_url":"https:\/\/www.ka-net.org\/blog\/?p=4426","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"xy7uchdGM1SE5sADlVsdekXridA1vSaVWceffSwnE48","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ka-net.org\/blog\/?p=4426#article","name":"\u6307\u5b9a\u3057\u305f\u30bb\u30eb\u7bc4\u56f2\u3092UTF-8\u3084EUC-JP\u7b49\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u51fa\u529b\u3059\u308bExcel\u30de\u30af\u30ed | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","headline":"\u6307\u5b9a\u3057\u305f\u30bb\u30eb\u7bc4\u56f2\u3092UTF-8\u3084EUC-JP\u7b49\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u51fa\u529b\u3059\u308bExcel\u30de\u30af\u30ed","author":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"publisher":{"@id":"https:\/\/www.ka-net.org\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-Excel.png","width":790,"height":480},"datePublished":"2014-05-03T23:44:11+09:00","dateModified":"2014-05-03T23:44:11+09:00","inLanguage":"ja","mainEntityOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=4426#webpage"},"isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=4426#webpage"},"articleSection":"Office\u95a2\u9023, Excel"},{"@type":"BreadcrumbList","@id":"https:\/\/www.ka-net.org\/blog\/?p=4426#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.ka-net.org\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=4#listItem","name":"Office\u95a2\u9023"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=4#listItem","position":2,"name":"Office\u95a2\u9023","item":"https:\/\/www.ka-net.org\/blog\/?cat=4","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=48#listItem","name":"Excel"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=48#listItem","position":3,"name":"Excel","item":"https:\/\/www.ka-net.org\/blog\/?cat=48","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=4426#listItem","name":"\u6307\u5b9a\u3057\u305f\u30bb\u30eb\u7bc4\u56f2\u3092UTF-8\u3084EUC-JP\u7b49\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u51fa\u529b\u3059\u308bExcel\u30de\u30af\u30ed"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=4#listItem","name":"Office\u95a2\u9023"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=4426#listItem","position":4,"name":"\u6307\u5b9a\u3057\u305f\u30bb\u30eb\u7bc4\u56f2\u3092UTF-8\u3084EUC-JP\u7b49\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u51fa\u529b\u3059\u308bExcel\u30de\u30af\u30ed","previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=48#listItem","name":"Excel"}}]},{"@type":"Organization","@id":"https:\/\/www.ka-net.org\/blog\/#organization","name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","url":"https:\/\/www.ka-net.org\/blog\/"},{"@type":"Person","@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author","url":"https:\/\/www.ka-net.org\/blog\/?author=1","name":"\u304d\u306c\u3042\u3055","image":{"@type":"ImageObject","@id":"https:\/\/www.ka-net.org\/blog\/?p=4426#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/1c6237fc3012b3da1f36fa6435b2ccea656e2ff69a51f709c7d8352c69356dc3?s=96&d=mm&r=g","width":96,"height":96,"caption":"\u304d\u306c\u3042\u3055"}},{"@type":"WebPage","@id":"https:\/\/www.ka-net.org\/blog\/?p=4426#webpage","url":"https:\/\/www.ka-net.org\/blog\/?p=4426","name":"\u6307\u5b9a\u3057\u305f\u30bb\u30eb\u7bc4\u56f2\u3092UTF-8\u3084EUC-JP\u7b49\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u51fa\u529b\u3059\u308bExcel\u30de\u30af\u30ed | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"Excel\u30d5\u30a1\u30a4\u30eb\u3092UTF-8\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u51fa\u529b\u3059\u308b\u5fc5\u8981\u304c\u3042\u3063\u305f\u306e\u3067\u3001Stream\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u4f7f\u3063\u305f\u7c21","inLanguage":"ja","isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=4426#breadcrumblist"},"author":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"creator":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-Excel.png","@id":"https:\/\/www.ka-net.org\/blog\/?p=4426\/#mainImage","width":790,"height":480},"primaryImageOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=4426#mainImage"},"datePublished":"2014-05-03T23:44:11+09:00","dateModified":"2014-05-03T23:44:11+09:00"},{"@type":"WebSite","@id":"https:\/\/www.ka-net.org\/blog\/#website","url":"https:\/\/www.ka-net.org\/blog\/","name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","inLanguage":"ja","publisher":{"@id":"https:\/\/www.ka-net.org\/blog\/#organization"}}]},"og:locale":"ja_JP","og:site_name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332 | Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","og:type":"article","og:title":"\u6307\u5b9a\u3057\u305f\u30bb\u30eb\u7bc4\u56f2\u3092UTF-8\u3084EUC-JP\u7b49\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u51fa\u529b\u3059\u308bExcel\u30de\u30af\u30ed | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","og:description":"Excel\u30d5\u30a1\u30a4\u30eb\u3092UTF-8\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u51fa\u529b\u3059\u308b\u5fc5\u8981\u304c\u3042\u3063\u305f\u306e\u3067\u3001Stream\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u4f7f\u3063\u305f\u7c21","og:url":"https:\/\/www.ka-net.org\/blog\/?p=4426","article:published_time":"2014-05-03T14:44:11+00:00","article:modified_time":"2014-05-03T14:44:11+00:00","twitter:card":"summary","twitter:title":"\u6307\u5b9a\u3057\u305f\u30bb\u30eb\u7bc4\u56f2\u3092UTF-8\u3084EUC-JP\u7b49\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u51fa\u529b\u3059\u308bExcel\u30de\u30af\u30ed | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","twitter:description":"Excel\u30d5\u30a1\u30a4\u30eb\u3092UTF-8\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u51fa\u529b\u3059\u308b\u5fc5\u8981\u304c\u3042\u3063\u305f\u306e\u3067\u3001Stream\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u4f7f\u3063\u305f\u7c21"},"aioseo_meta_data":{"post_id":"4426","title":null,"description":null,"keywords":null,"keyphrases":null,"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":null,"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":"","isEnabled":true},"graphs":[],"defaultGraph":"","defaultPostTypeGraph":""},"schema_type":null,"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":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-24 07:09:04","updated":"2022-09-14 02:49:34","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-Excel.png","jetpack_shortlink":"https:\/\/wp.me\/p4UZZr-19o","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/4426","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4426"}],"version-history":[{"count":1,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/4426\/revisions"}],"predecessor-version":[{"id":4427,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/4426\/revisions\/4427"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/media\/7111"}],"wp:attachment":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4426"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4426"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4426"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}