Identify Occurrences Based On Date And Time

Feb 21, 2014

How to identify the criteria (break or lunch) that he took first based on the time stamps. Here's the sample scenario: I would like to know which one is the 1st break or 2nd break they took based on the Date & Time criteria. See attached file for the sample data.

Sample results:

Agent 001 : 1st Break = 2/21/2014 10:13:00 AM
Agent 001 : 2nd Break = 2/21/2014 7:13:00 PM

View 2 Replies


ADVERTISEMENT

Formula To Identify Week Number Based On Date Ranges And Add Values

Feb 18, 2014

I have the following data:

Column A = Date
Column B = Reservations made per day

For ex:

A B
1 3/1/2011 5
2 4/5/2011 10
3 3/8/2011 15

Then I have a look up table where based on the date ranges it assigns a week number.

WeekDATE Range 1Date Range 2
718-Feb-1124-Feb-11
825-Feb-1103-Mar-11
904-Mar-1110-Mar-11
1011-Mar-1117-Mar-11
1118-Mar-1124-Mar-11
1225-Mar-1131-Mar-11
1301-Apr-1107-Apr-11
1408-Apr-1114-Apr-11
1515-Apr-1121-Apr-11
1622-Apr-1128-Apr-11

I am looking for a fomula that would assign a week to the corresponding dates on column A and tha would then add all of the reservations booked for each week.

View 11 Replies View Related

Lookup Sunset Time Based Onrecord Date - Incorrect Time Calculated

Mar 22, 2012

Consider this code:

'light eligibility
Dim facb As String
Dim sunset As Variant
[color=green]' check if facility has lights[color]
facb = WorksheetFunction.VLookup(RID, ds, 10, False) 'find facility code
If WorksheetFunction.VLookup(facb, fac, 6, False) = "Y" Then 'facility has lights
sunset = WorksheetFunction.VLookup(tempws.Range("A9"), sun, 2, False) 'lookup the sunset time based on the record's date

[Code] ......

This code checks the need for lights at a facility.

It first checks to see if the facility even has lights by cross-referencing a value in the record with a facilities database.

If it has lights, it then checks to see if they are needed. If the rental goes past the sunset time, then it needs lights. Sunset is determined by cross-referencing the date value in sheet1! A9, with the sunset database.

If it needs lights, variable lghtson is calculated equal to "sunset"-30 minutes.

As I step through this code:

WorksheetFunction.VLookup(facb, fac, 6, False) = "Y" Facility has lights.
Check to see if lights are needed.
sunset = WorksheetFunction.VLookup(tempws.Range("A9"), sun, 2, False)
sunset=0.879166666666667 which is 9:06PM. This is a proper value from the lookup.
If rental_end.value > sunset Then
rental_end (value from textbox) = "9:30 pm" , sunset=0.879166666666667. This is true, and Excel accepts it as true ...
lghtson = sunset - 0.5
0.379166666666667 = 0.879166666666667 - 0.5 (9:06 AM)

This is not the value I was looking for. I was looking for 8:34PM (0.856944444444444)

View 2 Replies View Related

Delete Date & Time Cells Based On Time

Dec 6, 2006

I have a large dataset where the first column is date and time i.e. "20/01/2005 03:41:06" and I want to delete certain rows based on the times. I have already tried playing about with macro's but failed fairly spectacularly so far. I have code from someone else to delete cells if the value equals a certain time but this doesn't work as the cell contains the date too.

I have already recorded one macro to reformat the data to as the software return 10 timestamped samples per hour and I want 8 i.e. every three hours so there is constant separation for statistical purposes. Both the macros are shown below so you can see what I have.

