- Katılım
- 1 Mart 2005
- Mesajlar
- 22,254
- Excel Vers. ve Dili
-
Win7 Home Basic TR 64 Bit
Ofis-2010-TR 32 Bit
Ekli dosyayı inceleyiniz.hocam bu tabloda hata var aynı saat vardiyasından iki tane var 08:16.00 vardiyası iki adet onun birini silipde öle formülü uygulasak sana zahmet birde ben bu kodu değiştiremezmiyim acaba şifrelimi bu kodlar
Kod:
Private Sub CommandButton1_Click()
Dim hucre As Range
If TextBox1.Value = Empty Then
MsgBox "Bir harf girmelisiniz.!", vbCritical
TextBox1.SetFocus
Exit Sub
End If
If TextBox2.Value = Empty Then
MsgBox "Bir İsim Girmelisiniz..!!", vbCritical
TextBox1.SetFocus
Exit Sub
End If
For Each hucre In Range("C9:H39")
If hucre.Value = TextBox1.Value Then
hucre.Value = TextBox2.Value
End If
Next
MsgBox "İşlem Tamamlandı..!!", vbOKOnly + vbInformation
End Sub