+ Reply to Thread
Results 1 to 9 of 9

Student Attendance

Hybrid View

  1. #1
    Forum Expert
    Join Date
    05-29-2020
    Location
    NH USA
    MS-Off Ver
    365
    Posts
    2,103

    Re: Student Attendance

    Here is a different approach

    Sub checkUpdt()
    Dim i, lr, k, f, g, v, x As Long
    Dim sc, db As Worksheet
    
    Set sc = Sheets("Students Checkin Time")
    Set db = Sheets("Dashboard")
    lr = sc.Cells(Rows.Count, 1).End(xlUp).Row
    k = 0: f = 0: g = 0: v = 2: x = 2
    With sc
    For i = 2 To lr
        If .Cells(i, 1).Value = Date Then
            If Format(.Cells(i, 4).Value, "hh:mm") <= Format(Now(), "hh:mm") _
            And Format(.Cells(i, 5).Value, "hh:mm") > Format(Now(), "hh:mm") Then
                db.Cells(2 + v, 2 + g).Value = .Cells(i, 3).Value
                db.Cells(3 + v, 2 + g).Value = "Check in at:" & Format(.Cells(i, 4).Value, "hh:mm")
                db.Cells(4 + v, 2 + g).Value = "Total Time:" & DateDiff("n", .Cells(i, 4).Value, Format(Now(), "hh:mm"))
                k = k + 1
                f = f + 1
                g = g + 3
                If f Mod 3 = 0 Then
                    v = v + 5
                End If
                If g Mod 9 = 0 Then
                    g = 0
                End If
        
            End If
        End If
    Next
    End With
    'MsgBox "updated"
    MacroLoop
    End Sub
    
    
    Sub MacroLoop() 'this is the name of the macro that sets the OnTime
    If Time > #4:41:00 PM# Then Exit Sub
    Application.OnTime Now + TimeValue("00:01:00"), "checkUpdt"
    End Sub

  2. #2
    Forum Contributor
    Join Date
    05-26-2016
    Location
    India
    MS-Off Ver
    Microsoft 2021
    Posts
    324

    Re: Student Attendance

    Quote Originally Posted by maniacb View Post
    Here is a different approach
    Thanks Maniacb, but I not getting how it is working I changed the time of a student manually and tried to run macros but give error in Module 1 of Macro CloseL()
    and the time is not updated. Might be I am doing something wrong . Will u please guide me how it is working

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] I need to make a Student attendance
    By 1Melina in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-13-2014, 08:16 AM
  2. Student Attendance Record
    By Craigart14 in forum Excel General
    Replies: 4
    Last Post: 01-09-2014, 01:45 AM
  3. Student Attendance Record
    By Nita in forum Excel General
    Replies: 0
    Last Post: 06-13-2006, 10:55 PM
  4. How do I change dates in student attendance?
    By ScottO in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 09-06-2005, 03:05 PM
  5. [SOLVED] How do I change dates in student attendance?
    By Denise in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-05-2005, 11:05 PM
  6. How do I change dates in student attendance?
    By Denise in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-05-2005, 10:05 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1