View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Linking Range to Another Spreadsheet

Sub CopyDataAsLink()
Dim rng as Range
set rng = Worksheets("Source").Range("A1").CurrentRegion
rng.copy
With worksheets("Dest")
.Activate
.Range("A1").Select
.PasteSpecial Link:=True
.Range("A1").PasteSpecial xlFormats
End With
End Sub


--
Regards,
Tom Ogilvy


"MeTed" wrote in message
...
Thanks Tom,

Is there a way to automate this process since the original spreadsheet is
constantly growing?


"Tom Ogilvy" wrote in message
...
=if(Sheet1!A1="","",Sheet1!A1)

in a1 of the other sheet, then drag fill down the column. Select the
formulas and drag fill to the right

--
Regards,
Tom Ogilvy


"MeTed" wrote in message
...
Hey All,

How do I link specific column ranges from one spreadsheet (A11:[End of
Data] through F11:[End of Data]) to another spreadsheet where it
automatically refreshes data each time it's opened.



TIA...