Let's say I have 2 different tabs in my excel file. Sheet 1 will have all the master content. Sheet 2 will be a copy of Sheet 1. Please see the picture attach of the content for Sheet 1. I would like Sheet 2 to copy the information from the cells with text and copy over to Sheet 2. Example here
Update:
Please see attachments for error window and code:
Sub Copy()
Sheets("Sheet1").Range("B2:I95").Copy Destination:=Sheets("Sheet2").Range("B1")
End Sub