ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Links and Linking in Excel (https://www.excelbanter.com/links-linking-excel/)
-   -   One column for many sheets (https://www.excelbanter.com/links-linking-excel/224465-one-column-many-sheets.html)

Jeff Gordon

One column for many sheets
 
Hi!

How I can manage as follow:

I have one column in one sheet filled with text, comment box and links and
there is a lot of other sheets. I want to upgrade that one text sheet with
one column and then show that column for other ones. Can I link it somehow?
The idea was, to show everything in that one column in other sheets with
comment box and formats.

I just tried to merge all sheets and make my changes then in one of those,
but I need to copy comment box and formats also, but I don't know how to do
this. Does anyone have an idea?

Many thanks!

JG



Gary''s Student

One column for many sheets
 
Try this small macro:

Sub copycolumn()
Set r = Range("B:B")
Set sh = ActiveSheet
shn = sh.Name
For Each sht In Sheets
shtn = sht.Name
If shtn < shn Then
r.Copy sht.Range("B1")
End If
Next
End Sub

--
Gary''s Student - gsnu200839


"Jeff Gordon" wrote:

Hi!

How I can manage as follow:

I have one column in one sheet filled with text, comment box and links and
there is a lot of other sheets. I want to upgrade that one text sheet with
one column and then show that column for other ones. Can I link it somehow?
The idea was, to show everything in that one column in other sheets with
comment box and formats.

I just tried to merge all sheets and make my changes then in one of those,
but I need to copy comment box and formats also, but I don't know how to do
this. Does anyone have an idea?

Many thanks!

JG




Jeff Gordon

One column for many sheets
 
Hello!

That make my day. Thanks!

JG

"Gary''s Student" wrote in message
...
Try this small macro:

Sub copycolumn()
Set r = Range("B:B")
Set sh = ActiveSheet
shn = sh.Name
For Each sht In Sheets
shtn = sht.Name
If shtn < shn Then
r.Copy sht.Range("B1")
End If
Next
End Sub

--
Gary''s Student - gsnu200839


"Jeff Gordon" wrote:

Hi!

How I can manage as follow:

I have one column in one sheet filled with text, comment box and links
and
there is a lot of other sheets. I want to upgrade that one text sheet
with
one column and then show that column for other ones. Can I link it
somehow?
The idea was, to show everything in that one column in other sheets with
comment box and formats.

I just tried to merge all sheets and make my changes then in one of
those,
but I need to copy comment box and formats also, but I don't know how to
do
this. Does anyone have an idea?

Many thanks!

JG







All times are GMT +1. The time now is 09:19 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com