Help with formula to track attendance

LinTal

New Member
Joined
Dec 3, 2011
Messages
4
Hi,

I'm developing a spreadsheet through Google Docs that lists students in attendance per day of class (by date). The prerequisite for assessment is a certain number of days in class that increases as your level does. Would it be possible to make a formula that counts occurances attached to dates listed *after* a certain point? The steps after would be to have it notify me when a student is eligible to sit a test, and then to be able to change it to the new requirement as the level changes. My apologies, knowledge of excel formulas is limited for anything creative. Which is why I can't seem to make heads or tails of this one!

Thanks so much in advance.
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
If I read your goal correctly then maybe something like this would help.

It looks at Cell A:A and counts the amount of occurrences in that range. If the occurrences go over or match the given number "15" in this case then it displays they are eligible.

Hope this helps:

Code:
=IF(COUNT(A:A)>=15,"Eligible","Not Eligible")
 
Upvote 0
That's wonderful, thank you! I'd been looking to show eligibility between certain dates, all that was left to do was combine the one you gave me with one I was trying to tweak earlier (=COUNTIF('Form Attendance Data'!E2:E,"*Student*")). Cheers for that!!
 
Upvote 0

Forum statistics

Threads
1,215,301
Messages
6,124,142
Members
449,144
Latest member
Rayudo125

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top