DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub BIRLESTIR()
Set s1 = Sheets("AAA")
s1.Range("H6:H16").ClearContents
For i = 6 To 16
S = S + 1
s1.Cells(S + 5, "H").Value = Cells(i, "B").Value & s1.Cells(i, "C").Value
Next i
Set s1 = Nothing
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Intersect(Target, [B:C]) Is Nothing Then Exit Sub
Range("H6:H16").ClearContents
For i = 6 To 16
S = S + 1
Cells(S + 5, "H").Value = Cells(i, "B").Value & Cells(i, "C").Value
Next i
End Sub
MRH bu kodları innaın benim de oldukca çok işime yaradı konu açmak zorunda kalmamıs oldum,ama ben sayın n.ziya hicdurmaz abimizin kullandıgı kod iki satırı birleştirme affınıza sıgınarak üç hane ekleyebiliyormuyuz sormak istedim.
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [B:C]) Is Nothing Then Exit Sub
Cells(Target.Row, "H") = Cells(Target.Row, "B") & Cells(Target.Row, "C")
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Intersect(Target, [B:C]) Is Nothing Then Exit Sub
Cells(Target.Row, "H") = Cells(Target.Row, "B") & Cells(Target.Row, "C")
End Sub
valla sayın necdet bey deniyorum ama galiba bilgilerimin sınıırı burada bitiyor.mecburen sizin bilgilerinize ihtiyac duymam gerekiyor
Sub Birlestir()
For i = 2 To [A65536].End(3).Row
If i = 2 Then
Range("C2") = Cells(i, "A")
Else
Range("C2") = Range("C2") & ", " & Cells(i, "A")
End If
Next i
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [A:C]) Is Nothing Then Exit Sub
Cells(Target.Row, "E") = Cells(Target.Row, "A") & Cells(Target.Row, "B") & Cells(Target.Row, "C")
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Intersect(Target, [A:C]) Is Nothing Then Exit Sub
Cells(Target.Row, "E") = Cells(Target.Row, "A") & Cells(Target.Row, "B") & Cells(Target.Row, "C")
End Sub