Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #4  
Old 04-30-2016, 06:47 AM
gmayor's Avatar
gmayor gmayor is offline Making a Paragraph Report - Check Paragraphs For First & Last Characters Windows 10 Making a Paragraph Report - Check Paragraphs For First & Last Characters Office 2016
Expert
 
Join Date: Aug 2014
Posts: 4,144
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

In that case the following will work, but not if there is a space between the asterisk and the paragraph break
Code:
Option Explicit
Sub ParagraphReport()
Dim oSource As Document
Dim oTbl As Table
Dim oTarget As Document
Dim oPara As Paragraph
Dim oRng As Range
Dim strFolder As String
Dim strFile As String

    Application.ScreenUpdating = False
    Set oTarget = Documents.Add
    oTarget.PageSetup.Orientation = wdOrientLandscape
    Set oTbl = oTarget.Tables.Add(oTarget.Range, 1, 2)
    With oTbl.Rows(1)
        .Cells(1).Range.Text = " Text Paragraph"
        .Cells(2).Range.Text = "File Name"
    End With
    strFolder = GetFolder

    strFile = Dir(strFolder & "\*.do*", vbNormal)
    While strFile <> ""
        Set oSource = Documents.Open(Filename:=strFolder & "\" & strFile, AddToRecentFiles:=False, Visible:=False)
        For Each oPara In oSource.Paragraphs
            Set oRng = oPara.Range
            oRng.End = oRng.End - 1
            If Not oRng.Characters.First = "*" Or Not oRng.Characters.Last = "*" Then
                With oTbl
                    .Rows.Add
                    .Rows.Last.Range.Cells(1).Range.Text = oPara.Range.Text
                    .Rows.Last.Range.Cells(2).Range.Text = oSource.Name
                End With
            End If
            
        Next oPara
        oSource.Close wdDoNotSaveChanges
        DoEvents
        strFile = Dir()
    Wend
lbl_Exit:
    Set oSource = Nothing
    Set oPara = Nothing
    Set oRng = Nothing
    Set oTarget = Nothing
    Set oTbl = Nothing
    Application.ScreenUpdating = True
    Exit Sub
End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
Automation Process of Schedule Report Output and Report Check Score Card ! ozman86 Word VBA 1 11-19-2014 11:52 PM
Making a Paragraph Report - Check Paragraphs For First &amp; Last Characters making translated paragraphs consecutive user2969 Word 1 01-29-2014 09:00 PM
Making a Paragraph Report - Check Paragraphs For First &amp; Last Characters Cannot select single characters. Word selects paragraphs or parts of sentences. TMinnich Word 2 10-25-2013 09:38 AM
How to combine many paragraphs in one paragraph? Jamal NUMAN Word 25 03-08-2013 04:31 AM
Making a Paragraph Report - Check Paragraphs For First &amp; Last Characters Making sure the correct number of characters are entered. leroytrolley Excel 1 07-25-2008 06:38 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 09:42 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