ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   click functions (https://www.excelbanter.com/excel-programming/301746-click-functions.html)

jlong

click functions
 
I have a range of 20 possible measurments that correspond to 20 items,
have made a table and want to set it up so that the user has to clic
the cell (or check box) that corresponds to the items measurment. onl
1 out of the 20 possible can selected at a time for each item and th
checked cell must make that cell = "X" or true. Please help??

--
Message posted from http://www.ExcelForum.com


Bob Phillips[_6_]

click functions
 
Try using a column for the checkboxes, and some code like this to put a tick
in the cell
Private Sub Worksheet_SelectionChange(ByVal Target As Range)

With Target
If .Column = 1 Then
.EntireColumn.Clear
If .Value = "a" Then
.Value = ""
.Font.Name = "Arial"
.Offset(0, 1).Value = ""
Else
.Value = "a"
.Font.Name = "Marlett"
End If
End If
End With
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
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"jlong " wrote in message
...
I have a range of 20 possible measurments that correspond to 20 items, I
have made a table and want to set it up so that the user has to click
the cell (or check box) that corresponds to the items measurment. only
1 out of the 20 possible can selected at a time for each item and the
checked cell must make that cell = "X" or true. Please help???


---
Message posted from http://www.ExcelForum.com/




jlong[_2_]

click functions
 
I can't seem to get that to work, my range of cells are C3:V23 in whic
only one checkbox of each column can be selected. The cells in eac
column that contain the checked boxes are to get a value of "x" and th
rest must be empty.
This seems like it should be easy but it's not working for me

--
Message posted from http://www.ExcelForum.com


Bob Phillips[_6_]

click functions
 
If you allow row m2 for your checkmarks, use this code variation. To check a
column, just select any of C2:V2

Private Sub Worksheet_SelectionChange(ByVal Target As Range)

If Not Intersect(Target, Range("C2:V2")) Then
With Target
Range("C2:V2").Clear
If .Value = "a" Then
.Value = ""
.Font.Name = "Arial"
.Offset(0, 1).Value = ""
Else
.Value = "a"
.Font.Name = "Marlett"
End If
End If
End With
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
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"jlong " wrote in message
...
I can't seem to get that to work, my range of cells are C3:V23 in which
only one checkbox of each column can be selected. The cells in each
column that contain the checked boxes are to get a value of "x" and the
rest must be empty.
This seems like it should be easy but it's not working for me.


---
Message posted from http://www.ExcelForum.com/





All times are GMT +1. The time now is 05:25 PM.

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