I want to be able to record the row of my activecell, thats no problem, but now i need to select all the rows between that row and the row of a cell i found before
i tried this
Let cellAdress2 = ActiveCell.Row
Rows("cellAddress1:cellAddress2"
.Select
'cellAddress1 is the row stored from the first cell I found,
I keep getting a type mismatch error, can anyone help??
After I do this, I'll just copy and paste it onto another file, but i want to paste it starting at row 2, How would I do this without using
Range("A2"
.Select
thanks!
i tried this
Let cellAdress2 = ActiveCell.Row
Rows("cellAddress1:cellAddress2"
'cellAddress1 is the row stored from the first cell I found,
I keep getting a type mismatch error, can anyone help??
After I do this, I'll just copy and paste it onto another file, but i want to paste it starting at row 2, How would I do this without using
Range("A2"
thanks!