I have worked with Excel for years, but I’ve never done much with Excel around Lookup functions or INDEX/MATCH and charting (if that is even the right approach). Either formula or VBA approaches are worth considering
There is a sheet that lists multiple jobs. There are dates and hours scheduled for the tasks of printing and bindery (Simplified example):
<tbody>
</tbody>
I believe that I need to read this data into another table that would (I would use the word ‘collate’ the data ) (note that there was no data for the Print hours for June 5th) look like this:
<tbody>
</tbody>
Out of this data, I would create a chart that would show each date, with two bars, one for the print hours and one for the bindery hours.
This would need to be dynamic. As new jobs were added with their dates, the hours would be recalculated and the chart redrawn.
I think if I can get the data into the 2nd table format, I can make the chart, but I’m concerned about how to make it dynamic.
Any input is appreciated.
There is a sheet that lists multiple jobs. There are dates and hours scheduled for the tasks of printing and bindery (Simplified example):
Jobs | Digital Print Date | Print Hours | Bindery Date | Bindery Hours |
1 | 6/3/2015 | 4.00 | 6/4/2015 | 3.00 |
2 | 6/4/2015 | 3.00 | 6/5/2015 | 4.00 |
3 | 6/3/2015 | 5.00 | 6/4/2015 | 5.00 |
4 | 6/4/2015 | 2.00 | 6/4/2015 | 6.00 |
5 | 6/6/2015 | 4.00 | 6/6/2015 | 2.00 |
6 | 6/6/2015 | 2.00 | 6/7/2015 | 4.00 |
<tbody>
</tbody>
I believe that I need to read this data into another table that would (I would use the word ‘collate’ the data ) (note that there was no data for the Print hours for June 5th) look like this:
Date | Digital Print Hours | Bindery Hours |
6/3/2015 | 8.00 | 0.00 |
6/4/2015 | 5.00 | 14.00 |
6/5/2015 | 0.00 | 4.00 |
6/6/2015 | 6.0 | 2.00 |
6/7/2015 | 0.00 | 4.00 |
<tbody>
</tbody>
Out of this data, I would create a chart that would show each date, with two bars, one for the print hours and one for the bindery hours.
This would need to be dynamic. As new jobs were added with their dates, the hours would be recalculated and the chart redrawn.
I think if I can get the data into the 2nd table format, I can make the chart, but I’m concerned about how to make it dynamic.
Any input is appreciated.
Last edited: