- Katılım
- 22 Mayıs 2009
- Mesajlar
- 1,017
- Excel Vers. ve Dili
- Office 2003
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, [b1:b2]) Is Nothing Then Exit Sub
If [b1] > 0 And [b2] > 0 Then
If [b1] >= [b2] Then
[b3] = "uygun"
Else
[b3] = [b2] - [b1] & " TL birim fiyatın üstünde"
End If
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [b1:b2,y12:c22]) Is Nothing Then Exit Sub
If [b1] > 0 And [b2] > 0 Then
If [b1] >= [b2] Then
[b3] = "uygun"
Else
[b3] = [b2] - [b1] & " TL birim fiyatın üstünde"
If [c22] >= [y12] Then
[f22] = [c22] - [y12] & " TL teminat bedeli FAZLA"
Else
[f22] = [y12] - [c22] & " TL teminat bedeli EKSİK"
End If
End If
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [b1:b2, y12, c22]) Is Nothing Then Exit Sub
If [b1] > 0 And [b2] > 0 Then
If [b1] >= [b2] Then
[b3] = "uygun"
Else
[b3] = [b2] - [b1] & " TL birim fiyatın üstünde"
End If
End If
If [C22] >= [Y12] Then
[f22] = [C22] - [Y12] & " TL teminat bedeli FAZLA"
Else
[f22] = [Y12] - [C22] & " TL teminat bedeli EKSİK"
End If
End Sub