redspanna
Well-known Member
- Joined
- Jul 27, 2005
- Messages
- 1,604
- Office Version
- 365
- Platform
- Windows
Hi all
Does anybody know how I can auto find the last cell populated in column B of my 'cars' sheet, then drag down and copy the formual into the next 7 rows.
for example if cell B65 holds the formula
this will be dragged down to populate B66:B72 where ....
B66 cell will hold formula =pivot!F650
B67 cell will hold formula =pivot!F651
B68 cell will hold formula =pivot!F652...etc etc
I guess the
will find and copy the formula for me but to then drag it down 7 rows - I have no idea
any help much appreciated
Does anybody know how I can auto find the last cell populated in column B of my 'cars' sheet, then drag down and copy the formual into the next 7 rows.
for example if cell B65 holds the formula
Code:
=pivot!F649
B66 cell will hold formula =pivot!F650
B67 cell will hold formula =pivot!F651
B68 cell will hold formula =pivot!F652...etc etc
I guess the
Code:
With Sheets("cars").Range("B" & Rows.Count).End(xlUp).Copy
any help much appreciated