Ideally I would like to replace the line - If (r.Cells(n, 1) = TimeValue("22:41:06")) ............ - with one that reads - If (r.Cells(n, 1) CONTAINS TimeValue........ - but I don't know if that is possible? If not is there a way to separate the time from the date into 2 columns and then I can delete rows based on the time column using the code below? .......

View 9 Replies View Related

Need To Chart Occurrences Over Time

Jan 16, 2014

I need to use excel on a daily basis at my new job and want to become more efficient.

7-Juntf
7-Junnon
8-Juntf
8-Junnon
8-Juntf
9-Junnon
9-Junnon
9-Junnon
9-Juntf
10-Junnon
11-Juntf
12-Junnon

This is a very simplified version of what I need to graph but has the variables I need. The spreadsheet is set up just like this, just extrapolated over the last year. There are over 500 entries in the spreadsheet. What I need to do is to be able to calculate and chart the number of occurrences of TF and Non over time, by day, month, and year. If the data is ordered by date, how can I get excel to calculate text occurrences and graph them over the dates?

View 2 Replies View Related

Track Number Of Occurrences During Particular Time Range?

Jun 15, 2014

I have a data with phone number, date and time.I want to track how many number of calls came on a particular date and during a particular time. formula which would work in excel and track the same.

View 2 Replies View Related

Count Occurrences Of Time Stamp Between Two Times From DateTime Column

Jun 18, 2014

Been working on this issue for the last couple of days with no luck. I have a column of data that is a data and time stamp, for any date or time like below. This is an ever growing list as users continue to populate the data.

13/04/2014 20:00
28/04/2014 17:30
09/04/2014 13:30
09/04/2014 14:00
03/05/2014 7:30
03/04/2014 11:10

On a separate sheet I have a list of times by 15 minute increments starting at midnight until 11:59PM like below.

12:00:00 AM
12:15:00 AM
12:30:00 AM
12:45:00 AM

I'm trying to count how often a time stamp occurred between two 15 minute increments. ventually I'll be plotting this data on a graph to show where most occurrences happen.

View 1 Replies View Related

Count Occurrences Where Deliveries Were Early Or On Time As Compared To Scheduled

Aug 17, 2014

I have a set of data I need to count.

The data consists of 2 columns essentially, Scheduled Delivery Date and Actual Delivery Date.

If the Delivery was made on time or early, I want to count it. I will do a similar count for Late as well.

Additionally, the user can enter the Scheduled date range they want to count early/on time deliveries from. There all also blanks in the Actual Delivery date column where deliveries have not been made (no actual).

Cells O3:O38 contain the Actual dates
Cells N3:38 contain the Scheduled dates
Cell B3 contains the begin date to start the range.
Cell B4 contains the end date of the range.

I have tried using COUNTIFS and am having trouble getting the formula to work.

I tried:

=COUNTIFS(O3:O38,O3:38<=N3:38,N3:N38 ,>=$B$3,N3;N38<=$B$4)

I know this will not work but I hope it shows the logic I want.Count range O3:O38 where values in O3:O38 are less than or equal to the corresponding cell value in N3:N38, for a range of N3:N38 that is greater than or equal to the date in B3 and less than or equal to the date in B4.

View 14 Replies View Related

Adjusting Date Based On Time

Jan 28, 2010

I have the a file that is downloaded from AS400. The time column is presented in 24 hours format in column D. For example : 92114 means 9.21 am. I need a formula to adjust the date in column B based on the following criteria:

1) If the time is after 2.00 pm, adjust to the next working day taking into account public holidays in column H

2) If the time is before 2.00 pm, remain the same day

3) if the time is after 2.00 pm and it is Friday, adjust to the next working day taking into account public holidays in column H

The correctly adjusted date is in column E.

View 2 Replies View Related

Looking Up Multiple Occurrences Of Same Date

Apr 19, 2013

I have two spreadsheets consists of site ID's and scheduled dates. I need to produce a summary of all sites that are on the same day.

Sheet 1 (A2:B1155)

Sample

883408-Jul-13
211309-Jul-13
448110-Jul-13
010009-Jul-13
972524-Jul-13

Sheet 2 (A2:B1155)

Sample

032009-Jul-13
017222-Jul-13
535022-Jul-13
324024-Jul-13

Using the dates in sheet 2 can I return a list from sheet 1 of all sites that occur on that day

032009-Jul-13 2113 0100
017222-Jul-13
535022-Jul-13
324024-Jul-13 9725

View 5 Replies View Related

Identify Repeat Purchases Within Specific Time?

Jan 21, 2014

I am trying to identify repeat customers with a view to removing the purchase if the customer buys the same product within 5 days.

If the same customer buys a different product each day then I would like to count each purchase.

If the same customer buys the same product every day I would only like to count it once every 5 days.

