so your table of jobs is Sheet1 and the output will go to sheet2
copy this into a standard code module
Option Explicit
Sub GetReport()
Dim rowindex As Long
Dim worker As String
Dim rw As Long
'clear target & add headers
With Worksheets("Sheet2")
.Cells.Clear
.Range("A1") = Range("A1")
.Range("B1") = Range("C1")
End With
rowindex = 1
'check jobs
For rw = 2 To Range("B1").End(xlDown).Row
If Cells(rw, 1) <> "" Then
worker = Cells(rw, 1)
End If
'check status
If Cells(rw, "E") <> "Completed" Then
rowindex = rowindex + 1
With Worksheets("Sheet2")
.Cells(rowindex, 1) = worker
.Cells(rowindex, 2) = Cells(rw, 3)
End With
End If
Next
Summarize
End Sub
Sub Summarize()
With Worksheets("sheet2")
.Range("E1") = .Range("A1")
.Range("A1").CurrentRegion.AdvancedFilter _
Action:=xlFilterCopy, _
CopyToRange:=.Range("E1"), _
Unique:=True
If .Range("e3") <> "" Then
.Range(.Range("E2"), .Range("E2").End(xlDown)).Offset(,
1).FormulaR1C1 = "=COUNTIF(C1,RC[-1])"
Else
.Range("F2").FormulaR1C1 = "=COUNTIF(C1,RC[-1])"
End If
End With
End Sub
it checks the Status column, if the word Completed isn't there, then the
workers name and job time gets copied to the report ( this is sheet2)
when all the names are read, the summary is added.
To add a code module, go to the development environment, ALT+F11, then from
the menu choose INSERT then MODULE
this should be enough to get you going. Let me know what else we can help
with
"OscarE" <(E-Mail Removed)> wrote in message
news

58D5F64-EF7B-4565-AF16-(E-Mail Removed)...
> Hi
> I am makeing a worksheet for the dispatchers ast works.
> This is what I did so far.
> TECH NAME JOB# TIME HHHC STATUS
> LUIS G 1R 8 - 11am fail Completed
> 3R 11 - 2pm
> 5R 2 - 5PM
> Tech name, time, HHHC and status have a drop down list. their reference is
> in cell AA.
>
> So what I need the dispatch to manualy type is the Job#, anything else is
> a
> drop down list or combo.
> I need to have in sheet2 a report of all the jobs that still not completed
> according to their time scheduled.. For example:
>
> TECH NAME TIMEFRAME QTY TOTAL JOBS OPEN
> LUIS G 11 - 2PM 1 2
> 2 - 5PM 1
>
>
> My boss wants to know how many jobs still not completed by timeframe and
> the
> technician responsible for that open job. It will be a report that I have
> to
> email several times a day.
>
> I need your help ASAP if possible.
> Thank you
>
>