I have a macro that populates a range of cells with the months horizontally, but am getting an error when I try to make it vertical.
Horizontal:
Vertical:
It looks like it has something to do with the (12, )
Any help would be great. Thanks!
Horizontal:
Code:
ActiveCell.Resize(, 12) = Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec")
Vertical:
Code:
ActiveCell.Resize(12, ) = Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec")
It looks like it has something to do with the (12, )
Any help would be great. Thanks!