Hi everyone,
thanks for looking.
i have the above raw data.......i'm trying to get to the output shown below using VBA. There is about 1600 rows of data in my raw data set and they need to be consolidated into the output table shown below.
there needs to be four of these output tables, one for each quarter.......ie. quarter one is jan. 1 to March 31, etc.
Your help is very much appreciated.
RAW Data:
Output:
thanks for looking.
i have the above raw data.......i'm trying to get to the output shown below using VBA. There is about 1600 rows of data in my raw data set and they need to be consolidated into the output table shown below.
there needs to be four of these output tables, one for each quarter.......ie. quarter one is jan. 1 to March 31, etc.
Your help is very much appreciated.
RAW Data:
Excel 2010 | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
A | N | O | P | Q | R | S | T | |||
1 | xxx | Max | Location | Title | Status | Start Date/Time | End Date/Time | xxx | ||
2 | ********* | 30 | A | Course #mpkek234 | CANCELLED | 12/3/2012 8:00 | 12/3/2012 12:00 | ********* | ||
3 | ********* | 20 | A | Course #mpkek234 | ENROLLED | 12/3/2012 8:00 | 12/3/2012 12:00 | ********* | ||
4 | ********* | 40 | B | Course #mpkek234 | ENROLLED | 12/5/2012 8:00 | 12/6/2012 12:00 | ********* | ||
5 | ********* | 40 | B | Course #mpkek234 | ENROLLED | 12/5/2012 8:00 | 12/6/2012 12:00 | ********* | ||
6 | ********* | 40 | B | Course #mpkek234 | CANCELLED | 12/5/2012 8:00 | 12/6/2012 12:00 | ********* | ||
7 | ********* | 40 | C | course 4k5jj3 | CANCELLED | 11/5/2012 8:00 | 11/9/2012 17:00 | ********* | ||
8 | ********* | 40 | C | course 4k5jj3 | CANCELLED | 11/5/2012 8:00 | 11/9/2012 17:00 | ********* | ||
9 | ********* | 40 | C | course 4k5jj3 | ENROLLED | 11/5/2012 8:00 | 11/9/2012 17:00 | ********* | ||
10 | ********* | 40 | C | course 4k5jj3 | WAITLIST | 11/5/2012 8:00 | 11/9/2012 17:00 | ********* | ||
11 | ********* | 25 | D | Course kk3kj | WAITLIST | 3/12/2013 9:00 | 3/14/2013 18:00 | ********* | ||
12 | ********* | 25 | D | Course kk3kj | WAITLIST | 3/12/2013 9:00 | 3/14/2013 18:00 | ********* | ||
13 | ********* | 21 | E | Course kk3kj | ENROLLED | 11/6/2012 9:00 | 11/8/2012 18:00 | ********* | ||
14 | ********* | 21 | E | Course kk3kj | ENROLLED | 11/6/2012 9:00 | 11/8/2012 18:00 | ********* | ||
15 | ********* | 21 | E | Course kk3kj | ENROLLED | 11/6/2012 9:00 | 11/8/2012 18:00 | ********* | ||
16 | ********* | 21 | E | Course kk3kj | CANCELLED | 11/6/2012 9:00 | 11/8/2012 18:00 | ********* | ||
report(3) |
Output:
Excel 2010 | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | J | K | L | |||
2 | Course Number | Loc | Start Date | End date | Max | Total Reg | Cancel | Waitlist | Currently Enrolled | No Show | Walk-in | Final Participants | ||
3 | Course #mpkek234 | A | 12/3/2012 | 12/3/2012 | 30 | 2 | 1 | 0 | 1 | 0 | 0 | 1 | ||
4 | Course #mpkek234 | B | 12/5/2012 | 12/6/2012 | 20 | 3 | 1 | 0 | 2 | 0 | 0 | 2 | ||
5 | course 4k5jj3 | C | 11/5/2012 | 11/9/2012 | 40 | 4 | 2 | 1 | 1 | 0 | 0 | 1 | ||
6 | Course kk3kj | D | 10/18/2012 | 10/19/2012 | 40 | 2 | 0 | 2 | 0 | 0 | 0 | 0 | ||
7 | Course kk3kj | E | 3/12/2013 | 3/14/2013 | 25 | 4 | 1 | 0 | 3 | 0 | 0 | 3 | ||
Q1 FY13 |