I am trying to select a cell and use that as the beginning of a range to 31
columns to the right and then go up and fill down equations that are in row 2.

Here's what i have so far...
Range("A2").Select
Selection.End(xlDown).Offset(0, 38).Select
ActiveCell.Offset(0, 31).Select
Range(Selection, Selection.End(xlUp)).Select
Selection.FillDown

So I start in cell A2 go down to the last record and move over 38 columns
and from then i need to select that cell and 31 cells to the right and fill
down from row 2.

Hope that makes sense and thanks in advance.

Ak