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.
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
Sizlere daha iyi bir deneyim sunabilmek icin sitemizde çerez konumlandırmaktayız, web sitemizi kullanmaya devam ettiğinizde çerezler ile toplanan kişisel verileriniz Veri Politikamız / Bilgilendirmelerimizde belirtilen amaçlar ve yöntemlerle mevzuatına uygun olarak kullanılacaktır.