Leave Database Time Tracking to equal full day after 8 hours

Roderique

New Member
Joined
Aug 16, 2024
Messages
3
Office Version
  1. 365
Platform
  1. Windows
Good day,

I trust all is well.

I have a excel leave tracking database for employees with two sheets named:
Sheet 1. Calendar Months
Sheet 2. Leave Time Tracker

I have the following information in Sheet 1 'Calendar Months':
- The Month in Cell B3
- The Year in Cell E3
- The employees names in Range C6:C14 (named: A, B, C, D, E, F, G, H, I)
- The dates (01 to 31) in Range F6:AJ6
- The Leave category Late is "L" that I can be selected in the dates range (calendar) for all employees.

I am looking to do the following in Sheet 2 'Leave Time Tracker':
- When I select the "L" in sheet 1 the employee name should automatically formulate to sheet 2 from Cell A4 all the way down under the heading 'Employee Name' in Cell A3
- The "L" selection in the calendar should also automate the date in sheet 2 from Cell B4 all the way down under the heading 'Date of Late Arrival' in Cell B3.

*The automated inputs needs to be inserted in new rows each time and not alphabetically order itself. Example, Employee named A is late on 01 Jan 2025, Employee B is late on 05 Jan 2025, but when Employee named A is late again on 22 Jan 2025 it should go after Employee B that was selected before that.

Can someone please assist me with formulas I can use? Your further assistance will be highly appreciated
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
I can't really picture your layout from your description. I think you'll likely need a VBA solution, if I understood your request correctly.
Could you attach some example data, including expected results using XL2BB?
 
Upvote 0
Don't know what the title of this thread has to do with what you've asked for
but none the less....
Right click on the Calendar Months tab and select View code
the VBA window will open, paste this into the editor on the right.

VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    'limit to one cell changing at a time
    If Target.CountLarge > 1 Then Exit Sub
        
    Dim src As Worksheet: Set src = Sheets("Calendar Months")
    Dim dest As Worksheet: Set dest = Sheets("Leave Time Tracker")
    Dim lastRow As Long, writeRow As Long
    
    lastRow = Range("A" & Rows.Count).End(xlUp).Row
    If Not Intersect(Target, Range("F7:AJ" & lastRow)) Is Nothing Then
        If UCase(Target.Value) = "L" Then
            With dest
                writeRow = .Cells(.Rows.Count, 1).End(xlUp).Offset(1).Row
                .Cells(writeRow, "A") = src.Cells(Target.Row, 1)
                .Cells(writeRow, "B") = src.Cells(6, Target.Column)
                .Cells(writeRow, "B").NumberFormat = "d/m/yyyy"
            End With
        End If
    End If

End Sub

Goto the Calendar Months sheet and try an L entry.
 
Upvote 0
Don't know what the title of this thread has to do with what you've asked for
but none the less....
Right click on the Calendar Months tab and select View code
the VBA window will open, paste this into the editor on the right.

VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    'limit to one cell changing at a time
    If Target.CountLarge > 1 Then Exit Sub
       
    Dim src As Worksheet: Set src = Sheets("Calendar Months")
    Dim dest As Worksheet: Set dest = Sheets("Leave Time Tracker")
    Dim lastRow As Long, writeRow As Long
   
    lastRow = Range("A" & Rows.Count).End(xlUp).Row
    If Not Intersect(Target, Range("F7:AJ" & lastRow)) Is Nothing Then
        If UCase(Target.Value) = "L" Then
            With dest
                writeRow = .Cells(.Rows.Count, 1).End(xlUp).Offset(1).Row
                .Cells(writeRow, "A") = src.Cells(Target.Row, 1)
                .Cells(writeRow, "B") = src.Cells(6, Target.Column)
                .Cells(writeRow, "B").NumberFormat = "d/m/yyyy"
            End With
        End If
    End If

End Sub

Goto the Calendar Months sheet and try an L entry.
Thank you. I will add other columns to add all late time until it gets to 8 hours.

Is VBA the only option? Our office uses a system called MyContent where the excel document will be uploaded for all employees to acces. The document will open in Excel online.
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,173
Members
451,543
Latest member
cesymcox

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