- Katılım
- 20 Aralık 2006
- Mesajlar
- 939
- Excel Vers. ve Dili
- türkçe
arkadaşlar aşağıdaki kodları kullanarak
satış sayfasında girilen verileri
günlük z raporu almak istiyorum ama sonuç alamadım
Private Sub CommandButton1_Click()
If TextBox1.Value = Empty Then
MsgBox "Lütfen; TARİH Girmelisiniz....", vbExclamation, "TARİH BOŞ OLMAZ..."
Exit Sub
End If
say = WorksheetFunction.CountIf(Sheets("SATIŞ").Range("B3:B65536"), TextBox1.Text)
If say = 0 Then
MsgBox "Girilen TARİHE AİT VERİ BULUNAMADI...", vbInformation, "Veri Error"
Exit Sub
End If
Sheets("rapor").Range("b3:q65536").ClearContents
For x = 2 To 100
son = Sheets("rapor").[a65536].End(3).Row + 1
If TextBox1.Text = Sheets("SATIŞ").Cells(x, 1) Then
Sheets("rapor").Cells(son, 1) = Sheets("SATIŞ").Cells(x, 2)
Sheets("rapor").Cells(son, 2) = Sheets("SATIŞ").Cells(x, 3)
Sheets("rapor").Cells(son, 3) = Sheets("SATIŞ").Cells(x, 4)
Sheets("rapor").Cells(son, 4) = Sheets("SATIŞ").Cells(x, 5)
Sheets("rapor").Cells(son, 5) = Sheets("SATIŞ").Cells(x, 6)
Sheets("rapor").Cells(son, 6) = Sheets("SATIŞ").Cells(x, 7)
Sheets("rapor").Cells(son, 7) = Sheets("SATIŞ").Cells(x, 8)
Sheets("rapor").Cells(son, 8) = Sheets("SATIŞ").Cells(x, 9)
Sheets("rapor").Cells(son, 9) = Sheets("SATIŞ").Cells(x, 10)
Sheets("rapor").Cells(son, 10) = Sheets("SATIŞ").Cells(x, 11)
Sheets("rapor").Cells(son, 11) = Sheets("SATIŞ").Cells(x, 12)
Sheets("rapor").Cells(son, 12) = Sheets("SATIŞ").Cells(x, 13)
End If
Next
ListBox1.RowSource = "rapor!b2:q" & [b65536].End(3).Row
UserForm_Initialize
End Sub
Private Sub MultiPage1_Change()
End Sub
Private Sub UserForm_Initialize()
TextBox1.Text = Date
End Sub
kodlarım bunlar bunları nasıl şekle sokarız
satış sayfasında girilen verileri
günlük z raporu almak istiyorum ama sonuç alamadım
Private Sub CommandButton1_Click()
If TextBox1.Value = Empty Then
MsgBox "Lütfen; TARİH Girmelisiniz....", vbExclamation, "TARİH BOŞ OLMAZ..."
Exit Sub
End If
say = WorksheetFunction.CountIf(Sheets("SATIŞ").Range("B3:B65536"), TextBox1.Text)
If say = 0 Then
MsgBox "Girilen TARİHE AİT VERİ BULUNAMADI...", vbInformation, "Veri Error"
Exit Sub
End If
Sheets("rapor").Range("b3:q65536").ClearContents
For x = 2 To 100
son = Sheets("rapor").[a65536].End(3).Row + 1
If TextBox1.Text = Sheets("SATIŞ").Cells(x, 1) Then
Sheets("rapor").Cells(son, 1) = Sheets("SATIŞ").Cells(x, 2)
Sheets("rapor").Cells(son, 2) = Sheets("SATIŞ").Cells(x, 3)
Sheets("rapor").Cells(son, 3) = Sheets("SATIŞ").Cells(x, 4)
Sheets("rapor").Cells(son, 4) = Sheets("SATIŞ").Cells(x, 5)
Sheets("rapor").Cells(son, 5) = Sheets("SATIŞ").Cells(x, 6)
Sheets("rapor").Cells(son, 6) = Sheets("SATIŞ").Cells(x, 7)
Sheets("rapor").Cells(son, 7) = Sheets("SATIŞ").Cells(x, 8)
Sheets("rapor").Cells(son, 8) = Sheets("SATIŞ").Cells(x, 9)
Sheets("rapor").Cells(son, 9) = Sheets("SATIŞ").Cells(x, 10)
Sheets("rapor").Cells(son, 10) = Sheets("SATIŞ").Cells(x, 11)
Sheets("rapor").Cells(son, 11) = Sheets("SATIŞ").Cells(x, 12)
Sheets("rapor").Cells(son, 12) = Sheets("SATIŞ").Cells(x, 13)
End If
Next
ListBox1.RowSource = "rapor!b2:q" & [b65536].End(3).Row
UserForm_Initialize
End Sub
Private Sub MultiPage1_Change()
End Sub
Private Sub UserForm_Initialize()
TextBox1.Text = Date
End Sub
kodlarım bunlar bunları nasıl şekle sokarız