Use group by Service_Name, Price, and Ident while summing the Qty and Value.
SELECT Service_Name, Price, SUM(Qty) AS T_Qty, SUM(Value) AS T_Value, Ident FROM NewOne GROUP BY Service_Name, Price, Ident ORDER BY Service_Name;