- Katılım
- 24 Nisan 2005
- Mesajlar
- 3,671
- Excel Vers. ve Dili
- Office 2016 EN 64 Bit
- Altın Üyelik Bitiş Tarihi
- 25/05/2022
Trim li kullanın düzelir.
If trim(Cells(t, "P").Text) = trim(satıs.TextBox4.Text) Then
Formdan gelen bilginin sonunda boşluk var.
Excel de okunan bilginin sonunda boşluk yok.
Kısacası isimleri eşleştiremiyor.
If trim(Cells(t, "P").Text) = trim(satıs.TextBox4.Text) Then
Formdan gelen bilginin sonunda boşluk var.
Excel de okunan bilginin sonunda boşluk yok.
Kısacası isimleri eşleştiremiyor.
C#:
Set S5 = Sheets("SATISVERI")
Sheets("SATISVERI").Select
Dim t As Long
Dim S5 As Worksheets
For t = 2 To S5.Range("p65536").End(3).Row
If Cells(t, "P").Text = satıs.TextBox4.Text Then
Select Case CInt(S5.Cells(t, "u").Value)
Case Is = 0
S5.Cells(t, "u").Value = satıs.TextBox2.Value
End Select
End If
Next t