beartooth91
New Member
- Joined
- Dec 15, 2024
- Messages
- 9
- Office Version
- 365
- 2019
- 2016
- Platform
- Windows
VBA Code:
Sub First_Empty_Row()
Worksheets("Combined").Range("B" & Rows.Count).End(xlUp).Select
End Sub
The above finds my last cell in column B with data.
Is there a way to write this, on one line and without using variables, to find the first empty cell/row?
What I'm trying to do here is copy and paste a bunch of rows from other workbooks and I'd like to use the .Copy Destination:= verbiage to do it but I need the first empty cell.
Yep, I need the .Row + 1 ending in but can't find a way to work it in that line......