Office Automation: Copy range text including soft hyphens from Word to Excel or Access while avoiding clipboard

I’m desparately trying to copy a text inside a cell of a narrow word table including softhyphens produced by MSWord’s AutoHyphenation feature to Excel or Access.
It works, when the softhyphens are already available in the table cell.
Run the attached code in MSWord the first time after uncommenting the commented Code lines:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>Option Explicit
Sub CopyWithHyphens()
Dim oExc As Object, excWB As Object, excSheet As Object
Dim myStart As Long, myEnd As Long, CopyRange As Range
Const xlPasteValues = -4163
' when uncommenting the below lines, on my system, the softhyphens aren't available in the table cell until the Sub has finished,
' obviously auto-hyphenation cannot proceed during VBA processing?????
' Dim TestTable As Table
'
''prepare table
' With ActiveDocument
' .AutoHyphenation = True
' If .Tables.Count > 0 Then .Tables(.Tables.Count).Delete
' End With
' Set TestTable = ActiveDocument.Tables.Add(Range:=Selection.Range, NumRows:=1, NumColumns:= _
' 1, DefaultTableBehavior:=wdWord9TableBehavior, AutoFitBehavior:= _
' wdAutoFitFixed)
' With TestTable
' .ApplyStyleHeadingRows = True
' .ApplyStyleLastRow = False
' .ApplyStyleFirstColumn = True
' .ApplyStyleLastColumn = False
' .ApplyStyleRowBands = True
' .ApplyStyleColumnBands = False
' .AllowAutoFit = False
' With .Columns(1)
' .SetWidth CentimetersToPoints(1.999), wdAdjustNone
' End With
' With .Cell(1, 1).Range
' .Text = "This is a long text for demonstration of Autohypenation in a table cell"
' End With
' End With
'select string to copy from the Table,
'remove Cell-Text-End Marker (1 character)
With ActiveDocument
' .Paragraphs(1).Hyphenation = True
myStart = .Tables(1).Cell(1, 1).Range.Start
myEnd = .Tables(1).Cell(1, 1).Range.End - 1
Set CopyRange = .Range(myStart, myEnd)
End With
CopyRange.Copy 'copy the delelcted range, now including also the softhyphens within the text
'open Excel
Set oExc = CreateObject("Excel.Application")
If Not oExc Is Nothing Then
Set excWB = oExc.Workbooks.Add
Set excSheet = excWB.worksheets(1)
oExc.Visible = True
excSheet.Range("A1").PasteSpecial xlPasteValues 'paste the text of the reduced CopyRange to Excel
End If
Set oExc = Nothing
'..
End Sub
</code>
<code>Option Explicit Sub CopyWithHyphens() Dim oExc As Object, excWB As Object, excSheet As Object Dim myStart As Long, myEnd As Long, CopyRange As Range Const xlPasteValues = -4163 ' when uncommenting the below lines, on my system, the softhyphens aren't available in the table cell until the Sub has finished, ' obviously auto-hyphenation cannot proceed during VBA processing????? ' Dim TestTable As Table ' ''prepare table ' With ActiveDocument ' .AutoHyphenation = True ' If .Tables.Count > 0 Then .Tables(.Tables.Count).Delete ' End With ' Set TestTable = ActiveDocument.Tables.Add(Range:=Selection.Range, NumRows:=1, NumColumns:= _ ' 1, DefaultTableBehavior:=wdWord9TableBehavior, AutoFitBehavior:= _ ' wdAutoFitFixed) ' With TestTable ' .ApplyStyleHeadingRows = True ' .ApplyStyleLastRow = False ' .ApplyStyleFirstColumn = True ' .ApplyStyleLastColumn = False ' .ApplyStyleRowBands = True ' .ApplyStyleColumnBands = False ' .AllowAutoFit = False ' With .Columns(1) ' .SetWidth CentimetersToPoints(1.999), wdAdjustNone ' End With ' With .Cell(1, 1).Range ' .Text = "This is a long text for demonstration of Autohypenation in a table cell" ' End With ' End With 'select string to copy from the Table, 'remove Cell-Text-End Marker (1 character) With ActiveDocument ' .Paragraphs(1).Hyphenation = True myStart = .Tables(1).Cell(1, 1).Range.Start myEnd = .Tables(1).Cell(1, 1).Range.End - 1 Set CopyRange = .Range(myStart, myEnd) End With CopyRange.Copy 'copy the delelcted range, now including also the softhyphens within the text 'open Excel Set oExc = CreateObject("Excel.Application") If Not oExc Is Nothing Then Set excWB = oExc.Workbooks.Add Set excSheet = excWB.worksheets(1) oExc.Visible = True excSheet.Range("A1").PasteSpecial xlPasteValues 'paste the text of the reduced CopyRange to Excel End If Set oExc = Nothing '.. End Sub </code>
Option Explicit


Sub CopyWithHyphens()
  Dim oExc As Object, excWB As Object, excSheet As Object
  Dim myStart As Long, myEnd As Long, CopyRange As Range

  Const xlPasteValues = -4163
  
' when uncommenting the below lines, on my system, the softhyphens aren't available in the table cell until the Sub has finished,
' obviously auto-hyphenation cannot proceed during VBA processing?????
  
'    Dim TestTable As Table
'
''prepare table
'    With ActiveDocument
'      .AutoHyphenation = True
'      If .Tables.Count > 0 Then .Tables(.Tables.Count).Delete
'    End With
'    Set TestTable = ActiveDocument.Tables.Add(Range:=Selection.Range, NumRows:=1, NumColumns:= _
'                                                 1, DefaultTableBehavior:=wdWord9TableBehavior, AutoFitBehavior:= _
'                                                 wdAutoFitFixed)
'    With TestTable
'      .ApplyStyleHeadingRows = True
'      .ApplyStyleLastRow = False
'      .ApplyStyleFirstColumn = True
'      .ApplyStyleLastColumn = False
'      .ApplyStyleRowBands = True
'      .ApplyStyleColumnBands = False
'      .AllowAutoFit = False
'      With .Columns(1)
'        .SetWidth CentimetersToPoints(1.999), wdAdjustNone
'      End With
'      With .Cell(1, 1).Range
'        .Text = "This is a long text for demonstration of Autohypenation in a table cell"
'      End With
'    End With

  'select string to copy from the Table,
  'remove Cell-Text-End Marker (1 character)
  With ActiveDocument
'    .Paragraphs(1).Hyphenation = True
    myStart = .Tables(1).Cell(1, 1).Range.Start
    myEnd = .Tables(1).Cell(1, 1).Range.End - 1
    Set CopyRange = .Range(myStart, myEnd)
  End With

  CopyRange.Copy      'copy the delelcted range, now including also the softhyphens within the text

  'open Excel
  Set oExc = CreateObject("Excel.Application")
  If Not oExc Is Nothing Then
    Set excWB = oExc.Workbooks.Add
    Set excSheet = excWB.worksheets(1)
    oExc.Visible = True

    excSheet.Range("A1").PasteSpecial xlPasteValues   'paste the text of the reduced CopyRange to Excel
  End If
  Set oExc = Nothing
  '..
End Sub

Run the code again after commenting teh previously uncommented code lines.
Running the code unommented the first time transfers the string without softhyphens, running it re-commented the second time transfers also the softhyphens, wich is the expected behaviour.

To run the procedure multiple times is very unstable when using the clipboard to transfer the data, does anybody know a method to transfer the text still with the softhyhens included?

I tried it with to store the data in an object by using range.xml, but the softhyphens are not included; the behaviour is similar by using stringValue = range.text.

Anybody an idea?

Grettings

Bernd

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật