I have an Excel worksheet that contains columns and multiple sheets. I want to copy column A from Sheet1 to Sheet2. Then once I've copied column A, I want column B from Sheet2 to have a specific value (in this case, "D") adjacent to each filled cell in A. I am only stuck with the code below.
Example:
Sheet1 contains:
Column A B C
Arthur 1 34
Bertha 2 35
Sheet2 must have:
Column A B
Arthur "D"
Bertha "D"
Stuck with code:
Worksheets("Sheet1").Columns("A").Copy ActiveCell.Columns("A:A").Columns("A")