I have a worksheet named for a specific date. The date can also be found in cell A1. I want to copy a column of the data in this worksheet to a column in a summary worksheet with the same date (same workbook). I can find the column number of the column I want to select in the summary worksheet (i.e., D). But, I can't figure-out the code to select this column. This is what I have tried so far...
The reason I want to select the column is to be able to insert a column to do some additional calculations with the data.
Activesheet
A1 = 01/03/2019
A2 = D (column in the Summary worksheet I want to select)
Column = Activesheet.Cells(2, 1)
Sheets("Summary Worksheet").Select
Columns(""Column"&":""Column"").Select
Your suggestions are appreciated.
The reason I want to select the column is to be able to insert a column to do some additional calculations with the data.
Activesheet
A1 = 01/03/2019
A2 = D (column in the Summary worksheet I want to select)
Column = Activesheet.Cells(2, 1)
Sheets("Summary Worksheet").Select
Columns(""Column"&":""Column"").Select
Your suggestions are appreciated.