Wrong event type.
Should be Private Sub Worksheet_Change(ByVal Target As Range)
You are changing the value in Sheet1 H1 by selecting from a DV list, not by
selecting the cell.
Gord Dibben MS Excel MVP
gord,
i changed the sub name, thought that was it. no dice. make sure my logic
is right.
'sheet2
Private Sub Worksheet_Change(ByVal Target As Range)
' if list is not empty
If Range("H1").Value <> "" Then
' set all VD's to sheet 2 currrent list value
Sheet3.Range("G1").Value = Sheet1.Range("H1").Value
Sheet4.Range("H1").Value = Sheet1.Range("H1").Value
Sheet5.Range("G1").Value = Sheet1.Range("H1").Value
Sheet6.Range("H1").Value = Sheet1.Range("H1").Value
End If
End Sub
> Wrong event type.
>
[quoted text clipped - 27 lines]
> >> If the similar code with sheet names changed is placed on each sheet
> >> the update could be done from any sheet.
mike - 10 Oct 2008 13:22 GMT
gord..thx:)
it works now, had to change security settings to low. now something new...
-added code for sheets 2 and 3, works fine
-add code for sheet 4, when i change item in the VD list program gets hung up
-if 2 and 3 work then adding 4 (5 and 6) for that matter shouldnt pose a
conflict, should it?
-checked to make sure all sheet and value references were accurate...
> gord,
>
[quoted text clipped - 43 lines]
> > >> If the similar code with sheet names changed is placed on each sheet
> > >> the update could be done from any sheet.