Item 1:
Assuming the data in the manager's sheets does not get cleared out, then this macro will add and maintain the status of each row (imported or not) in column BD. It will import each sheet sequentially to the Cumulative database.
Option Explicit
Sub AccumulateData()
'JBeaucaire (9/17/2009)
'Collects new data from various workbooks and adds to database
Dim NR As Long, LR As Long, fName As String
Dim wb As Workbook, wbData As Workbook
Application.ScreenUpdating = False
ChDir "S:\Supervisors\QAData"
Set wb = ThisWorkbook
wb.Activate
Sheets("Cumulative").Activate
NR = Range("A" & Rows.Count).End(xlUp).Row + 1
fName = Dir("QAForm*.xls")
Do While Len(fName) > 0
Set wbData = Workbooks.Open(fName)
Sheets("Sheet1").Activate
Range("BD1") = "Status"
Range("A1:BD1").AutoFilter
Range("A1:BD1").AutoFilter Field:=56, Criteria1:="="
LR = Range("A" & Rows.Count).End(xlUp).Row
If LR > 1 Then
Range("A2:BC" & LR).Copy wb.Sheets("Cumulative").Range("A" & NR)
Range("BD2:BD" & LR) = "Imported"
ActiveSheet.AutoFilterMode = False
wbData.Close True
Else
wbData.Close False
End If
NR = Range("A" & Rows.Count).End(xlUp).Row + 1
fName = Dir
Loop
Application.ScreenUpdating = True
Cells.Columns.AutoFit
End Sub
ITEMS 2-4:
List the supervisors in column A. Then insert and copy down the following formulas:
In B2:
=SUMPRODUCT(--(Cumulative!$B$2:$B$20000=$A2),--(INT(Cumulative!$C$2:$C$20000)=TODAY()-1))
In C2: (assuming Monday is the first day of the week)
=SUMPRODUCT(--(Cumulative!$B$2:$B$20000=$A2),--(Cumulative!$C$2:$C$20000>=TODAY()-MOD(TODAY()-2,7)))
In D2:
=SUMPRODUCT(--(Cumulative!$B$2:$B$20000=$A2),--(YEAR(Cumulative!$C$2:$C$20000)=YEAR(TODAY())))
Bookmarks