Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
in my program Cell 1 references a specific cell in another worksheet. In my
program Cell 2 wants to reference the cell below the referenced cell in Cell 1. i am using Cell 1 as my reference point so Cells 2, 3, 4, 5, 6, etc... will reference the data/Rows below the Referenced cell in the other worksheet. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Josh,
Try something like: Dim rng1 As Range, rng2 As Range, rng3 As Range Set rng1 = Sheets("Sheet2").Range("A1") Set rng2 = rng1(2) Set rng3 = rng1(3) --- Regards, Norman "Josh" wrote in message ... in my program Cell 1 references a specific cell in another worksheet. In my program Cell 2 wants to reference the cell below the referenced cell in Cell 1. i am using Cell 1 as my reference point so Cells 2, 3, 4, 5, 6, etc... will reference the data/Rows below the Referenced cell in the other worksheet. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
set Cell2 = Cell1.offset(1,0)
set Cell3 = Cell1.offset(2,0) 'etc etc Tim "Josh" wrote in message ... in my program Cell 1 references a specific cell in another worksheet. In my program Cell 2 wants to reference the cell below the referenced cell in Cell 1. i am using Cell 1 as my reference point so Cells 2, 3, 4, 5, 6, etc... will reference the data/Rows below the Referenced cell in the other worksheet. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Return Results of a cell based on cell referenced in a cell | Excel Worksheet Functions | |||
Need fucntion to reference cell on worksheet referenced by known n | Excel Worksheet Functions | |||
Change Text Color in one cell based upon entry in referenced cell | Excel Discussion (Misc queries) | |||
Get the reference from a referenced cell | Excel Worksheet Functions | |||
Get the reference from a referenced cell | Excel Programming |