![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Guest
Posts: n/a
|
How do i add a cell where a person can tick or cross it?
cheers for any help |
|
|
|
#2 |
|
Board Regular
Join Date: Feb 2002
Location: United Kingdom
Posts: 68
|
A simple tick box can be added by going to:
View/Toolbars/Forms On the Forms toolbar, select the tick box, go to the point on your spreadsheet where you want to insert it and drag&drop. Nobby |
|
|
|
|
|
#3 |
|
Board Regular
Join Date: Feb 2002
Location: Georgia USA
Posts: 544
|
Put in worksheet code format column A as Marlett will put a check mark in column A, when you click in it, if there is something in the same row in another column. Click in the cell again and it will remove it, thanks to the board for help on this code.
Private Sub Worksheet_SelectionChange(ByVal Target As Range) Dim rng As Range, cell As Range If Selection.Cells.Count = 1 And _ Not Intersect(Selection, Columns(1)) Is Nothing And _ Not Intersect(Selection, ActiveSheet.UsedRange) Is Nothing Then With Selection If .Value = "a" Then .ClearContents Else: .Value = "a" End If End With End If End Sub |
|
|
|
|
|
#4 |
|
Board Regular
Join Date: Feb 2002
Posts: 61
|
what if u are using other column not A then what to enter in the code?
|
|
|
|
|
|
#5 |
|
Board Regular
Join Date: Feb 2002
Posts: 3,064
|
yes marlet does this as said, but have look see over wing dings 1 and 2 and odd fonts change th eformatting.. myu fav is squashed frog, famouse in my building as its as cunning as a cunning plan
it looks hust like a squashed frog .. ... .. .. .. NOT! but some good effect down there.
__________________
Free Excel based Web Toolbar available here. Jack in the UK J & R Excel Solutions "making Excel work for you" |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|