danhendo888
Board Regular
- Joined
- Jul 15, 2019
- Messages
- 167
- Office Version
- 365
- Platform
- Windows
Trying to copy a column and paste using the clipboard on the Home ribbon.
When I do this it usually converts the text values to numbers (for numbers that I copied and pasted externally)
Run-time error: 1004
Paste method of worksheet class failed
Sheets("Sheet2").Select
Range("K2").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
Application.CutCopyMode = False
ActiveSheet.Paste
Application.CommandBars("Office Clipboard").Visible = False
ActiveCell.Offset(-1, 0).Range("Table1[[#Headers],[GL Account]]").Select
When I do this it usually converts the text values to numbers (for numbers that I copied and pasted externally)
Run-time error: 1004
Paste method of worksheet class failed
Sheets("Sheet2").Select
Range("K2").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
Application.CutCopyMode = False
ActiveSheet.Paste
Application.CommandBars("Office Clipboard").Visible = False
ActiveCell.Offset(-1, 0).Range("Table1[[#Headers],[GL Account]]").Select