View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Sheeloo[_3_] Sheeloo[_3_] is offline
external usenet poster
 
Posts: 1,805
Default Using a worksheet function to create an unusual cell reference pat

Use this in B1
=INDIRECT("R1C"&((ROW()-1)*6+1),FALSE)

and copy down...


"Josh Craig" wrote:

Can I create a worksheet function to say 'equals this cell reference but six
rows over'?

I want something like this:
in b1:
=a1
in b2:
=cell referenced in b1 plus 6 rows (i.e. g1)
in b3:
=cell referenced in b2 plus another 6 rows over (i.e. m1)

I'm sick of manually selecting cells!