ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   How to make a tick box (https://www.excelbanter.com/excel-discussion-misc-queries/118547-how-make-tick-box.html)

[email protected]

How to make a tick box
 
In my sheet I have multiple boxes. I want when I click them a V (check
mark) appears in it.
Should I do this with a code? or macro?

Thanks for help!

Regards,
Berry


Bob Phillips

How to make a tick box
 
This works by double-clicking in a cell, and toggles the check-mark.

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
Const WS_RANGE As String = "H1:H10" '<=== change to suit

On Error GoTo err_handler
Application.EnableEvents = False
If Not Application.Intersect(Target, Range(WS_RANGE)) Is Nothing Then
With Target
.Font.Name = "Marlett"
Select Case .Value
Case "": .Value = "a"
Case "a": .Value = ""
End Select
End With
End If
err_handler:
Application.EnableEvents = True
End Sub


'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.


--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

wrote in message
ps.com...
In my sheet I have multiple boxes. I want when I click them a V (check
mark) appears in it.
Should I do this with a code? or macro?

Thanks for help!

Regards,
Berry




[email protected]

How to make a tick box
 
Thanks Bob for your code. Unfortunatelly it did not worked. I get a
error. Maybe you can send me a empty sheet with your code in it.
My email is

Thank you



[email protected]

How to make a tick box
 
Thanks Bob for your code. Unfortunatelly it did not worked. I get a
error. Maybe you can send me a empty sheet with your code in it.
My email is

Thank you




All times are GMT +1. The time now is 11:52 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com