- Katılım
- 13 Temmuz 2016
- Mesajlar
- 613
- Excel Vers. ve Dili
- Excel 2010 & 2016 Türkçe
merhaba arkadaşlar userform daki textboxların butonla hem data hemde veri sayfasına yazdırmasını istiyorum aşagıdaki kodlarla userformu hangi sayfada açtıysam diğer sayfa boş geçiyor yani data sayfasında userformu çagırdıgımda veri sayfası boş geçiyor
bide yazdırma işlemini hızlandırmak için ne yapmamız lazım
bide yazdırma işlemini hızlandırmak için ne yapmamız lazım
Kod:
rivate Sub CommandButton1_Click()
'son satır altına yazma textbox ve Checkbox için
For a = 1 To 100
'
Next
sonsat = [c65536].End(3).Row + 1
Sheets("data").Cells(sonsat, 3) = TextBox1
Sheets("data").Cells(sonsat, 4) = TextBox2
Sheets("data").Cells(sonsat, 5) = TextBox3
Sheets("data").Cells(sonsat, 6) = TextBox4
Sheets("data").Cells(sonsat, 7) = TextBox5
Sheets("data").Cells(sonsat, 8) = TextBox6
Sheets("data").Cells(sonsat, 9) = TextBox7
Sheets("veri").Cells(sonsat, 3) = TextBox1
Sheets("veri").Cells(sonsat, 4) = TextBox2
Sheets("veri").Cells(sonsat, 5) = TextBox3
Sheets("veri").Cells(sonsat, 6) = TextBox4
Sheets("veri").Cells(sonsat, 7) = TextBox5
Sheets("veri").Cells(sonsat, 8) = TextBox6
Sheets("veri").Cells(sonsat, 9) = TextBox7
