bul makrosu çalışmıyor ?

Katılım
24 Aralık 2006
Mesajlar
43
Excel Vers. ve Dili
excell 2000 türkçe
merhaba
girilen verileri arama yaparken user formda göstermiyor.ancak excel çalışma sayfasında buluyor.nümerik ve alfabetik aratabilirmiyiz?
teşekkürler
 

N.Ziya Hiçdurmaz

Özel Üye
Katılım
28 Nisan 2007
Mesajlar
2,218
Excel Vers. ve Dili
Office 2013 TR / 32 Bit
yanıt

Kodların bu kısmını alttakiler ile değiştiriniz.
Kod:
TextBox1 = ActiveCell.Offset(0, -5).Value
   TextBox2 = ActiveCell.Offset(0, -4).Value
   TextBox3 = ActiveCell.Offset(0, -3).Value
   TextBox4 = ActiveCell.Offset(0, -2).Value
   TextBox5 = ActiveCell.Offset(0, -1).Value
 

Orion1

Uzman
Uzman
Katılım
1 Mart 2005
Mesajlar
22,254
Excel Vers. ve Dili
Win7 Home Basic TR 64 Bit

Ofis-2010-TR 32 Bit
Command butondaki kodşları aşağıdaki kodlarla değiştiriniz.:cool:
Kod:
Private Sub CommandButton2_Click()
 If ComboBox1.Text = "" Then

MsgBox "LÜTFEN ÖĞRENCİ NUMARASINI GİRİNİZ!!!"
Exit Sub
End If
For Each hucre In Range("g2:g" & WorksheetFunction.CountA(Range("g2:g65000")) + 1)
If StrConv(hucre.Value, vbUpperCase) = StrConv(ComboBox1.Value, vbUpperCase) Then
   hucre.Select
   TextBox1 = ActiveCell.Offset(0, -1).Value
   TextBox2 = ActiveCell.Offset(0, -2).Value
   TextBox3 = ActiveCell.Offset(0, -3).Value
   TextBox4 = ActiveCell.Offset(0, -4).Value
   TextBox5 = ActiveCell.Offset(0, -5).Value
   'TextBox6 = ActiveCell.Offset(0, 6).Value
  
End If
Next
End Sub
 
Üst