OP may? have meant five COLUMNS over?
--
Don Guillett
SalesAid Software
(E-Mail Removed)
"JE McGimpsey" <(E-Mail Removed)> wrote in message
news:jemcgimpsey-(E-Mail Removed)...
> One way:
>
> Public Sub SelectCell5RowsFromActiveCell()
> With ActiveCell
> If .Row <= Rows.Count - 5 Then _
> .Offset(5, 0).Select
> End With
> End Sub
>
>
> In article <(E-Mail Removed)>,
> JasonK <(E-Mail Removed)> wrote:
>
>> seems simple enough, but i can't figure it out.
>>
>> i am at a particular random location, and I need to select the cell 5
>> rows over.
>>
>> TIA
>>
>> JasonK