Hi there,
I'm working on a project that involves a worksheet table containing a long list of dates and a range of extra data. I would like to use this table's data and convert it in an easier to read weekly schedule format.
Below is a quick sample layout and structure:
Date List Worksheet
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Date[/TD]
[TD]Start Time[/TD]
[TD]End Time[/TD]
[TD]Reference[/TD]
[/TR]
[TR]
[TD]01/08/2016[/TD]
[TD]10:00AM[/TD]
[TD]11:00AM[/TD]
[TD]Lesson 1[/TD]
[/TR]
[TR]
[TD]01/08/2016[/TD]
[TD]2:00PM[/TD]
[TD]4:00PM[/TD]
[TD]Meeting[/TD]
[/TR]
[TR]
[TD]02/08/2016[/TD]
[TD]2:00PM[/TD]
[TD]3:00PM[/TD]
[TD]Lesson 2[/TD]
[/TR]
[TR]
[TD]05/08/2016[/TD]
[TD]12:00PM[/TD]
[TD]2:00PM[/TD]
[TD]Lesson 3[/TD]
[/TR]
</tbody>[/TABLE]
Calendar Worksheet
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]MONDAY[/TD]
[TD]TUESDAY[/TD]
[TD]WEDNESDAY[/TD]
[TD]THURSDAY[/TD]
[TD]FRIDAY[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]01/08/2016[/TD]
[TD]02/08/2016[/TD]
[TD]03/08/2016[/TD]
[TD]04/08/2016[/TD]
[TD]05/08/2016[/TD]
[/TR]
[TR]
[TD]9AM[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]10AM[/TD]
[TD]Lesson 1[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]11AM[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]12PM[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]Lesson 3[/TD]
[/TR]
[TR]
[TD]1PM[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]Lesson 3[/TD]
[/TR]
[TR]
[TD]2PM[/TD]
[TD]Meeting[/TD]
[TD]Lesson 2[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]3PM[/TD]
[TD]Meeting[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]4PM[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
So far I've managed to create the Calendar worksheet in a way that allows meet to select the weekly date to display, following the guide here: Populate cells dynamically in a weekly schedule in excel | Get Digital Help - Microsoft Excel resource. However, I am having problems working out how to get Calendar worksheet to reference my Date List worksheet and the pull the content from the appropriate reference cell.
Also, once I've cracked that one. I need to be able to display more than one text string from the reference cell in each Calendar date cell (for example there might be Lesson 1, Lesson 2, and a Meeting all in the same time slot). As I understand it this may require some VBA (which is way beyond me), but if there's a way of achieving this with just functions please let me know.
Thanks in advance for your help!
J
I'm working on a project that involves a worksheet table containing a long list of dates and a range of extra data. I would like to use this table's data and convert it in an easier to read weekly schedule format.
Below is a quick sample layout and structure:
Date List Worksheet
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Date[/TD]
[TD]Start Time[/TD]
[TD]End Time[/TD]
[TD]Reference[/TD]
[/TR]
[TR]
[TD]01/08/2016[/TD]
[TD]10:00AM[/TD]
[TD]11:00AM[/TD]
[TD]Lesson 1[/TD]
[/TR]
[TR]
[TD]01/08/2016[/TD]
[TD]2:00PM[/TD]
[TD]4:00PM[/TD]
[TD]Meeting[/TD]
[/TR]
[TR]
[TD]02/08/2016[/TD]
[TD]2:00PM[/TD]
[TD]3:00PM[/TD]
[TD]Lesson 2[/TD]
[/TR]
[TR]
[TD]05/08/2016[/TD]
[TD]12:00PM[/TD]
[TD]2:00PM[/TD]
[TD]Lesson 3[/TD]
[/TR]
</tbody>[/TABLE]
Calendar Worksheet
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]MONDAY[/TD]
[TD]TUESDAY[/TD]
[TD]WEDNESDAY[/TD]
[TD]THURSDAY[/TD]
[TD]FRIDAY[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]01/08/2016[/TD]
[TD]02/08/2016[/TD]
[TD]03/08/2016[/TD]
[TD]04/08/2016[/TD]
[TD]05/08/2016[/TD]
[/TR]
[TR]
[TD]9AM[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]10AM[/TD]
[TD]Lesson 1[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]11AM[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]12PM[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]Lesson 3[/TD]
[/TR]
[TR]
[TD]1PM[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]Lesson 3[/TD]
[/TR]
[TR]
[TD]2PM[/TD]
[TD]Meeting[/TD]
[TD]Lesson 2[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]3PM[/TD]
[TD]Meeting[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]4PM[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
So far I've managed to create the Calendar worksheet in a way that allows meet to select the weekly date to display, following the guide here: Populate cells dynamically in a weekly schedule in excel | Get Digital Help - Microsoft Excel resource. However, I am having problems working out how to get Calendar worksheet to reference my Date List worksheet and the pull the content from the appropriate reference cell.
Also, once I've cracked that one. I need to be able to display more than one text string from the reference cell in each Calendar date cell (for example there might be Lesson 1, Lesson 2, and a Meeting all in the same time slot). As I understand it this may require some VBA (which is way beyond me), but if there's a way of achieving this with just functions please let me know.
Thanks in advance for your help!
J