Perfect. The use of the Value() function is what got it working. I
think that both of the first ones would have worked but I chose the
value for my specific purposes. What i'm tyring to do is do a two
condition sum. The filed to sum is the time one that is in text so the
use of the value function worked perfectly.For anyone else you might
find this post, here is how you can use TWO condictions to sum a list
of times that are in text format:
=SUMPRODUCT(--(B1:B20="Condition One"),--(C1

20="Condition
Two"),VALUE(E1:E20))
Where column E contains data that is in text form, but can be in value
form. (ie 11:59:37 entered in text to represent time is noted by excel
as the value 0.499733796 whic means 0.499733796 of a day. A day in
excel is equal to 1, therefore any time value that is less then a day
is a decimal of 1 (ie 0.499733796))
Hope that makes sence. Thanks everyone for the help and for guiding me
to the correct statement.
Cheers!