Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I know this is most likely pretty easy, but it's killing me! Using VBA, I need to copy the formulas in Cells AA8, AB8 & AC8 all the way to the bottm of there respective columns as long as there's data in cell "D" of the previous row. Any help would be much appreciated. Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
as long as there's data in cell "D" of the previous row.
Huh? Maybe you can rephrase. -- Jim "Phil" wrote in message ... | Hi, | | I know this is most likely pretty easy, but it's killing me! Using VBA, I | need to copy the formulas in Cells AA8, AB8 & AC8 all the way to the bottm of | there respective columns as long as there's data in cell "D" of the previous | row. Any help would be much appreciated. | | Thanks | |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
One possible interpretation:
set rng = Range(Cells(8,"D"),Cells(rows.count,"D").End(xlup) ) rng.offset(0,26).Formula = Range("AA8").Formula rng.offset(0,27).Formula = Range("AB8").Formula rng.offset(0,28).Formula = Range("AC8").Formula "Phil" wrote in message ... Hi, I know this is most likely pretty easy, but it's killing me! Using VBA, I need to copy the formulas in Cells AA8, AB8 & AC8 all the way to the bottm of there respective columns as long as there's data in cell "D" of the previous row. Any help would be much appreciated. Thanks |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Thanks Tom, that work great! Phil |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
INDIRECT filldown problem | Excel Discussion (Misc queries) | |||
FillDown Macro | Excel Worksheet Functions | |||
filldown macro | Excel Programming | |||
Filldown Problem | Excel Programming | |||
FillDown | Excel Programming |