Hi all
we have an excel spreadsheet that is on SharePoint
I want to make a button the user clicks on that will automatically print selected cells and make 2 copies how do I do this in script?
I have tried the below but shows errors?
Code:
Sub PrintPaper()
ActiveSheet.Range("Your:RangeHere").Select
Selection.PrintOut Copies:=1
End Sub