Untitled

 avatar
unknown
plain_text
5 months ago
233 B
7
Indexable
' Apply date format to columns B, M, and N
    With SourceWorkbook.Sheets(1)
        .Columns("B").NumberFormat = "m/d/yyyy"
        .Columns("M").NumberFormat = "m/d/yyyy"
        .Columns("N").NumberFormat = "m/d/yyyy"
    End With
Editor is loading...
Leave a Comment