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
...
38
39
40
41
42
[
43
]
44
45
46
47
48
...
65
Aşağı git
Excel'le Adım Adım Program Yazma
peternorton2
Bilge Üye
1.584
26.593
4. Sınıf Öğretmeni
1.584
26.593
4. Sınıf Öğretmeni
#
17 Ara 2014 22:22:51
A1 hücresinde saat
Dim stopit As Boolean 'on top of module!
Sub startclock() 'assign start button
stopit = False
clock
End Sub
Sub clock()
If stopit = True Then Exit Sub
ActiveWorkbook.Worksheets(1).Cells(1, 1).Value = _
Format(Now, "hh:mm:ss")
Application.OnTime (Now + TimeSerial(0, 0, 1)), "clock"
End Sub
Sub stopclock() 'assign stop button
stopit = True
End Sub
peternorton2
Bilge Üye
1.584
26.593
4. Sınıf Öğretmeni
1.584
26.593
4. Sınıf Öğretmeni
#
17 Ara 2014 22:23:29
A1 hücresindeki isimle sayfayı istenilen yere kaydetme
Sub Enreg_Fichier()
Dim NomFichier As String
NomFichier = Range("A1")
ActiveWorkbook.SaveAs "c:\excel\" & NomFichier
End Sub
peternorton2
Bilge Üye
1.584
26.593
4. Sınıf Öğretmeni
1.584
26.593
4. Sınıf Öğretmeni
#
17 Ara 2014 22:23:59
A1 hücresindeki isimle yeni sayfa
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Address = "$A$1" And Target.Value = 1 Then
Dim sayfa As Worksheet
Dim önek As String
Dim sonek As Integer
Set Sayfam = Worksheets.Add
önek = "Sayfam"
SonEkim = 1
On Error Resume Next
Sayfam.Name = önek & sonek
If Err.Number <> 0 Then
önek = sonek + 1
Sayfam.Name = önek & sonek
End If
End If
End Sub
peternorton2
Bilge Üye
1.584
26.593
4. Sınıf Öğretmeni
1.584
26.593
4. Sınıf Öğretmeni
#
17 Ara 2014 22:24:30
A1 hücresine hapsetmek
Application.Sheets("Sayfa Adı").ScrollArea = "A1"
peternorton2
Bilge Üye
1.584
26.593
4. Sınıf Öğretmeni
1.584
26.593
4. Sınıf Öğretmeni
#
17 Ara 2014 22:25:41
A1 hücresine rakam yazmak mecburi yoksa diğer hücrelere geçiş yasak
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not IsNumeric(Range("A1")) Or Range("A1") = "" Then
Range("A1").ClearContents
Range("A1").Select
MsgBox "Lütfen sayı giriniz!"
End If
End Sub
peternorton2
Bilge Üye
1.584
26.593
4. Sınıf Öğretmeni
1.584
26.593
4. Sınıf Öğretmeni
#
17 Ara 2014 22:26:38
A1 i 1 artırma
Sub Count()
mycount = Range("a1") + 1
Range("a1") = mycount
End Sub
Sub Workbook_Open()
With Worksheets(1).Range("A1")
.Value = .Value + 1
End With
End Sub
peternorton2
Bilge Üye
1.584
26.593
4. Sınıf Öğretmeni
1.584
26.593
4. Sınıf Öğretmeni
#
17 Ara 2014 22:27:42
A1 ile sayfa ekleme ekleyerek
Sub FeuilViaLst()
Dim Mycell As Range, Mysheet As Worksheet, MyName$
For Each Mycell In Selection 'liste de noms
MyName = Mycell.Value
If MyName <> "" Then
On Error Resume Next
Set Mysheet = Sheets(MyName)
On Error GoTo 0
If Mysheet Is Nothing Then Sheets.Add.Name = MyName
End If
Next Mycell
End Sub
peternorton2
Bilge Üye
1.584
26.593
4. Sınıf Öğretmeni
1.584
26.593
4. Sınıf Öğretmeni
#
17 Ara 2014 22:28:06
A1 itibaren sayfa isimlerini yaz
Sub ListeFeuilles()
Application.ScreenUpdating = False
Application.DisplayAlerts = False
Set ArrFeuil = Sheets("Sayfa1")
ArrFeuil.Cells(1, 1).Value = "Tableau des feuilles"
For i = 2 To ActiveWorkbook.Sheets.Count
ArrFeuil.Cells(i, 1).Value = Sheets(i).Name
Next i
Application.DisplayAlerts = True
Alerte = True
Application.ScreenUpdating = True
End Sub
peternorton2
Bilge Üye
1.584
26.593
4. Sınıf Öğretmeni
1.584
26.593
4. Sınıf Öğretmeni
#
17 Ara 2014 22:28:40
A1 sütununda çift kayıt girmek yasak (hücreyeelle girersen siler)
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
For a = [a65536].End(3).Row To 1 Step -1
If WorksheetFunction.CountIf(Range("a1:a" & a), Cells(a, "a")) > 1 Then Rows(a).ClearContents
Next
End Sub
peternorton2
Bilge Üye
1.584
26.593
4. Sınıf Öğretmeni
1.584
26.593
4. Sınıf Öğretmeni
#
17 Ara 2014 22:29:11
A1 ve b1 hücresindeki verileri birleştirme
Sub birlestir()
For a=1 To cells(65536,1).end(xlup).row
cells(a,3)=cells(a,1) & " " & cells(a,2)
Next
End Sub
peternorton2
Bilge Üye
1.584
26.593
4. Sınıf Öğretmeni
1.584
26.593
4. Sınıf Öğretmeni
#
17 Ara 2014 22:29:39
A1, a3 ten küçükse mesaj verir.
Private Sub Worksheet_Calculate()
If Range("A1").Value < Range("A3").Value Then
Call Macro1
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Address = "$A$1" Or Target.Address = "$A$3" Then
If Range("A1").Value < Range("A3").Value Then
Call Macro2
Else
End If
End If
End Sub
Sub Macro1()
MsgBox " bu 1.makrodur"
End Sub
Sub Macro2()
MsgBox " bu 2.makrodur"
End Sub
peternorton2
Bilge Üye
1.584
26.593
4. Sınıf Öğretmeni
1.584
26.593
4. Sınıf Öğretmeni
#
17 Ara 2014 22:30:19
A1,b1,c1,d1 e yazı yaz kolonları seç ve sil (bekletmeli silme)
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
On Error Resume Next
For Each TmpRng In Target
TmpVal = TmpRng.Validation.Type
If TmpVal > 0 Then
If Application.CutCopyMode = 1 Then
MsgBox "You cannot paste into validated cells."
Application.CutCopyMode = False
Exit Sub
End If
End If
Next
End Sub
peternorton2
Bilge Üye
1.584
26.593
4. Sınıf Öğretmeni
1.584
26.593
4. Sınıf Öğretmeni
#
17 Ara 2014 22:30:43
A1:a10 , c1:c10 u karşılaştırır girilen rakamlar farklı ise uyarı verir.
Private Sub Worksheet_Change(ByVal Target As Range)
If [a10].Value <> [c10].Value Then MsgBox ("Girdiğiniz rakamlar farklı")
End Sub
peternorton2
Bilge Üye
1.584
26.593
4. Sınıf Öğretmeni
1.584
26.593
4. Sınıf Öğretmeni
#
17 Ara 2014 22:31:06
A1:a10 arasındaki hücreleri rastgele seçer:
Sub rast()
Dim rastgele As Integer
ilk:
rastgele = Int(Rnd() * 11)
If rastgele <= 0 Or rastgele > 11 Then GoTo ilk
Cells(rastgele, 1).Select
End Sub
peternorton2
Bilge Üye
1.584
26.593
4. Sınıf Öğretmeni
1.584
26.593
4. Sınıf Öğretmeni
#
17 Ara 2014 22:31:30
A1:A10 hücreleri arasında 10 dan büyükleri kalın yapar
Sub buyukler_kalin()
Cells(Rows.Count, "A").End(xlUp).Select
For Each rgRow In Range("a1:a10").Rows
If rgRow.Cells(1).Value > 10 Then
rgRow.Font.Bold = True
Else
rgRow.Font.Bold = False
End If
Next rgRow
End Sub
Sayfa:
1
...
38
39
40
41
42
[
43
]
44
45
46
47
48
...
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
Mys-Ödenek Takip-Doğrudan Temin
Okul Yöneticileri Odası
E-Sınav Görevi Cezası
Genel Sohbet Günlüğü
Meb Sınav Görevleri Bölümü
Son Eklenen Dosyalar
5. Sınıf İngilizce 1. Dönem 2. Yazılı Soruları (Senaryolu-Cevaplı)
5. Sınıf Fen Bilimleri 1. Dönem 2. Yazılı Soruları (Senaryolu-Cevaplı)
2. Sınıf İstek Ve İhtiyaçlar Etkinliği
Cümle Yöntemi İle Okuma Yazma Öğretimi-18 Erken Uyu, Erken Uyan
2. Sınıf Bilmece Bulmaca Etkinliği
Şu an
1.541
kişi ve
24
üye var.
Aktif üyeler için tıklayınız.
Egitimhane.Com
©2006-2023
KVKK