I have multiple lines of data all sharing the same Company id.
Is there a way to \'sum\' all the amounts to give me one line of data per company id using SQL Server
Try this;
SELECT Company_Name, Company_ID, SUM(Amount) AS Amount FROM Companies GROUP BY Company_Name, Company_ID;
Demo here.