Copy and paste this macro into the worksheet code module. Do the following: right click the tab name for your Dashboard sheet and click 'View Code'. Paste the macro into the empty code window that opens up. Close the code window to return to your sheet. This macro will be triggered automatically when you make a selection in cell A1 of the Dashboard sheet. So before you make a selection in A1, first select the start and end dates and then make the selection in A1.
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("A1")) Is Nothing Then Exit Sub
Application.ScreenUpdating = False
Dim LastRow As Long, srcWS As Worksheet, ws As Worksheet, desRng As Range, product As Range, fnd As Range
Dim sDate As String, eDate As String
sDate = Range("C1")
eDate = Range("E1")
LastRow = Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
Set desRng = Range("A3:A" & LastRow)
Select Case Target.Value
Case "TE"
Set srcWS = Sheets("Todd")
Case "LF"
Set srcWS = Sheets("Lexi")
Case "BS1"
Set srcWS = Sheets("Brooke")
End Select
With srcWS.Cells(1).CurrentRegion
.AutoFilter Field:=4, Criteria1:=">=" & CDate(sDate), Operator:=xlAnd, Criteria2:="<=" & CDate(eDate)
End With
For Each product In desRng
With srcWS.Cells(1).CurrentRegion
.AutoFilter 2, product
product.Offset(0, 1).Value = WorksheetFunction.Sum(srcWS.Range("E2", srcWS.Range("E" & srcWS.Rows.Count).End(xlUp)).SpecialCells(xlCellTypeVisible))
product.Offset(0, 2).Value = WorksheetFunction.Sum(srcWS.Range("F2", srcWS.Range("F" & srcWS.Rows.Count).End(xlUp)).SpecialCells(xlCellTypeVisible))
End With
Next product
srcWS.Cells(1).AutoFilter
Application.ScreenUpdating = True
End Sub
Bookmarks