I have a VBA code to find the last row of data in cell A
But i know need to convert Cells A9:CI72 into a table. But the code above will treat the whole table as data even if row 68 is blank. so it inserts the data i want into row 73, which is outside the table.
The intent of this portion of the code was to find last row of data, go down 1 row, copy that row, re-insert it, then paste the new data into that same row, thereby extending the table.
How do i change the find the last row of actual data and ignore the table?
VBA Code:
Range("A65535").End(xlUp).Offset(1, 0).Select
'Copy 1st Blank Row after Data and Paste/Insert
ActiveCell.EntireRow.Select
Selection.Copy
Selection.Insert Shift:=xlDown
Application.CutCopyMode = False
But i know need to convert Cells A9:CI72 into a table. But the code above will treat the whole table as data even if row 68 is blank. so it inserts the data i want into row 73, which is outside the table.
The intent of this portion of the code was to find last row of data, go down 1 row, copy that row, re-insert it, then paste the new data into that same row, thereby extending the table.
How do i change the find the last row of actual data and ignore the table?