View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Jacob Skaria Jacob Skaria is offline
external usenet poster
 
Posts: 8,520
Default Referring to a cell without using Offset

Do you mean the first column of the row. If then

Cells(activecell.Row,1)

OR
Cells(activecell.Row,"A")

Or
Range("A" & Activecell.row)


If this post helps click Yes
---------------
Jacob Skaria


"Ayo" wrote:

Is there another way to refer to a cell that is in the same row and Column A
of the active cell. For example, let say Range("D8") is my activecell and I
want to refer to Range("A8"), how do I do that without using c.Offset(0,-3).

Thanks
Ayo