Sum by weekday
To sum values by day of week, you can use the SUMPRODUCT function together with the TEXT function. In the example shown, the formula in F5 is: =SUMPRODUCT((TEXT(data[Date],"ddd")=E5)*(data[Amount])) where data is an Excel Table in the range B5:C16. …Read more