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, [a1:a3]) Is Nothing Then Exit Sub
If [a1] = "07:30" Then [b1] = "15:30": [c1] = "7.5"
If [a2] = "15:30" Then [b2] = "23:30": [c2] = "7.5"
If [a3] = "17:00" Then [b3] = "01:00": [c3] = "7.5"
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [a1:a3]) Is Nothing Then Exit Sub
If [a1] = "" Then [b1:c1] = ""
If [a2] = "" Then [b2:c2] = ""
If [a3] = "" Then [b3:c3] = ""
If [a1] = "07:30" Then [b1] = "15:30": [c1] = "7.5"
If [a2] = "15:30" Then [b2] = "23:30": [c2] = "7.5"
If [a3] = "17:00" Then [b3] = "01:00": [c3] = "7.5"
End Sub
Benim olay; A 1 e 07:30 yazdığımda otomatik olarak B 1 de 15:30 C 1 de 7.5 Yazsın istiyorum.
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [A1:A100]) Is Nothing Then Exit Sub
Target.Offset(0, 1) = Target + 0.333333
Target.Offset(0, 1).NumberFormat = "h:mm"
Target.Offset(0, 2) = 7.5
End Sub