OK. This is what I have (some old code was just 'ed and the dimming isn't included but I think you can figure out what this is. Its still not working though. It stops between the Set wkb line adn the Set wks line. Any suggestions?
' Create App,Book,Sheet objects
Set objXL = CreateObject("Excel.Application"

Set wkb = objXL.Workbooks.Open("Tony KTMB Load Calculation ALSTOM.xls"

Set wks = wkb.Sheets("Spec(Cooling)"
'this connects the window dimension to the side it faces for the direction of travel
'Worksheets("Spec(Cooling)"

.Select
'With Worksheets("Spec(Cooling)"

With wks
For Direction = 1 To 4
windim(Direction, Direction) = wks.Cells(20, 2).Value
windim(Direction, Direction + 1) = wks.Cells(18, 2).Value
windim(Direction, Direction + 2) = wks.Cells(20, 2).Value
windim(Direction, Direction + 3) = wks.Cells(18, 2).Value
Next Direction
End With
'this puts the solar load intensity data in, relating it to direction
Set wks = wkb.Sheets("Solar Intensity Data"

With wks
'Worksheets("Solar Intensity Data"

.Select
'With Worksheets("Solar Load Intensity Data"

For Direction = 1 To 4
ColumnNum = Direction + 2
SolarLoadIntensity(Direction) = wks.Cells(RowNum, ColumnNum).Value
Next Direction
End With