
Originally Posted by
Sinnie
...
The excel list works perfectly, thanks.
As does the auto month fill in, however the cells all list #NAME? and I have found multiple potential reasons for this and can't make heads or tails of it.
....
All i need to do is change it to count the number of entries instead of summing then it should be ready to go.
....
Using an Excel List will slow the calculation, but if you want to insert rows mid table without manually updating the formulae, then this is the way to go. It might be faster to use VBa to do this but let's not go that way yet.
To Sum the severity of the weekly incidents use this in C2
Formula:
=SUMPRODUCT((InFill_Dates>=$A2)*(InFill_Dates<=$A2+6)*(INDEX(Data_Table,,MATCH(C$1,Catagories,0))))
To Count the weekly incidents use this
Formula:
=SUMPRODUCT((InFill_Dates>=$A2)*(InFill_Dates<=$A2+6)*ISNUMBER((INDEX(Data_Table,,MATCH(C$1,Catagories,0)))))
Where are you getting #NAME? errors, I can't see any in this workbook.
Bookmarks