Want to know formula regarding excel

Ashar raja

New Member
Joined
Feb 16, 2021
Messages
1
Office Version
  1. 2013
Platform
  1. Windows
Hi Experts,
I am working in a consultancy firm where I am dealing with different types of clients at the same time. I am using excel 2016. My concern is there any type of formula or any other function which helps me to check when I open and close the excel file includes all specifically day, date, and time of opening and closing of excel sheet as well as computer name in different cells?
Note: I want to calculate the working time which I gave to the client.


Thanks,
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Put this on "ThisWorkbook" module

VBA Code:
Private Sub Workbook_Open()
 With Worksheets("Sheet1")
r = .Cells(Rows.Count, "A").End(xlUp).Row + 1
.Cells(r, "A") = Now
.Cells(r, "B") = Environ$("computername")
End With
End Sub

Private Sub Workbook_BeforeClose(Cancel As Boolean)
 With Worksheets("Sheet1")
  r = .Cells(Rows.Count, "C").End(xlUp).Row + 1
    .Cells(r, "C") = Now
    End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,755
Messages
6,126,683
Members
449,328
Latest member
easperhe29

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