View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default Linking cell format across worksheets

Assuming your data is in cols A & B, try this small macro:

Sub Columnize()
n = Cells(Rows.Count, "A").End(xlUp).Row
k = 1
j = 1
For I = 1 To n
Set r = Range(Cells(I, 1), Cells(I, 2))
r.Copy Cells(k, j)
k = k + 1
If k = 201 Then
k = 1
j = j + 2
End If
Next
Range("A201:B" & n).Clear
End Sub
--
Gary''s Student - gsnu200851


"PiL" wrote:

I want to link cells across worksheets so that if I make a change to the cell
format (in this cae, background colour) in cell 1A of sheet 1, the same
change is automatically updated for the same cell in sheet 2. I have access
to both Excel 2003 and 2007.