Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Since you cannot increase the size of an a checkbox in Excel, I'm making one
using VB. Below is the code that I have compiled to allow the user to check/uncheck a box... However in addition to the code below, I need to add code to apply the contents of the autoshape to a cell on my sheet, therefore if the box is checked my cell will say true, otherwise it will say false. Please HELP!!! Sub MyCheckbox_Click() Dim strName As String strName = Application.Caller If Left(strName, 3) < "chk" Then strName = "chk" & strName If ActiveSheet.Shapes(strName).TextFrame.Characters.T ext = "" Then ActiveSheet.Shapes(strName).TextFrame.Characters.T ext = "ü" Else ActiveSheet.Shapes(strName).TextFrame.Characters.T ext = "" End If End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
code to unhide tabs based on cell contents | Excel Worksheet Functions | |||
VBA Code to Group Rows Based on Cell Contents | Excel Programming | |||
Run code based on cell contents | Excel Programming | |||
Deleting a shape and the cell contents the shape is in. | Excel Programming | |||
Deleting a shape and the cell contents the shape is in. | Excel Programming |