DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
=EĞER(VE(B3<>"";C3<>"";D3<>"";ESAYIYSA(E3));B3&C3&D3;"")
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [B:E]) Is Nothing Then Exit Sub
Satır = Target.Row
If Cells(Satır, 2) <> "" And _
Cells(Satır, 3) <> "" And _
Cells(Satır, 4) <> "" And _
IsNumeric(Cells(Satır, 5)) Then
Cells(Satır, 1) = Cells(Satır, 2) & Cells(Satır, 3) & Cells(Satır, 4)
Else
Cells(Satır, 1) = ""
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [B:D]) Is Nothing Then Exit Sub
Cells(Target.Row, 1) = Cells(Target.Row, 2) & Cells(Target.Row, 3) & Cells(Target.Row, 4)
End Sub