- Katılım
- 5 Kasım 2007
- Mesajlar
- 4,727
- Excel Vers. ve Dili
- 64 Bit TR - Microsoft Office 365 - Win11 Home
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [J4,P26]) Is Nothing Then Exit Sub
If Target.Address = "$J$4" Then [P26] = Target
If Target.Address = "$P$26" Then [J4] = Target
End Sub
Merhaba Sayın 1Al2Ver,
Çalışma sayfasının kod bölümüne kopyalayarak denermisiniz..
Kod:Private Sub Worksheet_Change(ByVal Target As Range) If Intersect(Target, [J4,P26]) Is Nothing Then Exit Sub If Target.Address = "$J$4" Then [P26] = Target If Target.Address = "$P$26" Then [J4] = Target End Sub
.
Merhaba,
Yeni durumu özetleyen bir örnek ekleyerek açıklarmısınız..
.
Private Sub Worksheet_Change(ByVal Target As Range)
Set s1 = Sheets("Grafik_Genel")
If Intersect(Target, [K5]) Is Nothing Then Exit Sub
s1.[C1] = Target
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
Set s1 = Sheets("Genel_2010")
If Intersect(Target, [C1]) Is Nothing Then Exit Sub
s1.[K5] = Target
End Sub
Genel_2010 sayfasının kod bölümüne;
Kod:Private Sub Worksheet_Change(ByVal Target As Range) Set s1 = Sheets("Grafik_Genel") If Intersect(Target, [K5]) Is Nothing Then Exit Sub s1.[C1] = Target End Sub
Grafik_Genel sayfasının kod bölümüne;
yazarak kullanabilirsiniz..Kod:Private Sub Worksheet_Change(ByVal Target As Range) Set s1 = Sheets("Genel_2010") If Intersect(Target, [C1]) Is Nothing Then Exit Sub s1.[K5] = Target End Sub
.