Hi Oren ,
Suppose you wanted a sumproduct where there were really non-contiguous ranges involved , as in :
A1 * B7 + A7 * B9 + A13 * B12 + A17 * B15
you could use the following :
=SUMPRODUCT(N(OFFSET(A1,{0;6;12;16},))*N(OFFSET(B1,{6;8;11;14},)))
Narayan