A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
It would retain the formulae.
If you do not want them then use
Dim strPath As String
Dim strFile As String
Dim SourceWbk As Workbook
Dim SourceWsht As Worksheet
Dim TargetWsht As Worksheet
strPath = "I:\EXPENDITURE SUMMARY FY1213.xls"
Application.ScreenUpdating = False
Set TargetWsht = ActiveSheet
Set SourceWbk = Workbooks.Open(strPath)
Set SourceWsht = SourceWbk.Sheets(1)
SourceWsht.UsedRange.Copy
TargetWsht.Range("A1").PasteSpecial xlPasteValuesAndNumberFormats
SourceWbk.Close SaveChanges:=False
Application.ScreenUpdating = True
If you do not want the top lefthand cell of the copied range to be in cell A1, replace that with the required cell reference.