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

I need to mark attendance for a class running for 3 months.
anyone an attendance sheet for 15 people where i can just check on
each box if they are present.

this should also have a pie chart where each person's participation is
shown as a percentage to all
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,420
Default attendance sheet

Put the names in A2 down, the dates in B1 across to say CO1, and then

This works by double-clicking in a cell, and toggles the check-mark.

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
Const WS_RANGE As String = "B2:CO16" '<=== change to suit

On Error GoTo err_handler
Application.EnableEvents = False
If Not Application.Intersect(Target, Range(WS_RANGE)) Is Nothing Then
With Target
.Font.Name = "Marlett"
Select Case .Value
Case "": .Value = "a"
Case "a": .Value = ""
End Select
End With
End If
err_handler:
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.

then just chart that data.

--
__________________________________
HTH

Bob

"Lynn" wrote in message
...
I need to mark attendance for a class running for 3 months.
anyone an attendance sheet for 15 people where i can just check on
each box if they are present.

this should also have a pie chart where each person's participation is
shown as a percentage to all



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,069
Default attendance sheet

There are some free templates you can download from this site which may be of
some help to you.

http://www.vertex42.com/ExcelTemplat...-tracking.html
--
jb


"Lynn" wrote:

I need to mark attendance for a class running for 3 months.
anyone an attendance sheet for 15 people where i can just check on
each box if they are present.

this should also have a pie chart where each person's participation is
shown as a percentage to all

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
How to create Login & Log out Spread sheet in Excel with automated Attendance sheet marc5354 Excel Worksheet Functions 2 September 21st 10 04:22 PM
Help creating attendance sheet. Prem New Users to Excel 8 January 24th 10 10:47 PM
Attendance Sheet. Clark Excel Discussion (Misc queries) 2 October 18th 07 03:20 AM
attendance sheet may HS Excel Worksheet Functions 1 September 12th 05 06:49 PM
attendance sheet to add time but not..... Erny Meyer Excel Worksheet Functions 0 March 23rd 05 04:11 PM


All times are GMT +1. The time now is 06:55 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"