Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I have a problem, I haven't got the fogest clue as to how to get the cell value 2 rows down, when scrolling rows. I need row-3 & row 36 to be shown in row-1,col-1 Example: row-1 col-1 date format row-2 col-1 "date" '---------------------------------------------- row-3 col-1 date=1/1/2009 row-4--row to row-33 (1/2/2009-1/31/2009) row-36 col1 date=2/1/2009 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I found the answer in something I wrote earlier:
Dim HldDte as variant Range("A67").Select HldDte = ActiveCell.Value Range("A1").Select ActiveCell.Select ActiveCell.Value = HldDte "Rick" wrote: I have a problem, I haven't got the fogest clue as to how to get the cell value 2 rows down, when scrolling rows. I need row-3 & row 36 to be shown in row-1,col-1 Example: row-1 col-1 date format row-2 col-1 "date" '---------------------------------------------- row-3 col-1 date=1/1/2009 row-4--row to row-33 (1/2/2009-1/31/2009) row-36 col1 date=2/1/2009 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Even this is simpler
Range("A1") = Range("A67").Value |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Show actual values added instead of cell references? (=A1+A4 shows as=10+2 in cell) | Excel Discussion (Misc queries) | |||
Show actual values added instead of cell references? (=A1+A4 showsas =10+2 in cell) | Excel Worksheet Functions | |||
How do i assign cell A1 to show the current cursor cell in Excel? | Excel Discussion (Misc queries) | |||
format cell to show leading zeros and make cell a three digit fiel | Excel Worksheet Functions | |||
Formatting to show/not show "DUE" and "RECEIVED" in cell | New Users to Excel |