Çok sade olmuş teşekkürler fakat numerik veri girmediğimde type mismatch hatası alıyorumMerhabalar
Userforma kopyalayınız
Kod:Private Sub TextBox2_BeforeUpdate(ByVal Cancel As MSForms.ReturnBoolean) Dim bul As Range Set bul = Sayfa1.Range("B:B").Find(ComboBox1.Value, searchDirection:=xlPrevious) If Not bul Is Nothing Then If bul.Offset(0, 2).Value > CLng(TextBox2.Value) Then MsgBox "Değer küçük" Cancel = True Exit Sub End If End If End Sub