#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 79
Default check box counter

Hi All

I have a mamoth job of data entry and need to enter results with a yes/no
answer. Is there a way of setting up excel so you click in the cell and it
puts a tick or cross (or number)?

I am using Excel 2003 professional

Cheers Rexmann
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default check box counter

You don't give too much information but this will put a tick in A1 _ A100
whenever 1 of those cells is selected

Right click your sheet tab, view code and paste it in

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Intersect(Target, Range("A1:A100")) Is Nothing Then
Target.Font.Name = "WingDings 2"
Target.Value = "P"
End If
End Sub

Mike
"rexmann" wrote:

Hi All

I have a mamoth job of data entry and need to enter results with a yes/no
answer. Is there a way of setting up excel so you click in the cell and it
puts a tick or cross (or number)?

I am using Excel 2003 professional

Cheers Rexmann

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,942
Default check box counter

hi
how about a double click on the cell.
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
Dim r As Range
Set r = Range("B1:B10") 'change to suit
If Target.Column < r.Column Then Exit Sub
With r.Font
.Name = "Marlett"
End With
ActiveCell.FormulaR1C1 = "'a"
End Sub

regards
FSt1

"rexmann" wrote:

Hi All

I have a mamoth job of data entry and need to enter results with a yes/no
answer. Is there a way of setting up excel so you click in the cell and it
puts a tick or cross (or number)?

I am using Excel 2003 professional

Cheers Rexmann

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
Check Box & Counter RANI Excel Worksheet Functions 0 June 27th 07 02:31 AM
how do I set up a counter? John T Excel Discussion (Misc queries) 3 October 20th 06 09:01 PM
counter Haza Excel Discussion (Misc queries) 2 January 20th 06 08:30 PM
Counter Sdbenn90 Excel Discussion (Misc queries) 4 January 9th 06 11:43 AM
Counter Polina Excel Discussion (Misc queries) 2 May 27th 05 09:52 PM


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

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

About Us

"It's about Microsoft Excel"