Sonuca Göre Seçim

Katılım
14 Haziran 2005
Mesajlar
20
Arkadaşlar ekte yer alan çalışmada hesapla butonuna bastığımda D4 hücresindeki değere göre üstte karşılık gelen değere "X" işaret atmasını istiyorum. Ancak bir türlü beceremedim. Yardımcı olursanız sevinirim.
 
Katılım
2 Mart 2007
Mesajlar
603
Excel Vers. ve Dili
2003
Kod:
Private Sub CommandButton1_Click()
Range("a2", "f2").Value = ""
If Cells(4, 4).Value = 0 Then
Cells(2, 1).Value = "X"
End If
If Cells(4, 4).Value <= 20 And Cells(4, 4).Value > 0 Then
Cells(2, 2).Value = "X"
End If
If Cells(4, 4).Value <= 40 And Cells(4, 4).Value > 20 Then
Cells(2, 3).Value = "X"
End If
If Cells(4, 4).Value <= 60 And Cells(4, 4).Value > 40 Then
Cells(2, 4).Value = "X"
End If
If Cells(4, 4).Value <= 80 And Cells(4, 4).Value > 60 Then
Cells(2, 5).Value = "X"
End If
If Cells(4, 4).Value <= 100 And Cells(4, 4).Value > 80 Then
Cells(2, 6).Value = "X"
End If
End Sub
 

veyselemre

Özel Üye
Katılım
9 Mart 2005
Mesajlar
3,646
Excel Vers. ve Dili
Pro Plus 2021
Kod:
Private Sub CommandButton1_Click()
    [a2:f2].ClearContents
    sira = Int([d4] / 20) + 1
    If sira > 0 And sira < 7 Then Cells(2, sira) = "X"
End Sub
 
Katılım
14 Haziran 2005
Mesajlar
20
Teşekkür

Arkadaşlar ilginiz için çok teşekkür ediyorum.
 
Üst