Hi Fritz
No need to use VBA for this. Select cell C3 on the sheet that has the
data. Now right click on the Sheet name tab and click "Group all
sheets" now simply re-enter cell C3. Ungroup by selecting any other
sheet.
There is also Edit>Fill>Across Worksheets (once sheets are grouped) if
you wish to limit what is copied.
If this needs to be dynamic, you can use a simply reference forumla, or
this code
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Cells > 1 Then Exit Sub
If Target.Address = "$C$3" Then
Sheets.Select
Else
Me.Select
End If
End Sub
This MUST be placed in the Private Module of the Sheet Object. To get
there, right click on the Sheet name tab and select "View Code".
** Posted via:
http://www.ozgrid.com
Excel Templates, Training, Add-ins & Business Software Galore!
Free Excel Forum
http://www.ozgrid.com/forum ***