I am taking taking data from 2 tables with query. I have the following table
Now against each group of task codes I want to create a graph in such a way that it it would show a line graph against each group of task codes in a single row with the data for each group of task codes. i.e. I want to insert table with in a cell of table and Chart control in the next cell in the same row.
Time_Line | Actual | Targeted | Task_Code |
11/24/2009 | 0 | 0 | AYRM-01-D |
12/7/2009 | 0 | 0 | AYRM-01-D |
12/12/2009 | 70 | 25 | AYRM-01-D |
12/17/2009 | 75 | 50 | AYRM-01-D |
12/23/2009 | 99 | 75 | AYRM-01-D |
12/31/2009 | 100 | 100 | AYRM-01-D |
11/24/2009 | 0 | 0 | AYRM-01-E |
12/7/2009 | 0 | 0 | AYRM-01-E |
12/12/2009 | 18 | 25 | AYRM-01-E |
12/17/2009 | 25 | 50 | AYRM-01-E |
12/23/2009 | 30 | 75 | AYRM-01-E |
12/31/2009 | 70 | 100 | AYRM-01-E |
11/24/2009 | 0 | 0 | AYRM-01-F |
12/7/2009 | 0 | 0 | AYRM-01-F |
12/12/2009 | 60 | 25 | AYRM-01-F |
12/17/2009 | 65 | 50 | AYRM-01-F |
12/23/2009 | 68 | 75 | AYRM-01-F |
12/31/2009 | 80 | 100 | AYRM-01-F |
11/24/2009 | 0 | 0 | AYBB-01-A |
12/7/2009 | 0 | 0 | AYBB-01-A |
12/12/2009 | 80 | 25 | AYBB-01-A |
12/17/2009 | 95 | 50 | AYBB-01-A |
12/23/2009 | 99 | 75 | AYBB-01-A |
12/31/2009 | 100 | 100 | AYBB-01-A |
Now against each group of task codes I want to create a graph in such a way that it it would show a line graph against each group of task codes in a single row with the data for each group of task codes. i.e. I want to insert table with in a cell of table and Chart control in the next cell in the same row.