Thread
:
value of option button
View Single Post
#
1
Posted to microsoft.public.excel.programming
merjet
external usenet poster
Posts: 812
value of option button
Dim c As Control
For Each c In Controls
If TypeName(c) = "OptionButton" Then
Debug.Print c.Name, c.Value
End If
Next c
HTH,
Merjet
Reply With Quote
merjet
View Public Profile
Find all posts by merjet