I'm importing a library to modify cells in Excel:
Imports Excel = Microsoft.Office.Interop.Excel
I'm using this line to modify the value of a cell (oWs being the sheet):
oWs.Cells.Range("name").Value = "foo"
How would I change an Option Button's value? It seems that I cannot select the button at all.