Hey All,
I am trying to sum together values in a column based on a string value in column A.
I have something similar to the table below and wish group together the strings in column A and sum the values in column B to give me a combined table.
Input:
Result (trying to build)
I am trying to sum together values in a column based on a string value in column A.
I have something similar to the table below and wish group together the strings in column A and sum the values in column B to give me a combined table.
Input:
Column A | Column B |
TestA | 5 |
TestA | 1 |
TestA | 3 |
TestB | 1 |
TestB | 2 |
TestC | 5 |
Result (trying to build)
Column A | Column B |
TestA | 9 |
TestB | 3 |
TestC | 5 |