I have a column in Excel that contains dates. Normally, I add a column next to it and use the formula =TEXT(A1,"MMM") to get the month abbreviation like “FEB”. How can I do the same with VBA and then paste the results as values (no formulas)?
expect to find faster and easir way
Range("A1") = Format(Range("A1"),"MMM")