Excel

Copper Contributor

Is there a way to copy a spreadsheet's content and its print parameters to another worksheet in the same file?

1 Reply

@CGEaster1960 

With VBA

 

sub leaf_move()
Sheets("Sheet1").Select
Sheets("Sheet1").Copy
Cells.Select
Selection.Clear
Range("A1").Select
end sub

 

 

NikolinoDE