0

I need help getting this to get this to run on only one sheet within a workbook.

Sub BOXED_FMO_RawMilk()
'
' BOXED_FMO_RawMilk Macro
'

'
    Worksheets("BOXED").Range("I17:I26").Select
    Selection. Copy
    Range("J17").Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
End Sub
Pᴇʜ
  • 53,845
  • 9
  • 46
  • 68
  • 2
    What's your issue with the code, it is missing an error description. Also see [How to avoid using Select in Excel VBA](https://stackoverflow.com/questions/10714251/how-to-avoid-using-select-in-excel-vba), thgis will very likely solve your issue. – Pᴇʜ Mar 22 '22 at 10:23

0 Answers0