Not sure why I had SUM but here is the revised formula; it either sum the matched amount (column S) or if no match, then zero (However, if zero then I'm trying to get 0.000001 ...not sure this is possible)
SUMIFS([Data.xlsm]SAP!$S:$S,[Data.xlsm]SAP!$F:$F,{"9001500"},[Data.xlsm]SAP!$H:$H,{"GEN098"})
=MAX(
0.000001,
SUMIFS([Data.xlsm]SAP!$S:$S,[Data.xlsm]SAP!$F:$F,9001500,[Data.xlsm]SAP!$H:$H,"GEN098"))
wow, this is perfect when I copy/paste/specialValues I get the 0.00001 That's exactly what I need.
Not sure what the Max do but it works perfectly.
Thank you very much.
Amazing, Thanks a lot
I enjoyed both your detailed and simplified method of explaining this.