Hi David!
Not really! For counting problems there's no great problem with
substitution of the comma by the multiplication although there is
apparently a speed difference that is unlikely to be significant in
most applications.
For summing problems, you can hit difficulties. These arise if the
formula is used for summing a range that could contain boolean or text
entries.
=SUMPRODUCT(--(A103:A110="John"),--(B103:B110="Salary"),C103:C110)
Returns same as
=SUMPRODUCT((A103:A110="John")*(B103:B110="Salary"),C103:C110)
But:
=SUMPRODUCT((A103:A110="John")*(B103:B110="Salary")*C103:C110)
Returns #VALUE if the range C103:C110 contains text or Booleans.
--
Regards
Norman Harker MVP (Excel)
Sydney, Australia
(e-mail address removed)