Hello All - first time using VBA in a while.
I have some pretty basic code I need to tweak to select the visible cells in a range. If it's not asking for too much, I'd also like to make this range dynamic (the number of rows is the only thing that varies, number of columns will be constant).
I have some pretty basic code I need to tweak to select the visible cells in a range. If it's not asking for too much, I'd also like to make this range dynamic (the number of rows is the only thing that varies, number of columns will be constant).
HTML:
Private Sub CopyItOver()
Set Newbook = Workbooks.Add
ThisWorkbook.Worksheets("Proposal Tracker").Range("A15:CQ19").Copy
Newbook.Worksheets("Sheet1").Range("A1").PasteSpecial (xlPasteValues)
End Sub