Hi, I'm trying to simply sum a series of values in each column that match to a repeating series of rows and can't seem to figure out the best way to do this.
Project1, Env1, Env2, Env3, Env4
ServerA, 1, 1, 2, 2
ServerB, 2, 2, 4, 4
ServerC, 1, 1, 3, 3
Project2, Env1, Env2, Env3, Env4
ServerA, 2, 4, 4, 4
ServerB, 1, 2, 3, 3
ServerC, 3, 3, 3, 3
...and so forth
I'm trying to get a total for all projects so that:
All Projects, Env1, Env2, Env3, Env4
ServerA, 3, 5, 6, 6
ServerB, 3, 4, 7, 7
ServerC, 4, 4, 6, 6
Can someone help?
Thank You!
Bookmarks