If you're up to VBA, a very simple function could help with this:
VBA Code:
Function ConvertValue(r As Range) As Double
Dim c As Range
For Each c In r
ConvertValue = ConvertValue + Val(c)
Next
End Function
Then in your spreadsheet:
=ConvertValue(F8:F10)