Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default Linking Range to Another Spreadsheet

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...


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Linking Range to Another Spreadsheet

=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...



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default Linking Range to Another Spreadsheet

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...





  #4   Report Post  
Posted to microsoft.public.excel.programming
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...







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
Linking spreadsheet Saintsman Excel Worksheet Functions 1 July 1st 09 12:05 PM
Excel spreadsheet linking E2 Excel Discussion (Misc queries) 1 February 21st 09 01:41 AM
Linking 2 spreadsheet using data from the last row of spreadsheet Mike Excel Discussion (Misc queries) 13 February 11th 09 10:48 AM
Linking 2 spreadsheet using data from 1st spreadsheet vennesse Excel Discussion (Misc queries) 1 February 11th 09 10:43 AM
Linking spreadsheet mrc1986 via OfficeKB.com Excel Worksheet Functions 0 October 6th 08 08:16 PM


All times are GMT +1. The time now is 04:52 PM.

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

About Us

"It's about Microsoft Excel"