I believe this should be an easy one for you vets out there...
I have the following Macro that will change a "data format of any kind" to m/d/yyyy format, but with the "ActiveCell.Column" portion, I have to select each column 1 at a time. Wondering if there's a way to have it work on individual columns or a range of columns selected... My first thought was to simply change "ActiveCell.Column" to "ActiveCell.Columns", but this didn't work... VBA code below:
Sub change_2_short_dt()
a = ActiveCell.Column
Columns(a).Select
Selection.NumberFormat = "m/d/yyyy"
End Sub