View Single Post
 
Old 04-05-2021, 12:18 PM
Purfleet Purfleet is offline Windows 10 Office 2019
Expert
 
Join Date: Jun 2020
Location: Essex
Posts: 345
Purfleet is a splendid one to beholdPurfleet is a splendid one to beholdPurfleet is a splendid one to beholdPurfleet is a splendid one to beholdPurfleet is a splendid one to beholdPurfleet is a splendid one to beholdPurfleet is a splendid one to behold
Default

How about the below, in the worksheet you want it to work on (also example uploaded)

Code:
Private Sub Worksheet_Change(ByVal Target As Range)

    On Error Resume Next

    If Target.Column = 1 Then
        If Left(Target.Value, 1) = ">" Then
        
            Target.InsertIndent 10 
        
        End If
        
    End If

End Sub
Attached Files
File Type: xlsm Indent_Purfleet.xlsm (16.5 KB, 8 views)
Reply With Quote