I think the only way is to iterate through each row and sum the column's value. Put this function in a module and call it from any form, passing in the combobox control and column number that you want to sum.
For Example,
columnTotal = sumListboxColumn(me.listboxName, 1)
Public Function sumListboxColumn(lstbox As Control, columnNumber As Integer) As Integer
On Error GoTo Err_sumListboxColumn
Dim counter As Integer
Dim total As Integer
total = 0
For counter = 0 To lstbox.ListCount - 1
total = total + lstbox.Column(columnNumber, counter)
Next counter
Exit_sumListboxColumn:
sumListboxColumn = total
Exit Function
Err_sumListboxColumn:
MsgBox Err.Description
Resume Exit_sumListboxColumn
End Function