I need to select a range of cells that changes often at a specific point in my code but I dont know how.
After this part I need to select 20 rows to the left. The selected data will then be copied into a specific area on another worksheet. The data could be anywhere from 1 to 30 rows and spans 21 columns.
Anyting helps! Thankz
tweek
Code:
Sub create_er()
Selection.AutoFilter Field:=23, Criteria1:="<>"
Range("W16").Select
Range(Selection, Selection.End(xlDown)).Select
After this part I need to select 20 rows to the left. The selected data will then be copied into a specific area on another worksheet. The data could be anywhere from 1 to 30 rows and spans 21 columns.
Anyting helps! Thankz
tweek