D3allamerican07
Board Regular
- Joined
- Jul 22, 2015
- Messages
- 101
Column A on Sheet1 has many different remarks. I need to make a unique list on Sheet2 with values from Column A on Sheet1 but post it in one row. This is the idea:
Sheet1:
Column A
1
1
2
2
2
3
3
3
Sheet2:
Column A------------Column B------------Column C
1-------------------------2----------------------3
The code I have doesn't quite work:
Sheet1:
Column A
1
1
2
2
2
3
3
3
Sheet2:
Column A------------Column B------------Column C
1-------------------------2----------------------3
The code I have doesn't quite work:
Code:
Sheets("Sheet1").Range("A:A").AdvancedFilter Action:=xlFilterInPlace, Unique:=True
Selection.Copy
Range("B1").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True