I more or less need some input on if this code could be more efficient. If it can be faster please let me know how. All input is much appreciated, even if it is as simply as it's good as is.
Code:
Dim MyTest As Range, AshF As Range, AshT As Range
Dim AshH As Range, AshL As Range, myRng As Range
Dim TestSpecs As Range
Set MyTest = Sheets("Test Sheet").Columns("D:D")
Set AshF = Sheets("Test Sheet").Range("Ash3Freq")
Set AshT = Sheets("Test Sheet").Range("Ash3Trgt")
Set AshH = Sheets("Test Sheet").Range("Ash3Hi")
Set AshL = Sheets("Test Sheet").Range("Ash3Low")
Set myRng = Sheets("Data Sheet").Range("TestColumn")
Set TestSpecs = Sheets("Test Sheet").Range("D9:D12")
AshF = ComboBox1.Value
AshT = TextBox1.Value
AshH = TextBox2.Value
AshL = TextBox3.Value
MyTest.Copy
myRng.Insert shift:=xlRight
TestSpecs.ClearContents
Unload Me