Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
analiese f
 
Posts: n/a
Default is it possible to insert chcekboxes in an excel spreadsheet?

I am trying to track the status of jobs using an excel spreadsheet, and I'm
looking for an easy way to select between several options I've placed in the
spreadsheet. It would be great if I can use checkboxes so that users can
highlight as many options as relevant, but I'm not sure if this is possible.
Does anyone know how to do this? And if not can anyone offer another
solution??
Thanks
  #2   Report Post  
Carole O
 
Posts: n/a
Default

Check out the Forms toolbar - there is a check box in that. (View, toolbar,
forms)

Hope this helps,
Carole

"analiese f" wrote:

I am trying to track the status of jobs using an excel spreadsheet, and I'm
looking for an easy way to select between several options I've placed in the
spreadsheet. It would be great if I can use checkboxes so that users can
highlight as many options as relevant, but I'm not sure if this is possible.
Does anyone know how to do this? And if not can anyone offer another
solution??
Thanks

  #3   Report Post  
Bob Phillips
 
Posts: n/a
Default

you could try this solution that I came up with a while back. This is a copy
of that post


Another way is to use this technique of having a check column, and
monitoring it with a worksheet selection change event. Add your code as
needed.


Rather than use a checkbox, I suggest just using a check column. So if we
assume that the data is in A1:E100 (change to suit), clicking in column A
will do what you want with this code.


Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.EnableEvents = False
On Error GoTo sub_exit
If Not Intersect(Target, Range("A1:A100")) Is Nothing Then
With Target
If .Value = "a" Then
.Value = ""
Else
.Value = "a"
.Font.Name = "Marlett"
End If
End With
End If
sub_exit:
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

RP
(remove nothere from the email address if mailing direct)


"analiese f" wrote in message
...
I am trying to track the status of jobs using an excel spreadsheet, and

I'm
looking for an easy way to select between several options I've placed in

the
spreadsheet. It would be great if I can use checkboxes so that users can
highlight as many options as relevant, but I'm not sure if this is

possible.
Does anyone know how to do this? And if not can anyone offer another
solution??
Thanks



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
Is there a way to insert a formula, password or macro in an excel spreadsheet that will automatically delete the spreadsheet? oil_driller Excel Discussion (Misc queries) 1 February 8th 05 09:34 AM
Insert Function "FX" on Toolbar in Excel Rich Excel Discussion (Misc queries) 4 January 16th 05 03:04 PM
how do i insert a combobox in excel LYNNSKIN Excel Worksheet Functions 1 January 13th 05 08:49 PM
How to insert PDF letterhead as a background in Excel reception Excel Discussion (Misc queries) 0 December 15th 04 10:53 PM
How to insert PDF letterhead as a background in Excel Cand Excel Discussion (Misc queries) 0 December 15th 04 10:51 PM


All times are GMT +1. The time now is 03:02 AM.

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"