It's not the cost column that's the problem, it's the date column.
On 'Jobs by Type you have this formula in E5, copied down to E100.
Formula:
=Job!Q2
In Q2 down on 'Job' you have this formula.
Formula:
=IF($O2="","",INDEX($A$1:$E$201,$O2,3))
If O2 on 'Job' is "" then this formula will return "", so the formulas in column E on 'Job by Type' will return "" if column O on 'Job' is empty.
If you change the formula on 'Job' to this the SUMPRODUCT will calculate correctly.
Formula:
=IF($O2="",0,INDEX($A$1:$E$201,$O2,3))
Or you could create dyanmic named ranges.
Bookmarks