- Katılım
- 11 Mart 2005
- Mesajlar
- 3,202
- Excel Vers. ve Dili
- Office 2013 İngilizce
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub Onaylı()
For Each chki In ActiveSheet.CheckBoxes
With chki
If chki.Value = xlOff Then
.Value = True
End If
End With
Next
End Sub
Sub OnaySız()
For Each chki In ActiveSheet.CheckBoxes
With chki
If chki.Value <> xlOff Then
.Value = False
End If
End With
Next
End Sub
Mutlu yıllar , inceleyiniz benzer bir konuyu işlemiştik.
toplu checkbox işaretleme
merhaba arkadaşlar 20 adet textbox kutusu var commandbutton içinde küçük bir döngü ile toplu seçebilirmiyizwww.excel.web.tr
Alternatif olarak kodda ekliyorum.
Kod:Sub Onaylı() For Each chki In ActiveSheet.CheckBoxes With chki If chki.Value = xlOff Then .Value = True End If End With Next End Sub Sub OnaySız() For Each chki In ActiveSheet.CheckBoxes With chki If chki.Value <> xlOff Then .Value = False End If End With Next End Sub
Sn Emre çok teşekkürler,