A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
OK
Then try the code
'''**************************************************************************
Private Sub CommandButton1_Click()
Dim xSheet As Worksheet
Application.ScreenUpdating = False
Set xSheet = ActiveSheet
If xSheet.Name <> "Definitions" And xSheet.Name <> "fx" And xSheet.Name <> "Needs" Then
xSheet.Range("A1:O83 ").Copy
With xSheet.Range("A86")
.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
.PasteSpecial Paste:=xlPasteValidation, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
.PasteSpecial Paste:=xlPasteFormats, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
Application.CutCopyMode = False
End With
End If
Application.ScreenUpdating = True
End Sub
'''''******************************************************************************