Sep 18, 2014 #1 tbtcust Programmer Oct 26, 2004 214 US Hello all, I have an ActiveX toggle button on a worksheet How can I pull the Value ("True" or "False") from the Toggle in a module using Excel VBA? Thanks in advance for any help.
Hello all, I have an ActiveX toggle button on a worksheet How can I pull the Value ("True" or "False") from the Toggle in a module using Excel VBA? Thanks in advance for any help.
Sep 19, 2014 1 #2 combo Technical User Jan 1, 2003 4,183 PL Assuming the same workbook and first worksheet: [tt]MsgBox ThisWorkbook.Worksheets(1).ToggleButton1.Value[/tt] combo Upvote 0 Downvote
Assuming the same workbook and first worksheet: [tt]MsgBox ThisWorkbook.Worksheets(1).ToggleButton1.Value[/tt] combo
Sep 19, 2014 Thread starter #3 tbtcust Programmer Oct 26, 2004 214 US Thank you combo. This works. Issue resolved. Upvote 0 Downvote