I have a macro and I want it to copy sheet 1 from file A, and paste it (using paste special values) into file B, and hide the macro button on the pasted sheet in file B? This is my starting point
Private Sub Update_Click()
Sheets("Dallas").Select
Sheets("Dallas").Copy
End Sub