I have tried using COUNTIFS for this. Formula in column D where A contains the Customer, B the Purchase Date and C the Product:

Formula:

View 5 Replies View Related

Date And Time Based On Shift In Cell

Jan 8, 2009

If I use =now() in a cell it will enter the current date and time. For shift workers, this does not work.

I'm tring to figure out a formula that will only change the date at 6:00am every day. This way a person working the night shift will not see a change in the date on his sheet at all, only the day worker.

View 5 Replies View Related

Converting A Date Based Upon A Time In Column A..

Jan 15, 2009

I some assistance with converting a date based upon a time in column A. I have a number of dates in column A as follows:

01/13/2009 11:50 AM
01/05/2009 09:14 AM
01/12/2009 05:30 PM
01/12/2009 02:30 PM
01/12/2009 01:45 PM

I need to convert these values to another date base upon the values in column A.
If the time < 2:00 pm then leave date as is, if time > than 2:00 pm then add one day. The expected results in column B would be as follows

01/13/2009
01/05/2009
01/13/2009
01/13/2009
01/12/2009

View 2 Replies View Related

Advanced Sorting Based On Time And Date?

Jul 29, 2013

I am trying to do an analysis on 4 spreadsheets, each with approximately 4500 cells.

Each vertical cell represents a patient visit to a hospital. There is a timestamp, then a bunch of other metrics that I will be comparing. I want to sort the 4500 visits by time and date. This is how the timestamp of their arrival shows up:

Jul 02 2012 10:25 AM

^A single cell contains both the date and time next to each other.

I want to first separate all visits by time of day. I want to make one group that checked in between 10a and 10p and another for 10p-10a. Then I want to sort both groups in chronological order by date (i.e. starting with 2011 and ending in May 2013).

For one, I'm thrown off because the time and date are next to each other in the same cell.

View 4 Replies View Related

Add X Days To Date Based On Time In Another Cell

Apr 23, 2008

I have a date in col A and a time in col B. I'm trying to use an if function so that if time in Col B is greater than 15:30, the date in col A is returned plus one day. If time in col B is less than 15:30, date in col A returned with no change.

View 4 Replies View Related

Count Occurrences In Date Range?

Jan 20, 2012

Col A contains a list of random dates going back 1 year in this format 12-Oct-11. These dates are the dates of events. The events are coded into 5 areas in col B with a,b,c,d & e representing each typy of event.

I would like to look at the last 3 months of data taken from Col A and count how many events occured in that time period.

View 1 Replies View Related

Counting Number Of Occurrences Of A Date

Jan 10, 2008

I am running Excel 2007 at work in compatibility mode. My company is in the process of switching to Excel 2007, but not everyone has it, so I save my files in Excel 97-2003 format, so they can be viewed by everyone.

Problem:
I am trying to count the number of occurrences of "dates" between a starting date and an ending date. (e.g., cells B16:B1000 contain dates when a test at work was performed. I want to count all tests that occurred between 12/30/2007 and 1/9/2007.) Please note that the dates cross the new year

More Info:
I have searched this board, found a similar post, and tried the different formulas listed but get a result of "0" (zero). If I try the same formulas at home using Excel 2000, they work. The formula types I've tried include regular and array styles I am led to believe that this is either an Excel 2007 bug (bug??? - Nah, not from Microsoft!), or one of the cute changes between the new and old versions that I keep running across. The last possibility is that I am doing something wrong, which a smart betting man wouldn't rule out either!

View 9 Replies View Related

Count Occurrences Within Date Range

Jul 17, 2007

I need to count the number of occurrences of a range of dates in one column. These are not unique dates, but dates between two date periods i.e. number of dates falling between 02/07/07 and 09/07/07. I have tried using the COUNTIFS function and inserting the column range (e.g. B7-B57) and then searching for dates <=02/07/07. However, what I need is to search for the number of times any date in a given period occurs i.e. number of 03/07/07s in a period from 02/07/07 to 09/07/07.

View 7 Replies View Related

Date/Time Formula: Pick Up A Date With Time Entry On A Worksheet And Place It Into A TextBox On A UserForm

Jun 17, 2006

