PC Review


Reply
Thread Tools Rate Thread

Data based on another tab

 
 
SteveF
Guest
Posts: n/a
 
      17th Jun 2008
I have a tab that has 15 columns that I use for tracking purposes. One
column in particular is used for 'notes' and so it is multiple lines long.
What I'd like is for some way to have another tab be an exact copy of this
tab, but with that one column missing. The think is, I want any changes made
on the first tab to be reflected in the 2nd. One direction only, as the 2nd
tab is kind of a 'summary' or report so no editing will occur in it.

Is there a way to do this?

Thanks for any help.
 
Reply With Quote
 
 
 
 
StumpedAgain
Guest
Posts: n/a
 
      17th Jun 2008
this coppies columns A through X to sheet "Summary Sheet" and pasts it in
range A through X. You can modify the columns/sheet name to fit your needs.

Sub CopyWS()

Range("A:X").Copy Destination:=Sheets("Summary Sheet").Range("A:X")

End Sub



"SteveF" wrote:

> I have a tab that has 15 columns that I use for tracking purposes. One
> column in particular is used for 'notes' and so it is multiple lines long.
> What I'd like is for some way to have another tab be an exact copy of this
> tab, but with that one column missing. The think is, I want any changes made
> on the first tab to be reflected in the 2nd. One direction only, as the 2nd
> tab is kind of a 'summary' or report so no editing will occur in it.
>
> Is there a way to do this?
>
> Thanks for any help.

 
Reply With Quote
 
SteveF
Guest
Posts: n/a
 
      17th Jun 2008
Nice.

Thanks for the help!



"StumpedAgain" wrote:

> this coppies columns A through X to sheet "Summary Sheet" and pasts it in
> range A through X. You can modify the columns/sheet name to fit your needs.
>
> Sub CopyWS()
>
> Range("A:X").Copy Destination:=Sheets("Summary Sheet").Range("A:X")
>
> End Sub
>
>
>
> "SteveF" wrote:
>
> > I have a tab that has 15 columns that I use for tracking purposes. One
> > column in particular is used for 'notes' and so it is multiple lines long.
> > What I'd like is for some way to have another tab be an exact copy of this
> > tab, but with that one column missing. The think is, I want any changes made
> > on the first tab to be reflected in the 2nd. One direction only, as the 2nd
> > tab is kind of a 'summary' or report so no editing will occur in it.
> >
> > Is there a way to do this?
> >
> > Thanks for any help.

 
Reply With Quote
 
JLGWhiz
Guest
Posts: n/a
 
      17th Jun 2008
This is kind of Draconian but you can do something like this:
If you are working with Sheet1 and Sheet2 and you want Sheet2 to be the
summary sheet to reflect what is on Sheet1 but not the other way then on
sheet2, Range("A1") put the following:

=Sheet1!a1

Then click and hold on the handle of the highlight and drag it across the 15
columns, then drag it down for as many rows as required. You will now have
a formula in all of the cells in that selection that will clone whatever is
entered on sheet1.

"SteveF" wrote:

> I have a tab that has 15 columns that I use for tracking purposes. One
> column in particular is used for 'notes' and so it is multiple lines long.
> What I'd like is for some way to have another tab be an exact copy of this
> tab, but with that one column missing. The think is, I want any changes made
> on the first tab to be reflected in the 2nd. One direction only, as the 2nd
> tab is kind of a 'summary' or report so no editing will occur in it.
>
> Is there a way to do this?
>
> Thanks for any help.

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Pivot table - show monthly data based on start/end date data Andrew Microsoft Excel Programming 0 4th Mar 2011 11:35 AM
Conditional Formatting Based of Cells Based on Data Entry in anoth Jim Microsoft Excel Misc 3 11th Nov 2008 11:52 PM
Can I create a form with column headers based on the data for data editing? Stapes Microsoft Access 1 15th Jun 2007 05:30 PM
Sumproduct based which also weights data based on date =?Utf-8?B?RXhjZWxNb25rZXk=?= Microsoft Excel Worksheet Functions 6 4th Feb 2007 08:51 AM
Combobox based on expression and data entry based on multiple fields Fred Boer Microsoft Access Forms 11 25th Sep 2003 03:03 PM


Features
 

Advertising
 

Newsgroups
 


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