I\'m having a little trouble with finding the last row.
What I am trying to do is find the last row in column "A", then use that to find the last row within
Dim rng As Range Dim FirstRow, LastRow As long Set rng = Selection With rng FirstRow = ActiveCell.Row LastRow = .Rows(.Rows.Count).Row End With