I have some data that looks like:
I want to create a running total by group and by date. So the data would look like this:
I would normally just write this as a sub query in SQL, but the level of access I have for this client does not permit this.
How can I write a formula that does this?
Code:
Date GroupA GroupB Units
10/8/2009 ABC AAA 100
10/8/2009 DEF BBB 150
10/8/2009 GHI CCC 90
10/9/2009 ABC AAA 105
10/9/2009 DEF BBB 155
10/9/2009 GHI CCC 95
I want to create a running total by group and by date. So the data would look like this:
Code:
Date GroupA GroupB Units R SUM
10/8/2009 ABC AAA 100 100
10/8/2009 DEF BBB 150 150
10/8/2009 GHI CCC 90 90
10/9/2009 ABC AAA 105 205
10/9/2009 DEF BBB 155 305
10/9/2009 GHI CCC 95 185
I would normally just write this as a sub query in SQL, but the level of access I have for this client does not permit this.
How can I write a formula that does this?