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:
ActiveCell.Resize(, 12) = Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec")
Vertical:
ActiveCell.Resize(12, )...