formula with moving range

  • Thread starter Thread starter sctroy
  • Start date Start date
S

sctroy

I have a workbook that updates daily. When it updates the new updated
value goes in the top row of the column lets say A3 and moves the rest
of the values in the column down one row. I want to link these values
to another workbook named Games2. What formula can I use to copy these
values? example The first day it copies A3:A212 the next day A3:A213.
Can anyone help?
 
Hi,

Let's suppose that the orginal data are in Sheet1 in the workbook named
xxx.xls.
Use the following formula in A3 of the new workbook (modify the workbook
name and worksheet name appropriately)

=IF([xxx.xls]Sheet1!A3="","",[xxx.xls]Sheet1!A3)

and fill-in the formula down to a large number of rows (say A3 to A1002)

Regards,
B. R. Ramachandran
 
Change Destination range from D10 below to where you want it to go..

Range("$A$3").select 'In Sheet1
Range("$A$3", Selection.End(xlDown)).Copy _
Destination:= Sheets("Sheet2").Range("D10")

HTH
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top