Sep 18, 2014 #1 tbtcust Programmer Joined Oct 26, 2004 Messages 214 Location 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 Joined Jan 1, 2003 Messages 4,198 Location 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 Joined Oct 26, 2004 Messages 214 Location US Thank you combo. This works. Issue resolved. Upvote 0 Downvote