DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Intersect(Target, [D10:D1200]) Is Nothing Then Exit Sub
[K8] = Target.Value
End Sub
Option Explicit
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Intersect(Target, [S:S]) Is Nothing Then Exit Sub
If Target <> Empty Then
Selection.Copy
Range("AR2").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
'Range("S30").Select
UserForm1.Show
End If
End Sub
Option Explicit
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Intersect(Target, [S:S]) Is Nothing Then Exit Sub
If Target <> Empty Then
Target.Copy
Range("AR2").PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
UserForm1.Show
End If
End Sub
Aşağıdaki kodu deneyinPeki arkadaşlar benim de bir sorum olacak.
C4:T24 aralığındaki herhangi bir hücreye çift tıkladığımda o hücrenin dolgusu KIRMIZI olsun.
Bun u yapabilirmiyiz???
Şimdiden teşekkürlerimi bildiririm
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Intersect(Target, [C4:t24]) Is Nothing Then Exit Sub
ActiveCell.Interior.ColorIndex = 3
End Sub
Merhaba, Korhan Bey,Deneyiniz...
Kod:Option Explicit Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) If Intersect(Target, [S:S]) Is Nothing Then Exit Sub If Target <> Empty Then Target.Copy Range("AR2").PasteSpecial Paste:=xlPasteValues Application.CutCopyMode = False UserForm1.Show End If End Sub
Option Explicit
Dim Adres As String
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Intersect(Target, [S:S]) Is Nothing Then Exit Sub
If Target <> Empty Then
Cancel = True
Adres = Target.Address
Target.Copy
Range("AR2").PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
UserForm1.Show
Range(Adres).Select
End If
End Sub
Option Explicit
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Intersect(Target, [S:S]) Is Nothing Then Exit Sub
If Target <> Empty Then
Cancel = True
Range("AR2") = Target.Value
UserForm1.Show
End If
End Sub