View Single Post
 
Old 02-04-2024, 10:38 AM
vivka vivka is offline Windows 7 64bit Office 2016
Expert
 
Join Date: Jul 2023
Posts: 293
vivka is on a distinguished road
Default

It's strange, because with me the 1st macro works properly. Anyway, try this one:
Code:
Sub Paras_Paste_Start()
Dim Rng As range
Dim oPar As Paragraph
    
    Application.ScreenUpdating = False
    Set Rng = selection.range
    For Each oPar In Rng.Paragraphs
        oPar.range.InsertBefore Chr(32) & Chr(32)
        oPar.range.Characters.First.Paste
    Next oPar
Application.ScreenUpdating = False
Set Rng = Nothing
End Sub

Last edited by vivka; 02-04-2024 at 01:42 PM.
Reply With Quote