I have a table (columns B to e) that is linked to a source excel file. The following code filters the data in Column C, to only display the relevant entries.
All goo.
Now I want to modify this script to summarize the Values that have been filtered, by the Name in column B.
VBA Code:
Private Sub Workbook_Open()
With Sheets("Invoice log")
.AutoFilterMode = False
.Range("C3", .Range("C" & Rows.Count).End(xlUp)).AutoFilter Field:=1, Criteria1:=Sheets("Cashflow input").Range("E3").Value
End With
End Sub
All goo.
Now I want to modify this script to summarize the Values that have been filtered, by the Name in column B.
Last edited by a moderator: