I want to copy a selected range of cells to other sheets using the FillAcrossSheets method. What I have tried below in my macro does not work. I know the FillAcrossSheets method has a defined range in the help example, .Range("A5,B9") as the suffix. How do I get it to work when I want the selected range to be copied to additional sheets in an array. What follows gives an error message.
ActiveCell.CurrentRegion.Select
x = Array("Sheet2")
Sheets(x).FillAcrossSheets _
Worksheets("Sheet1").Selection
Thank You,
Lakefish
ActiveCell.CurrentRegion.Select
x = Array("Sheet2")
Sheets(x).FillAcrossSheets _
Worksheets("Sheet1").Selection
Thank You,
Lakefish