LuckCalibration
New Member
- Joined
- Jan 11, 2017
- Messages
- 2
Hello I have a Worksheet with Data that is Different sizes as you can see i have many ranges that have Names Trades and Hours aswell as Date
i am trying to make a macro that would select this range regardless of whether it is 14 cells or 5 and then add to the selection the two adjacent cells in the column to the right and then the cells in the row above it below is the vba i do currently have
What i really want to do is make a macro to select these ranges and copy them to the first 3 colums going down in chronological order
Code:
Sub SelectNameColumn()
Range(ActiveCell, ActiveCell.End(xlDown)).Select
End Sub