It appears that the Balance column is not numeric but char(16). You need to do one of the following:
a) change the Balance column to a money or float datatype
b) Select Cast(Debts.Balance as float) * (-1) from debts
[font="Arial"]Clifton G. Collins III[/font]