MS Word Rearrange sentence order from last to first

Hello dear experts,

I have downloaded Facebook messages but the original html file showing the messages from downward to upward( I.e first message in the last page) now I want rearrange all the text in Microsoft word making it the texts arrange form last sentence to first sentence like the following

jack is going to home.

jack is very good boy.

Yarivan is study math. 

Lets play football.

Now suppose these are about 20 thousand sentences I want rearrange them in the following order

Lets play football.

Yarivan is study math.

jack is very good boy.

jack is going to home.

IS THERE ANY WAY TO DO THIS????

Regards

Answer
Answer
Volunteering to "pay forward" the help I've received in the Microsoft user community.

Charles Kenyon
Sun Prairie, Wisconsin
wordfaq[at]addbalance[dot]com

1 person found this reply helpful

·

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

Answer
Answer

Running a macro with the following code, when the document containing the sentences is the active document, will create a new document with the sentences arranged in the reverse order.

Dim SourceDoc As Document

Dim TargetDoc As Document

Dim i As Long

Set SourceDoc = ActiveDocument

Set TargetDoc = Documents.Add

With SourceDoc.Range

    For i = .Paragraphs.Count To 1 Step -1

        TargetDoc.Range.InsertAfter .Paragraphs(i).Range.FormattedText

    Next i

End With

Hope this helps,
Doug Robbins - MVP Office Apps & Services (Word)
dougrobbinsmvp@gmail.com
It's time to replace ‘Diversity, Equity & Inclusion’ with ‘Excellence, Opportunity & Civility’ - V Ramaswamy

2 people found this reply helpful

·

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

 
 

Question Info


Last updated February 12, 2025 Views 1,139 Applies to: