I am trying to write macro that selects a range of cells relative to my active cell and copies all the cells that are selected.
Currently the code I have selects these cells but doesn't copy them.
Sub CellCopy()
ActiveCell.Offset(0).Resize(5, 8).Select
ActiveCell.Copy
End Sub
Thanks, sorry for the very begginer post.