Need Macro to enter current time and round to nearest quarter hour

tbstein

New Member
Joined
Mar 26, 2014
Messages
10
I created an excel attendance sheet and would like to double click on a cell in a range and have the current time entered and rounded to the nearest quarter hour. I need to be able to record clients arrival time at the day program that I work at.
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
hi,

Try this. You'll need to paste it in the worksheet's code page, not into a module. If you need to round up or round down you can replace mround by the functions CEILING or FLOOR.

Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)


Cancel = True
Target.Value = Application.WorksheetFunction.MRound(Now, 1 / (24 * 4)) - Int(Now)


End Sub
 
Upvote 0
tbstein,

My alternate offering is...

Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Target = Round((Time - Int(Time)) * 96, 0) / 96
End Sub

Recipient cells formatted for time.
 
Upvote 0
Thank you, Thank you, Snakehips. This works perfectly! I have been trying to figure this out for hours and you have solved it in minutes. Thanks, again!
 
Upvote 0

Forum statistics

Threads
1,214,823
Messages
6,121,777
Members
449,049
Latest member
greyangel23

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