There are records in that displayed group of records with nulls in different columns, such as Qty and Total. You are trying to Sum() on Qty and Total. If you exclude those records with Null in those fields (and any other fields with Null in one or more records), what happens?
Do you know the technical importance of Nullin a relational database application? It is not the same as saying "blank".
BTW: It looks like your data might be coming from an import file downloaded from a website selling items? If so, that might account for the non-normalized table design. On the other hand, specifying that in the original question would be helpful as a background to what you are trying to accomplish.