Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11
Default Custom checkbox

I have a large (10 page) worksheet that is mostly cells to select YES, NO,
N/A, SAT, UNSAT.

How can I:
1. Resize the built in excel checkbox or radio buttons?
or
2. Have an "X" or large custom check mark placed in the correct cell with a
mouse click?
or
3. Another way to simply filling out this sheet?

I have Excel97, VBA, and Excel 2000.
Thanks
Hank


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 38
Default Custom checkbox

1 - You can't change the size of these objects.
2 - You can use the Worksheet_SelectionChange event to
place an X in a cell.
3 - see # 2

Private Sub Worksheet_SelectionChange(ByVal Target As
Range)

'Assume you want only one cell from A1 to A5 to be X'd at
any time. This will ensure only the cells you want to
deal with are handled here, and place an X in the selected
cell.
If Target.Column = 1 And Target.Row <= 5 And
Target.Cells.Count = 1 Then
'Clear all 5 cells, then set just the one cell to X
Range("A1:A5").Value = ""
Target.Value = "X"
End If

End Sub




-----Original Message-----
I have a large (10 page) worksheet that is mostly cells

to select YES, NO,
N/A, SAT, UNSAT.

How can I:
1. Resize the built in excel checkbox or radio buttons?
or
2. Have an "X" or large custom check mark placed in the

correct cell with a
mouse click?
or
3. Another way to simply filling out this sheet?

I have Excel97, VBA, and Excel 2000.
Thanks
Hank


.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Format Cell as custom type but data doesn't display like I custom. ToMMie Excel Discussion (Misc queries) 6 September 11th 08 08:31 AM
2003 - 2007 custom macro and custom button restore. Scott Sornberger Excel Discussion (Misc queries) 11 May 23rd 08 02:41 PM
Adding custom list and text boxes to the custom tool bar from Excel C API Mousam Excel Discussion (Misc queries) 0 August 7th 07 09:19 AM
How to have Checkbox A uncheck with checked Checkbox B Texas Aggie Excel Discussion (Misc queries) 3 July 20th 07 10:58 PM
Can you link a custom property to an Excel custom header text? LouErc Setting up and Configuration of Excel 0 November 8th 05 04:58 PM


All times are GMT +1. The time now is 10:16 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"