Sub Summarize()
p = "G:\CVC\Real Estate\EGD Properties\Valuation Workbooks"
f = Dir(p & "\*.xls") 'assumes that the only workbooks in this directory are those you want to summarize
SummaryRow = 5 'Change this to adjust the first row of the summary
Application.ScreenUpdating = False
Do While f <> ""
s = "Exec Summ"
a = Cells(35, 3).Address
Cells(SummaryRow, 11) = GetValue(p, f, s, a)
s = "RCNLD-Bldgs"
a = Cells(35, 9).Address
Cells(SummaryRow, 12) = GetValue(p, f, s, a)
s = "RCNLD-SI"
a = Cells(16, 12).Address
Cells(SummaryRow, 13) = GetValue(p, f, s, a)
s = "Rcnld Equipment"
a = Cells(79, 13).Address
Cells(SummaryRow, 14) = GetValue(p, f, s, a)
s = "Exec Summ"
a = Cells(32, 3).Address
Cells(SummaryRow, 15) = GetValue(p, f, s, a)
a = Cells(36, 3).Address
Cells(SummaryRow, 17) = GetValue(p, f, s, a)
a = Cells(37, 3).Address
Cells(SummaryRow, 18) = GetValue(p, f, s, a)
a = Cells(38, 3).Address
Cells(SummaryRow, 19) = GetValue(p, f, s, a)
a = Cells(39, 3).Address
Cells(SummaryRow, 20) = GetValue(p, f, s, a)
a = Cells(41, 3).Address
Cells(SummaryRow, 21) = GetValue(p, f, s, a)
a = Cells(43, 3).Address
Cells(SummaryRow, 22) = GetValue(p, f, s, a)
a = Cells(45, 3).Address
Cells(SummaryRow, 23) = GetValue(p, f, s, a)
s = "Market Rent Analysis"
a = Cells(15, 6).Address
Cells(SummaryRow, 25) = GetValue(p, f, s, a)
s = "Direct Cap Summary"
a = Cells(5, 5).Address
Cells(SummaryRow, 27) = GetValue(p, f, s, a)
f = Dir()
SummaryRow = SummaryRow + 1
Loop
Application.ScreenUpdating = True
End Sub