Is it possible to create an array formula based on a table where it searches for distinct combinations of data before summing? Here is some sample data:
| A | B | C | D |
---------------------------------------------------
1 | 1 Jun | Charlie | D | 1.3 |
2 | 1 Jun | Charlie | N | 1.4 |
3 | 1 Jun | Dave | D | 1.3 |
4 | 2 Jun | Charlie | N | 0.6 |
5 | 2 Jun | Dave | D | 1.5 |
What I'd like the array formula to be able to do is look at the table, ignore column B and tell me which distinct rows (A, C and D or more criteria) and sum column D if they are unique. In this example, it should not sum Row 3 because on 1 Jun, "D" already has a 1.3.
PivotTables and VBA are out as I am designing this for the lowest level user on super restrictive computers.
EDIT: Picture of expected results, changed sample data to reflect results.

Kind of the data I am looking for.... I replaced the ID with the LName to visualize. I need to exclude individuals and get only aircraft hours by their modes. You can see toward the bottom of the image, 2 people are on one aircraft. I used MAX to keep it from SUMming it up and skewing the hours.
The levels on the left are by Date, Aircraft, Flight Number, then Person. I need to aggregate the hours down to the Flight Number of each date.

The original formula is
=SUM((FLTD_HRS)*(FLTD_DATE>=$D$3)*(FLTD_DATE<=$D$4)*(IF(FLTD_ACFT_MDS=CONFIG!$F$8,1,0)))
however, as it is, does not get me unique flights. I'd prefer an array formula to a PivotTable.... XD
