Using the code below and it works pefect but what I really need to have happen is that when I run the code and it updates on the "Timesheet"
I need to automatically deduct 30 minutes and then round up or down accordingly.
example: 6.31-.30 = 6.01 = 6.00
7.55 - .30 = 7.25 = 7.30
Sub Test()
Worksheets("Gate_Log").Range("A2:B300").Copy Worksheets("Timesheet").Range("B2")
Worksheets("Gate_Log").Range("D2:D300").Copy Worksheets("Timesheet").Range("D2")
Worksheets("Gate_Log").Range("E2:E300").Copy Worksheets("Timesheet").Range("L2")
End Sub
I have been working on this all day I must be dumber than I thought
All help will be very much appreciated..
I need to automatically deduct 30 minutes and then round up or down accordingly.
example: 6.31-.30 = 6.01 = 6.00
7.55 - .30 = 7.25 = 7.30
Sub Test()
Worksheets("Gate_Log").Range("A2:B300").Copy Worksheets("Timesheet").Range("B2")
Worksheets("Gate_Log").Range("D2:D300").Copy Worksheets("Timesheet").Range("D2")
Worksheets("Gate_Log").Range("E2:E300").Copy Worksheets("Timesheet").Range("L2")
End Sub
I have been working on this all day I must be dumber than I thought
All help will be very much appreciated..