I have two rows that look like
CustomerID, CustomerName, ValA, ValB, ValC, Vald
1899, CustomerBlue, 2, 5, 8, 9
1899B, CustomerBlue, 3, 6, 7, 8
I want to combine the rows to become;
1899, CustomerBlue, 5, 11, 15, 17
I started with this;
df.groupby(['CustomerName'], as_index=False).agg('sum')
But obviously that won't work because two columns are strings. Is there a way to replace the first two cells with what I want, and sum the rest?