Calculating average wait time across time intervals

rjng90

New Member
Joined
Nov 10, 2015
Messages
5
Hi I encountered a problem. I work in a clinic. Basically I have 2 columns of data. 1 column states the time of arrival of patients while the other states the respective waiting time the patients have to go through before they get to be examined by the doctor. I want to plot a Barchart/histogram that shows for every half hour interval from 8am to 5pm during which the patient arrives at the clinic, the average time they have to wait. So for example 5 patients arrive at the clinic at a time between 0800-0830, the y axis of the bar chart from 0800-0830 will show the average waiting time of these 5 patients. Can this be done please? Thank you!
 
Hi I encountered a problem. I work in a clinic. Basically I have 2 columns of data. 1 column states the time of arrival of patients while the other states the respective waiting time the patients have to go through before they get to be examined by the doctor. I want to plot a Barchart/histogram that shows for every half hour interval from 8am to 5pm during which the patient arrives at the clinic, the average time they have to wait. So for example 5 patients arrive at the clinic at a time between 0800-0830, the y axis of the bar chart from 0800-0830 will show the average waiting time of these 5 patients. Can this be done please? Thank you!

rjng90,
I developed this for my son in law a few years ago. He wanted to do something similar to what you are trying to do.
It involves a Table with Data Validation, a Macro to extend that validation, a Pivot Table to filter the data, and a Chart to show the results.
First create a table similar to this:


Excel 2007
ABCDEFGHIJ
1Patient #Ar TimeTr TimeWait Time (TT-AT)Dr TimeWait Time (DT-AT)DoctorDayDateMinutes
2310007:34 AM7:40 AM67:55 AM0:2121
3320008:00 PM8:10 PM108:23 PM0:237/3/201323
Sheet1


Then enter the following in row 2 as indicated:

B2, C2, and E2 have Data Validation to insure correct time format is maintained 'hh:mm{space}AM'
Use these parameters: Allow: 'Time', Data: 'between', Start time: '12:00:000 AM', End Time: '11:59:00 PM'
Code:
D2=IF(OR(B2="",C2=""),"Missing Data",HOUR(C2-B2+IF(B2>C2,1))*60+MINUTE(C2-B2+IF(B2>C2,1)))

J2=IF(OR(B2="",E2=""),"Missing Data",HOUR(E2-B2+IF(B2>E2,1))*60+MINUTE(E2-B2+IF(B2>E2,1)))
Now you just copy down the Data Validation and formulae by copying the formatted cells before new data is entered. That can be automated.
I used the code below entitled 'ExtendDataValid' with an ActiveX command button.
It could very easily be something triggered when a new patient is entered in column A (Change_Event).

After data has been entered, you can create a pivot table that can be filtered on the 'Doctor', 'Patient #', 'Date', or 'Day' of the week.

Then using the pivot chart filtered data, chart the data similar to the following:
Perpa

url]



Code:
Sub ExtendDataValid()
'
' Extend the Data Validation for another LRPlus rows
    LRwBot = Range("B65536").End(xlUp).Row
    LRPlus = LRwBot + 20                     'Number of rows to add
    
    'Arrival Time (AT)
    Range(Cells(LRwBot, 2), Cells(LRPlus, 2)).Select
    With Selection.Validation
        .Delete
        .Add Type:=xlValidateTime, AlertStyle:=xlValidAlertStop, Operator:= _
        xlBetween, Formula1:="12:00:00 AM", Formula2:="11:59:00 PM"
        .IgnoreBlank = True
        .InCellDropdown = True
        .InputTitle = ""
        .ErrorTitle = ""
        .InputMessage = "hh:mm{sp}AM"
        .ErrorMessage = ""
        .ShowInput = True
        .ShowError = True
    End With
    
    Range(Cells(LRwBot, 3), Cells(LRPlus, 3)).Select
    'Travel Time (TT)
    With Selection.Validation
        .Delete
        .Add Type:=xlValidateTime, AlertStyle:=xlValidAlertStop, Operator:= _
        xlBetween, Formula1:="12:00:00 AM", Formula2:="11:59:00 PM"
        .IgnoreBlank = True
        .InCellDropdown = True
        .InputTitle = ""
        .ErrorTitle = ""
        .InputMessage = "hh:mm{sp}PM"
        .ErrorMessage = ""
        .ShowInput = True
        .ShowError = True
    End With

    Range(Cells(LRwBot, 5), Cells(LRPlus, 5)).Select
    'Doctor Time (DT)
    With Selection.Validation
        .Delete
        .Add Type:=xlValidateTime, AlertStyle:=xlValidAlertStop, Operator:= _
        xlBetween, Formula1:="12:00:00 AM", Formula2:="11:59:00 PM"
        .IgnoreBlank = True
        .InCellDropdown = True
        .InputTitle = ""
        .ErrorTitle = ""
        .InputMessage = "hh:mm{sp}PM"
        .ErrorMessage = ""
        .ShowInput = True
        .ShowError = True
    End With

    Range(Cells(LRwBot, 7), Cells(LRPlus, 7)).Select
    'List of Doctors******
    With Selection.Validation
        .Delete
        .Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:= _
        xlBetween, Formula1:="=OFFSET($V$2,0,0,COUNTA(V:V)-1)"
        .IgnoreBlank = True
        .InCellDropdown = True
        .InputTitle = ""
        .ErrorTitle = ""
        .InputMessage = "Select Doctor"
        .ErrorMessage = ""
        .ShowInput = True
        .ShowError = True
    End With
    
    Range(Cells(LRwBot, 8), Cells(LRPlus, 8)).Select
    'Days of the Week******
    With Selection.Validation
        .Delete
        .Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:= _
        xlBetween, Formula1:="=$W$2:$W$9"
        .IgnoreBlank = True
        .InCellDropdown = True
        .InputTitle = ""
        .ErrorTitle = ""
        .InputMessage = "Select DAY"
        .ErrorMessage = ""
        .ShowInput = True
        .ShowError = True
    End With

    Range(Cells(LRwBot, 9), Cells(LRPlus, 9)).Select
    'Date***********
    With Selection.Validation
        .Delete
        .Add Type:=xlValidateDate, AlertStyle:=xlValidAlertStop, Operator:= _
        xlGreater, Formula1:="=TODAY()-30"     'Allows up to 30 days prior to current date
        'xlGreater, Formula1:="=TODAY()-1"     'Only allows 1 day before current date
        .IgnoreBlank = True
        .InCellDropdown = True
        .InputTitle = ""
        .ErrorTitle = ""
        .InputMessage = "Enter Date"
        .ErrorMessage = ""
        .ShowInput = True
        .ShowError = True
    End With
End Sub
 
Upvote 0

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