seddur
Altın Üye
- Katılım
- 12 Nisan 2012
- Mesajlar
- 531
- Excel Vers. ve Dili
- Microsoft office professional plus 2019
- Altın Üyelik Bitiş Tarihi
- 18-12-2024
Merhaba."A1" hücresi boşsa commandbutton1 arkaplan rengi yeşil doluysa kırmızı,yine aynı şekilde "A2" hücresi boşsa commandbutton2 arkaplan rengi yeşil,doluysa kırmızı olacak şekilde kod yazmak istiyorum.Toplam 12 adet commandbutton var.Aşağıdaki kod çalışmadı.Yardımcı olursanız sevinirim.
Private Sub UserForm_Activate()
Dim s1 As Worksheet
Set s1 = Sheets("Anasayfa")
If s1.Cells(1, 1) <> "" Then
CommandButton1.BackColor = RGB(139, 0, 0)
Else
CommandButton1.BackColor = RGB(0, 153, 0)
If s1.Cells(2, 1) <> "" Then
CommandButton2.BackColor = RGB(139, 0, 0)
Else
CommandButton2.BackColor = RGB(0, 153, 0)
End If: End If:
Private Sub UserForm_Activate()
Dim s1 As Worksheet
Set s1 = Sheets("Anasayfa")
If s1.Cells(1, 1) <> "" Then
CommandButton1.BackColor = RGB(139, 0, 0)
Else
CommandButton1.BackColor = RGB(0, 153, 0)
If s1.Cells(2, 1) <> "" Then
CommandButton2.BackColor = RGB(139, 0, 0)
Else
CommandButton2.BackColor = RGB(0, 153, 0)
End If: End If: