This code successfully copies 1 cells value to another from within the same workbook:

Worksheets("Sheet1").Range("A1").Value = _
Worksheets("Sheet2").Range("A1").Value

Now how would I change the code to copy from one workbook to another?