Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 201
Default Excel Filldown problem

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,718
Default Excel Filldown problem

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Excel Filldown problem

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 201
Default Excel Filldown problem

Hi,

Thanks Tom, that work great!

Phil


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
INDIRECT filldown problem Ryk Excel Discussion (Misc queries) 2 September 28th 06 02:44 AM
FillDown Macro Nick Junod Excel Worksheet Functions 3 February 6th 06 10:10 PM
filldown macro BorisS Excel Programming 1 September 1st 05 08:47 AM
Filldown Problem Juan Excel Programming 4 February 24th 05 06:54 PM
FillDown Mike Fogleman Excel Programming 2 November 18th 03 10:46 PM


All times are GMT +1. The time now is 10:38 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"