Hello all, I have code that creates borders around all cells with data, which works fine. What is needed is a line or two of code to have it commence creating borders starting at row A3 (because the first two rows are static with common text for each sheet). The border code is designed to wrap any data added in the cells via a user form. Thanks for your help, here is the code I am using:

    With Cells.SpecialCells(xlCellTypeConstants, 23)
        .BorderAround xlContinuous, xlThin, xlColorIndexAutomatic
        On Error Resume Next
        
        With .Borders(xlInsideHorizontal)
            .LineStyle = xlContinuous
            .Weight = xlThin
            .ColorIndex = xlAutomatic
        End With
        
        With .Borders(xlInsideVertical)
            .LineStyle = xlContinuous
            .Weight = xlThin
            .ColorIndex = xlAutomatic
        End With
    End With