Date & Time Woes.

Leeinsa

Board Regular
Joined
Jul 24, 2009
Messages
96
Gents,
Hopefully someone can give me some guidance on the best way to implement the following issue. I have a spreadsheet detailing phone calls being made from our offices. The spreadsheet has a column detailing the date and time the call was placed. The date and time is formatted as follows:-

2011/01/14 09:09:00 AM
2011/01/13 07:43:00 PM

I need to use a VBA macro to identify if the call was placed during peak hours. My peak hours are 07:00 am to 19:00 pm Mon to Fri.

Can anyone help or guide me in the right direction?
Many thanks in advance,
Lee.
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
You don't need a macro, assuming that your date/time is in column A, this formula should do it.
=IF(AND(7 < HOUR(A1), HOUR(A1) < 19), "peak time", "off peak")
 
Upvote 0
Hey VoG and Mike,

Many thanks for the quick reply. I have just discovered a way of doing it in vba by setting variables as shown below and then comparing them. But maybe one of your method would be neater. I'll give them a whirl.

dayofcall = Format(Worksheets("DataInput2").Range("H" & a), "dddd")
timeofcall = Format(Worksheets("DataInput2").Range("H" & a), "hh:mm:ss")

Thanks again,

Lee.
 
Upvote 0
To return the time as a number and not text this would be better

Code:
timeofcall = Worksheets("DataInput2").Range("H" & a) Mod 1
 
Upvote 0

Forum statistics

Threads
1,214,945
Messages
6,122,395
Members
449,081
Latest member
JAMES KECULAH

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