VBA................
Activecell.Offset(0,25).Select to go to the cell 25 columns to right
Range("F4").Offset(0,25).Select to go to the cell
Range("F4").Value = Range("F4").Offset(0, 25).Value to return the value
Formula..................
=OFFSET(F4,0,25) will return the value of AE4
=OFFSET(F4,0,22) will return the value of AB4
Gord Dibben Excel MVP
>Dear All,
>
[quoted text clipped - 6 lines]
>
>Thanks,