I am attempting to pick up a date with time entry on a worksheet and place it into a TextBox on a UserForm. Format on the sheet is mm/dd/yyyy h:mm AM/PM. The UserForm is placing the value as mm/dd/yyyy 12:00 AM. here is the

Private Sub UserForm_Initialize()
If Not Range("dDate").Value = "" Then
TextBox2.Value = Range("dDate").Value
TextBox2.Text = Format(DateValue(TextBox2.Text), "mm/dd/yy h:mm AM/PM")
Else
TextBox2.Value = ""
TextBox2.SetFocus
End If
End Sub


"dDate" is the named range where the date is sitting. The format is also set on the TextBox2 exit event. Can anyone see why only the date portion is being transfered with the default 12:00 AM for no time component of the value?

View 3 Replies View Related

How To Populate Date Cell Based On The Sum Of Two Time Cells

May 12, 2014

I've attached an example workbook.

Trip Plan example.xlsx

I'm trying to work out how to have cells R11 - Rxx generate the correct date, based on the rest of the calculations.

Please note that the attached is a crude cut down version of the larger spreadsheet, for the purpose of highlighting my problem.

SO, if E7 is changed, subsequently the values in K11:Rxx will be respectively updated.

D12 and G12 are entered manually. (although I'll probably make these drop downs or date choosers at some point...)

Depending on the value in E7 and time in D12, the required break period is listed in K11: Kxx.

The time that these periods of rest are required to occur before is then calculated and listed in O11:Oxx.

I need R11:Rxx to calculated the appropriate date from these calculations, relative to the date in G12.

For example, the rest required in K11, is required on the same day, as such it need to populate with the value in G12.

However the rest required in K13:Kxx, is required by a time (O13:Oxx) on the following day - G12+1

In some case, this time variance could run over 2 or more days.

I figure it's got something to do with the value in D12 also including the date of 0/1/1900.

I'm happy to add hidden cells for formulas/results to work around it, as the end product will print as an A4 document, where many cells will be locked.
Would prefer not go with any VBA unless it's my only option as I haven't done any VBA stuff as yet.

NB (the value in P5 is static only in this example)

View 11 Replies View Related

Separate Hours Based On Time / Date / Holidays

Jan 9, 2013

I calculate total labor hours entered into a CRM system and use it for various reports, but it's incredibly inaccurate for the following reasons:

Any labor put in between 6pm EST and 8am EST from Mon-Fri is considered "on call"All labor from Friday 6:01pm - Monday 7:59am is considered "on call"Labor entered on a company recognized holiday is considered "on call"Not every employee takes call

So, what I'm trying to do is take the total labor and pull out only the hours entered outside of the criteria above. If it were simply based on time during the week, i'd be fine, but I have no clue how to do everything else.

In the end, my new labor hours would be split into "Business Hrs. Labor" and "On Call" labor.

View 1 Replies View Related

Formula To Count Occurrences In A Given Date Range

Jan 7, 2010

I am needing to count the number of calls in a call center between certain hours by date. Column A is the date, Column B is the time of the call. I am needing to know how many calls occurred on X date between the hours of y and z. I have tried various forms of the countif and sumproduct but can't seem to get any of them to work for me. Here is the graph I am trying to populate:


Date Hours
12a-4a 4a-8a 8a-12p 12p-4p 4p-8p 8p-12a
12-7-09
12-8-09
12-9-09
12-10-09
12-11-09

View 9 Replies View Related

Counting The Number Of Days Overdue Based On Date And Time?

Jun 17, 2014

I have the following:

A1 = Date item is due. (DD/MM/YY format)

A2 = Time the item was delivered (HH:MM:SS format)

B1 = Actual Date item was delivered.

B2 = Actual Time item was delivered.

I'd like C1 to count the number of days the item was late. - taking into account that 16:00:00 is the deadline on each date.

For example:

Due Date: 17/06/14 @ 16:00:00

Arrival Date: 17/06/14 @ 16:01:00

Days Late = 1

Due Date: 17/06/14 @ 16:00:00

Arrival Date: 18/06/14 @ 15:00:00

View 10 Replies View Related

Populate Cells Based On Date And Time Range Selection?

Mar 10, 2014

Is it possible to be able to select a range of dates, and a time interval, and then to automatically fill in cells in a column? to be more specific, I want to be able to select, say 1 Jan 2013 to 31 dec 2013 in one box, then specify a time interval, for example "hourly" and then a column is populated with each interval, i.e. 1 jan 2013 00:00, and then the next one is 1 jan 2013 01:00 etc. I have tired the normal automatic fill tool but it never seems to get it right. It works for the first few days then it all goes funny.

View 3 Replies View Related

Calculate Time Elapsed And Compute Day Of Week Based On Date

May 27, 2014

1. Calculate the time that has elapsed between 2 times in both hours:min (hhmm) and total mins (mm)

2. Compute the day of the week (mon-fri) a particular date fell on. I really only need to know if the date fell on a weekday or weekend.
table { }td { padding: 0px; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; border: medium none; white-space: nowrap; }.xl63 { font-size: 12pt; } 1= M-F

2=S-S

3. How to write an If statement that assign a value to time based off this chart:
table { }td { padding: 0px; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; border: medium none; white-space: nowrap; }.xl63 { font-size: 12pt; } 1= AM (7-1459)

2=PM (15-2259)

3= MN (23-659)

View 9 Replies View Related

Counting Number Of Days Overdue Based On Date And Time

Jun 17, 2014

I have the following:

A1 = Date item is due. (DD/MM/YY format)
A2 = Time the item was delivered (HH:MM:SS format)

B1 = Actual Date item was delivered.
B2 = Actual Time item was delivered.

I'd like C1 to count the number of days the item was late. - taking into account that 16:00:00 is the deadline on each date.

For example:

Due Date: 17/06/14 @ 16:00:00
Arrival Date: 17/06/14 @ 16:01:00
Days Late = 1

Due Date: 17/06/14 @ 16:00:00
Arrival Date: 18/06/14 @ 15:00:00
Days Late = 1

Due Date: 17/06/14 @ 16:00:00
Arrival Date: 18/06/14 @ 16:01:00
Days Late = 2

View 3 Replies View Related

Show Current Date Or Yersterdays Based On Time In Cell

Mar 19, 2009

I am trying to write a formula that will have the cell display todays date if it is after 2:00PM, and if it is before 2:00PM I need the cell to display Today()-1. I have tried several iterations and I'm stumped.

View 5 Replies View Related

Counting Number Of Date Occurrences In Range Of Cells

Aug 13, 2012

I have an excel sheet which is currently 1,100 lines long and expected to increase and has a number of dates in columns W-AO representing the dates in which someone has had an onsite assessment. I wish to report in column AQ if there has been any visit activity in the month, i.e August for this month’s report. Is there an Excel function which will allow for this? Im thinking something like having a drop down list to select the month at the top of the column and then the sheet returns a value of 1 for all lines where a there is a date equal to the month selected?

I guess it is also worth mentioning that the sheet is setup as a table.

View 8 Replies View Related

Display Number Of Occurrences For Each Unique Date In Column?

Mar 26, 2013

I have a column of dates (Column A) with intermittent blanks and I need to display the number of occurrences for each unique date.

This is what I am starting with: (Note= The number of rows varies by project so I need the whole Column A referenced)

Dates
02-24-2013
02-24-2013
12-15-2012

[Code].....

View 9 Replies View Related

VBA To Find Cell Value In Column And Count Occurrences In Same Row Within Date Range?

Feb 3, 2014

I would like to design a macro that can find a value within a cell in a colunm and copy a value in the row then count occurances of that value next time a match in the colunm is found on a different row, but also do this only if the date range in the row is within a specified range. So a multi-critieria search and copy operation.

To explain a little better here is a simplified example of my spread sheet that is in input for the macro.

A
B
C
D
E

1
PART NO.
date in
date out
comp1
comp2[code]......

Column A lists the coponents found on the same row as the seach critria, in this example "12-3".

Column B lists the number of occurances of the components. This search is limited to a date range input by the user.

So what I can see is the components replaced and the amount of times replaced on a specific item over a fixed time.

*It is difficult to describe this problem without showing the macro output, but this is just an example for the purpose of explanation.

I know a bit of VBA programming and initially I started with an input box that asks for the part number and limit dates.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved