I want to find the second available row below row 38.
I found this code to find the first available row, but I don't understand it enough to make it do what I want for row 38.
Can you help me understand the code so I can find the second available row below row 38.
Dim iRow As Long
Dim ws As Worksheet
Set ws = Worksheets("PartsData")
'find first empty row in database
iRow = ws.Cells(Rows.Count, 1) _
.End(xlUp).Offset(1, 0).Row
Thank you for helping me.
Bookmarks