![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: Apr 2002
Posts: 43
|
I need to keep three lines between my table and the one below it.
The data that I have in the top table may change (so more rows maybe taken up). How do I keep the two tables three rows apart? |
|
|
|
|
|
#2 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Austin, Texas USA
Posts: 11,654
|
Are you referring to PivotTables? If so, why don't you keep them on separate worksheets?
|
|
|
|
|
|
#3 |
|
New Member
Join Date: Apr 2002
Posts: 43
|
No, I can only have one worksheet. In the top table I am extracting data and putting it into the one below (this is all done via a macro). But I must take into account that there may be changes the next time I run the macro, so I can't just assign it to a cell three rows below the top table.
Got any ideas??? |
|
|
|
|
|
#4 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Monterrey, Mexico
Posts: 1,433
|
Try the following:
Dim StartPoint As Range Set StartPoint = Range("a1").End(xlDown).Offset(4, 0) StartPoint.Select A1 is the start point for table 1.
__________________
Kind regards, Al Chara |
|
|
|
|
|
#5 |
|
New Member
Join Date: Apr 2002
Posts: 43
|
That's Brilliant Al, you're a life saver, Thank you
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|