{"id":2996,"date":"2013-05-09T16:38:55","date_gmt":"2013-05-09T07:38:55","guid":{"rendered":"http:\/\/www.ka-net.org\/blog\/?p=2996"},"modified":"2013-08-19T17:24:01","modified_gmt":"2013-08-19T08:24:01","slug":"%e3%81%99%e3%81%b9%e3%81%a6%e3%81%ae%e3%83%86%e3%83%bc%e3%83%96%e3%83%ab%e3%81%ae%e7%b5%90%e5%90%88%e3%82%92%e8%a7%a3%e9%99%a4%e3%81%99%e3%82%8bword%e3%83%9e%e3%82%af%e3%83%ad","status":"publish","type":"post","link":"https:\/\/www.ka-net.org\/blog\/?p=2996","title":{"rendered":"\u3059\u3079\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u7d50\u5408\u3092\u89e3\u9664\u3059\u308bWord\u30de\u30af\u30ed"},"content":{"rendered":"<p>\u3059\u3079\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u30bb\u30eb\u7d50\u5408\u3092\u89e3\u9664\u3059\u308bWord\u30de\u30af\u30ed\u3092\u8003\u3048\u3066\u307f\u307e\u3057\u305f(Word 2003\u30682010\u3067\u52d5\u4f5c\u3092\u78ba\u8a8d)\u3002<br \/>\nExcel\u306eUnMerge\u306e\u3088\u3046\u306b\u7d50\u5408\u3092\u89e3\u9664\u3059\u308b\u30e1\u30bd\u30c3\u30c9\u304c\u6a19\u6e96\u3067\u7528\u610f\u3055\u308c\u3066\u3044\u306a\u3044\u306e\u3067\u3001\u82e5\u5e72\u8907\u96d1\u306a\u51e6\u7406\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u3002<br \/>\n\u7279\u306b\u6a2a\u65b9\u6cd5\u306e\u7d50\u5408\u306b\u3064\u3044\u3066\u306f\u5224\u5225\u304c\u3084\u3084\u3053\u3057\u304f\u3001\u4e0b\u8a18\u306e\u30b3\u30fc\u30c9\u3067\u306f\u30c6\u30fc\u30d6\u30eb\u306eXML\u304b\u3089\u53d6\u5f97\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\n<p><span style=\"color: #ff0000; font-weight: bold;\">\u203b \u4e0b\u8a18\u30b3\u30fc\u30c9\u306f\u5165\u308c\u5b50\u306b\u306a\u3063\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306b\u306f\u672a\u5bfe\u5fdc\u3067\u3059\u3002<\/span><\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">Option Explicit\r\n\r\nPrivate Sub UnMergeAllTables()\r\n'\u5168\u30c6\u30fc\u30d6\u30eb\u306e\u7d50\u5408\u89e3\u9664\r\n  UnMergeAllTablesR\r\n  UnMergeAllTablesC\r\n  Selection.HomeKey Unit:=wdStory\r\nEnd Sub\r\n\r\nPrivate Sub UnMergeAllTablesR()\r\n'\u5168\u30c6\u30fc\u30d6\u30eb\u306e\u7e26\u65b9\u5411\u306e\u7d50\u5408\u89e3\u9664\r\n  Dim rowspan As Long\r\n  Dim t As Word.Table\r\n  Dim c As Word.Cell\r\n  \r\n  For Each t In ActiveDocument.Tables\r\n    For Each c In t.Range.Cells\r\n      c.Select\r\n      With Selection\r\n        rowspan = (.Information(wdEndOfRangeRowNumber) - .Information(wdStartOfRangeRowNumber)) + 1\r\n        If rowspan &lt;&gt; 1 Then\r\n          .Cells.Split NumRows:=rowspan, NumColumns:=1, MergeBeforeSplit:=False\r\n        End If\r\n      End With\r\n    Next\r\n  Next\r\nEnd Sub\r\n\r\nPrivate Sub UnMergeAllTablesC()\r\n'\u5168\u30c6\u30fc\u30d6\u30eb\u306e\u6a2a\u65b9\u5411\u306e\u7d50\u5408\u89e3\u9664\r\n  Dim t As Word.Table\r\n  \r\n  For Each t In ActiveDocument.Tables\r\n    UnMergeTableC t\r\n  Next\r\nEnd Sub\r\n\r\nPrivate Sub UnMergeTableC(ByRef tbl As Word.Table)\r\n'\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u6a2a\u65b9\u5411\u306e\u7d50\u5408\u89e3\u9664\r\n  Dim d As Object\r\n  Dim colspan As Long\r\n  Dim i As Long, n As Long\r\n  \r\n  Set d = CreateObject(&quot;MSXML2.DOMDocument&quot;)\r\n  If d.LoadXML(tbl.Range.XML) Then\r\n    With d.SelectNodes(&quot;\/w:wordDocument\/w:body\/wx:sect\/w:tbl\/w:tr&quot;)\r\n      For i = 0 To .Length - 1\r\n        With .Item(i).SelectNodes(&quot;w:tc&quot;)\r\n          For n = 0 To .Length - 1\r\n            If .Item(n).SelectNodes(&quot;w:tcPr\/w:gridSpan&quot;).Length &gt; 0 Then\r\n              colspan = CLng(.Item(n).SelectNodes(&quot;w:tcPr\/w:gridSpan&quot;).Item(0).Attributes(0).Text)\r\n              'Debug.Print colspan, tbl.Cell(i + 1, n + 1).Range.Text '\u78ba\u8a8d\u7528\r\n              tbl.Cell(i + 1, n + 1).Split NumRows:=1, NumColumns:=colspan\r\n            End If\r\n          Next\r\n        End With\r\n      Next\r\n    End With\r\n  End If\r\nEnd Sub<\/pre>\n","protected":false},"excerpt":{"rendered":"\u3059\u3079\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u30bb\u30eb\u7d50\u5408\u3092\u89e3\u9664\u3059\u308bWord\u30de\u30af\u30ed\u3092\u8003\u3048\u3066\u307f\u307e\u3057\u305f(Word 2003\u30682010\u3067\u52d5\u4f5c\u3092\u78ba\u8a8d)\u3002 Excel\u306eUnMerge\u306e\u3088\u3046\u306b\u7d50\u5408\u3092\u89e3\u9664\u3059\u308b\u30e1\u30bd\u30c3\u30c9\u304c\u6a19\u6e96\u3067\u7528\u610f\u3055\u308c\u3066\u3044\u306a\u3044\u306e\u3067\u3001\u82e5\u5e72\u8907\u96d1\u306a\u51e6\u7406\u306b\u306a\u3063 [&hellip;]","protected":false},"author":1,"featured_media":7134,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_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}},"categories":[4,49],"tags":[45,85],"class_list":["post-2996","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-office","category-word-office","tag-word-","tag-word-vba-2"],"aioseo_notices":[],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-Word.png","jetpack_shortlink":"https:\/\/wp.me\/p4UZZr-Mk","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/2996","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=2996"}],"version-history":[{"count":6,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/2996\/revisions"}],"predecessor-version":[{"id":3461,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/2996\/revisions\/3461"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/media\/7134"}],"wp:attachment":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2996"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2996"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2996"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}