dieserhering
New Member
- Joined
- Mar 24, 2017
- Messages
- 1
Hey,
I am currently working on a macro for duplicating a worksheet and pasting specific values from it into a new column of a remaining worksheet. However, whenever I try to paste link specific values to another worksheet, I receive the message 'Run-time error '424': Object required'. This is the whole macro code for the paste link:
Sub Macro17()
'
' Macro17 Macro
'
'
Range("C6:C18").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Feedback Tracker").Select
ThemeEffectScheme.Paste Link:=True
EndSub
When I press the debug button, excel highlights the following line: 'ThemeEffectScheme.Paste Link:=True'
Does anyone know how to fix that issue? Thank you so much in advance!
I am currently working on a macro for duplicating a worksheet and pasting specific values from it into a new column of a remaining worksheet. However, whenever I try to paste link specific values to another worksheet, I receive the message 'Run-time error '424': Object required'. This is the whole macro code for the paste link:
Sub Macro17()
'
' Macro17 Macro
'
'
Range("C6:C18").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Feedback Tracker").Select
ThemeEffectScheme.Paste Link:=True
EndSub
When I press the debug button, excel highlights the following line: 'ThemeEffectScheme.Paste Link:=True'
Does anyone know how to fix that issue? Thank you so much in advance!