I have a table with multiple countries and sales numbers for two sales reps. Because of previous steps, this is the situation: There may be two rows for every country, where one row has numbers for John, and the other has numbers for Jane. Like this:
I have a working method that where basically I would split this table into two tables by filtering (one table with the countries/John’s sales for that country and another with that, but for Jane.
Then I can combine on the country field and get the desired output. But I think there must be a more efficient way to do this.