the test could not help me but I found a workaround.
This works also fine for me:
Code:
=SUMIFS($C:$C,$A:$A,J$2,$B:$B,$I3)
Thanks anyway for looking into my request, i am very happy that there are people that take time to help one and other 

Originally Posted by
Bob Phillips
When you have just one entry in the absence table, the IF tests within the SMALL function doesn't return an array, just a scalar value, so the function doesn't work correctly.
One way to handle it is to test specifically
=IFERROR(IF(COUNT(hours)=1,IF(AND($A2=J$2,$B2=$I3),$C2,""),INDEX(hours,SMALL(IF((date=J$2)*(project=$I3),ROW(hours)-1),1))),"")
Bookmarks