Apparently, parentheses in VBA function arguments turn ByRefs to ByVals,
And Range Copy, whose only available variable is a Destination Range, needs that destination to be a ByRef?
So, how is this working? Shouldn't the Cell referenced with Worksheet Specified, being a ByRef in parentheses, be converted into a ByVal and cause the Copy to fail?
Range("A1").Copy (Worksheets("Sheet1").Range("E5"))