Ana Sayfa
Dosyalar
Forum
Haberler
Giriş yap
Üye ol
Şifremi unuttum
Egitimhane.Com
»
Genel Konular
»
Bilgisayar
»
Excel'le Adım Adım Program Yazma
Sayfa:
1
...
26
27
28
29
30
[
31
]
32
33
34
35
36
...
65
Aşağı git
Excel'le Adım Adım Program Yazma
peternorton2
Bilge Üye
1.584
26.592
4. Sınıf Öğretmeni
1.584
26.592
4. Sınıf Öğretmeni
#
13 Ara 2014 23:51:06
VERİ OLMAYAN SON SATIRA GÖTÜRÜR
Private Sub CommandButton1_Click()
Dim alan, satırsayısı, sonsatır
Set alan = Cells(1, 1).CurrentRegion
satırsayısı = alan.Rows.Count
sonsatır = satırsayısı + 1
Cells(sonsatır, 1).Select
End Sub
peternorton2
Bilge Üye
1.584
26.592
4. Sınıf Öğretmeni
1.584
26.592
4. Sınıf Öğretmeni
#
13 Ara 2014 23:51:33
SON HÜCREYE GÖTÜRÜR
Sub ActivateNextBlankDown()
Range("A1").Select
ActiveCell.Offset(1, 0).Select
Do While Not IsEmpty(ActiveCell)
ActiveCell.Offset(1, 0).Select
Loop
End Sub
peternorton2
Bilge Üye
1.584
26.592
4. Sınıf Öğretmeni
1.584
26.592
4. Sınıf Öğretmeni
#
13 Ara 2014 23:52:01
LABELDEN SAYFANIN VERİLEN ADRESİNE VERİSİZ SON HÜCREYE YAZDIRIR
Private Sub Label1_Click()
Range("A1").Select
ActiveCell.Offset(1, 0).Select
Do While Not IsEmpty(ActiveCell)
ActiveCell.Offset(1, 0).Select
Loop
ActiveCell.FormulaR1C1 = "ZIMPARALI VALYAN PROBLEMİ"
End
End Sub
peternorton2
Bilge Üye
1.584
26.592
4. Sınıf Öğretmeni
1.584
26.592
4. Sınıf Öğretmeni
#
13 Ara 2014 23:52:32
EKRANI BÜYÜLTÜR
Sub Auto_Open()
Sheets("kitap1").Select
Application.DisplayFullScreen = True
Application.DisplayFormulaBar = False
Application.DisplayFormulaBar = False
With ActiveWindow
.DisplayHorizontalScrollBar = False
.DisplayVerticalScrollBar = False
.DisplayWorkbookTabs = False
End With
Range("A1").Select
End Sub
peternorton2
Bilge Üye
1.584
26.592
4. Sınıf Öğretmeni
1.584
26.592
4. Sınıf Öğretmeni
#
13 Ara 2014 23:52:58
EKRANI KÜÇÜLTÜR
Sub Auto_Close()
Sheets("kitap1").Select
Application.DisplayFullScreen = False
Application.DisplayFormulaBar = True
With ActiveWindow
.DisplayHorizontalScrollBar = True
.DisplayVerticalScrollBar = True
.DisplayWorkbookTabs = True
End With
End Sub
peternorton2
Bilge Üye
1.584
26.592
4. Sınıf Öğretmeni
1.584
26.592
4. Sınıf Öğretmeni
#
13 Ara 2014 23:53:57
DOSYA AÇILDIĞINDA PROGRAM TANIMLAMA BİLGİSİ
Sub auto_open()
Sheets("GİRİŞ").Select
Range("a1").Select
MsgBox "GİRİŞ Sayfasındaki gerekli bilgileri doldurun "
End Sub
peternorton2
Bilge Üye
1.584
26.592
4. Sınıf Öğretmeni
1.584
26.592
4. Sınıf Öğretmeni
#
13 Ara 2014 23:54:44
Çalışma Sayfasındaki en son dolu hücreden üstteki boş hücreleri siler
Sub DeleteEmptyRows()
LastRow = ActiveSheet.UsedRange.Row - 1 + _
ActiveSheet.UsedRange.Rows.Co
unt
Application.ScreenUpdating = False
For r = LastRow To 1 Step -1
If Application.CountA(Rows(r)) = 0 Then Rows(r).Delete
Next r
End Sub
peternorton2
Bilge Üye
1.584
26.592
4. Sınıf Öğretmeni
1.584
26.592
4. Sınıf Öğretmeni
#
13 Ara 2014 23:55:08
SATIR BOŞLUKLARINI DOLDURUR(sayfada)
Private Sub CommandButton8_Click()
LastRow = ActiveSheet.UsedRange.Row - 1 + _
ActiveSheet.UsedRange.Rows.Co
unt
Application.ScreenUpdating = False
For r = LastRow To 1 Step -1
If Application.CountA(Rows(r)) = 0 Then Rows(r).Delete
Next r
End Sub
peternorton2
Bilge Üye
1.584
26.592
4. Sınıf Öğretmeni
1.584
26.592
4. Sınıf Öğretmeni
#
13 Ara 2014 23:55:30
AÇIKLAMA FORMUNU KAPAR.
Private Sub CommandButton1_Click()
Unload UserForm1
End Sub
peternorton2
Bilge Üye
1.584
26.592
4. Sınıf Öğretmeni
1.584
26.592
4. Sınıf Öğretmeni
#
13 Ara 2014 23:56:02
FORM AÇAR
Sub formaç()
Günlük.Show
End Sub
peternorton2
Bilge Üye
1.584
26.592
4. Sınıf Öğretmeni
1.584
26.592
4. Sınıf Öğretmeni
#
13 Ara 2014 23:56:35
İSTEDİĞİNİZ SAYFAYA GİDER
Sub Ali_sayfasına_git()
Sheets("ALİ").Select
End Sub
Sonraki Sayfaya geçmek için kodlar
Sub SayfaSeçSonraki()
On Error Resume Next
If ActiveSheet.Index = Worksheets.Count Then
Worksheets(1).Select
Else
On Error Resume Next
Worksheets(ActiveSheet.Index + 1).Select
End If
End Sub
peternorton2
Bilge Üye
1.584
26.592
4. Sınıf Öğretmeni
1.584
26.592
4. Sınıf Öğretmeni
#
13 Ara 2014 23:57:04
Önceki Sayfaya geçmek için kodlar
Sub SayfaSeçÖnceki()
On Error Resume Next
If ActiveSheet.Index = Worksheets.Count Then
Worksheets(-1).Select
Else
Worksheets(ActiveSheet.Index - 1).Select
End If
End Sub
peternorton2
Bilge Üye
1.584
26.592
4. Sınıf Öğretmeni
1.584
26.592
4. Sınıf Öğretmeni
#
13 Ara 2014 23:57:23
HESAP MAKİNASINI AKTİF YAPAR
Sub Hesap_makinesi()
Application.ActivateMicrosoft
App Index:=0
End Sub
peternorton2
Bilge Üye
1.584
26.592
4. Sınıf Öğretmeni
1.584
26.592
4. Sınıf Öğretmeni
#
13 Ara 2014 23:57:44
NOT DEFTERİNİ ÇALIŞTIRIR
Sub notdefteri()
Call Shell("notepad.exe.", 1)
End Sub
peternorton2
Bilge Üye
1.584
26.592
4. Sınıf Öğretmeni
1.584
26.592
4. Sınıf Öğretmeni
#
13 Ara 2014 23:58:47
PROGRAMI KAPAR
Sub kapa()
MsgBox "Bu programı ....................... düzenlemiştir.", , "KAPATILIYOR"
ActiveWorkbook.Close True
End Sub
Sayfa:
1
...
26
27
28
29
30
[
31
]
32
33
34
35
36
...
65
Yukarı git
Egitimhane.Com
»
Genel Konular
»
Bilgisayar
»
Excel'le Adım Adım Program Yazma
Giriş yap
Üye ol
Her Şeyi Ara
Dosya Ara
Forum Son 100 Konu
Uzman Ve Başögretmenlik Süreci
Genel Sohbet Günlüğü
2. Sınıf Dokümanlar Günlüğü 2024-2025 Eğitim Öğretim Yılı
4. Sınıf Dökümanlar Günlüğü 2024-2025
4. Sınıf Öğretmenleri Günlüğü 2024-2025
Okul Yöneticileri Odası
Son Eklenen Dosyalar
1. Sınıf İlkokuma 2. Grup Harfler Cümleler-8
2. Sınıf 20. 11. 2024 Günlük Ödev
Kdv Tevkifat
Parasal Sınırlar
Taşınır Kodları
Şu an
1.720
kişi ve
105
üye var.
Aktif üyeler için tıklayınız.
Egitimhane.Com
©2006-2023
KVKK