Trying to figure out best way to sum large amount of data. I found this, but the code needs to be automated for large amount of data. I'm thinking could this be done with pivot tables?
The data is looking like this:
Type  | 1.1. 0:00  | 1.1. 1:00
x1    | 2          | 1
x1    | 1          | 2
x2    | 3          | 1
x2    | 1          | 1
x3    | 2          | 3
Result would look like this:
Type  | 1.1. 0:00  | 1.1. 1:00
x1    | 3          | 3
x2    | 4          | 2
x3    | 2          | 3
 
     
     
    