Not sıralama

Katılım
22 Mayıs 2009
Mesajlar
1,017
Excel Vers. ve Dili
Office 2003
Değerli üstadlarım
Ekli dosyada belirli kritere göre grup yapıp sıralamam lazım. Yardımcı olabilir misiniz?
 

Ekli dosyalar

Ömer

Moderatör
Yönetici
Katılım
18 Ağustos 2007
Mesajlar
22,184
Excel Vers. ve Dili
Microsoft 365 Tr
Ofis 2016 Tr
Merhaba,

Alternatif olsun.

Kod:
Option Explicit
Sub Listele()
Dim i, sat1, sat2, sat3, sat4, sat5, sat6 As Long
Application.ScreenUpdating = False
Range("G4:Q65536").ClearContents
sat1 = 3: sat2 = 3: sat3 = 3: sat4 = 3: sat5 = 3: sat6 = 3
    For i = 1 To [A65536].End(3).Row
        If Cells(i, "a") < 25 Then
            sat1 = sat1 + 1
            Cells(sat1, "g") = Cells(i, "a")
        End If
        If Cells(i, "a") >= 25 And Cells(i, "a") < 45 Then
            sat2 = sat2 + 1
            Cells(sat2, "ı") = Cells(i, "a")
        End If
        If Cells(i, "a") >= 45 And Cells(i, "a") < 55 Then
            sat3 = sat3 + 1
            Cells(sat3, "k") = Cells(i, "a")
        End If
        If Cells(i, "a") >= 55 And Cells(i, "a") < 70 Then
            sat4 = sat4 + 1
            Cells(sat4, "m") = Cells(i, "a")
        End If
        If Cells(i, "a") >= 70 And Cells(i, "a") < 85 Then
            sat5 = sat5 + 1
            Cells(sat5, "o") = Cells(i, "a")
        End If
        If Cells(i, "a") >= 85 Then
            sat6 = sat6 + 1
            Cells(sat6, "q") = Cells(i, "a")
        End If
    Next i
Application.ScreenUpdating = True
End Sub
.
 
Katılım
22 Mayıs 2009
Mesajlar
1,017
Excel Vers. ve Dili
Office 2003
Değerli UZMANLARIM;

Allah razı olsun.muygun üstadıma da ömer üstadıma da teşekkür ederim.
 
Katılım
27 Ağustos 2007
Mesajlar
41
Excel Vers. ve Dili
2007
not sıralama

kendi yaptığım not sıralamasını gönderiyom umarım işinize yarar
okulda başarı durumları için yaptığım uygulama
 

Ekli dosyalar

Katılım
27 Ağustos 2007
Mesajlar
41
Excel Vers. ve Dili
2007
not aralığı

az önce gönderdiklerimde ormüller silinmiş özür
şimdi doğrusunu göndermeye çalışıyom .
 

Ekli dosyalar

Üst