selection second row to current row excel vba -
i trying find, how can make selection of rows.
i need make selection second row active cell row. can me? thx
rows("2:activecell.row").select
i try one, it´s not working.
you need concatenate active cell. try,
rows("2:" & activecell.row).select
Comments
Post a Comment