Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #25  
Old 11-12-2021, 08:21 PM
Guessed's Avatar
Guessed Guessed is offline How to insert paragraph character after every 500 characters? Windows 10 How to insert paragraph character after every 500 characters? Office 2016
Expert
 
Join Date: Mar 2010
Location: Canberra/Melbourne Australia
Posts: 4,185
Guessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant future
Default

Try this alternative approach to see if you are still getting the same issue.
Code:
Sub TextSplitter2()
  Dim Rng As Range, iStep As Long, iStart As Long, iEnd As Long
  Application.ScreenUpdating = False
  With ActiveDocument
    iStep = 500
    iStart = 0
    Do While iStart < .Range.End - iStep
      If iStart + iStep > .Range.End Then
        iEnd = .Range.End
      Else
        iEnd = iStart + iStep
      End If
      Set Rng = .Range(iStart, iStart + iStep)
      If Rng.Characters.Last.Text = vbCr Then
        iStart = iStart + iStep
      Else
        Set Rng = .Range(Rng.Sentences.Last.Start, Rng.Sentences.Last.Start)
        Rng.InsertAfter vbCr & "*** "
        iStart = Rng.End
      End If
    Loop
  End With
  Set Rng = Nothing
  Application.ScreenUpdating = True
End Sub
__________________
Andrew Lockton
Chrysalis Design, Melbourne Australia
Reply With Quote
 

Tags
paragraph character



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to insert paragraph character after every 500 characters? Restricting paragraph styles without restricting character styles Red Pill Word 5 05-25-2012 01:06 PM
character set bobster Word 0 06-07-2011 10:17 AM
How to insert paragraph character after every 500 characters? tab key arrows first character carolinason Word 6 10-30-2010 06:45 PM
Junk characters (box-like characters) in Word file Sashikala Word 1 04-20-2010 02:03 PM
Character style stripped while applying paragraph style sams_gates Word 0 08-29-2009 02:03 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 02:04 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft