Hi,
I think it has something to do with use the Table format references such as [Reserve(T3)], [SITE] and [MAN].
Change them to column references.
=IF(F9<(INDEX(Thresholds!$D:$D,MATCH(A9&H9,Thresholds!$A:$A&Thresholds!$E:$E,0))*0.5),TRUE,FALSE)
However, referencing the entire column will really slow things down.
You can adjust them to area specific. Such as:
=IF(F9<(INDEX(Thresholds!$D$2:$D$16,MATCH(A9&H9,Thresholds!$E$2:$E$16,0))*0.5),TRUE,FALSE)
Though this can slow things down if you have a lot of them. Try a SUMIFS instead.
=IF(F8<(SUMIFS(Thresholds!$D:$D,Thresholds!$A:$A,A8,Thresholds!$E:$E,H8)),TRUE,FALSE)
Hope this is helpful.
Cheers
Bookmarks