View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben Gord Dibben is offline
external usenet poster
 
Posts: 22,906
Default In need to link Columns between sheets of a workbook?

You can link entire columns or ranges at one go.

Select A1:A100 and copy.

Switch to new sheet and select A1 and EditPaste SpecialPaste LinkOKEsc

Then EditPaste SpecialFormatsOKEsc

But added or deleted rows or format changes in source sheet would not be
reflected in new sheet.

Or in new sheet A1 enter =IF(SHeet1!A1="","",SHeet1!A1)

Drag/copy that down way past where you currently need..........unfilled
cells will look blank until filled later.

That won't give you formatting however.

You could try to create some Custom Views for each client. That is one
method.

Or a VBA solution?

See Ron de Bruin's site for copying filtered data to another sheet.

http://www.rondebruin.nl/copy5.htm


Gord Dibben MS Excel MVP


On Thu, 11 Dec 2008 13:09:01 -0800, SkyscraperCM
wrote:

I have a worksheet that I use to log the process of contract negotiations. I
have set up columns that correspond to a data point and rows corresponding
with the specific contract. My client thinks that the log I have is to
detailed for their use, and frankly they don't need all the information in
the log. I was hoping to be able to create a summary sheet that would only
include the columns that the client requires, however it doesn't seem to be
possible to copy whole columns (including the cell formatting) without going
cell by cell. Is there a way to link the sheets without going cell to cell,
so that as I update the more detailed log, the summary log will be
automatically updated?