I have a spreadsheet managing a list of groups in time slots. Imagine the below are cells:
0830-0845, Bob Hoskins, Jack Table, Phil Cup
0845-0900, Bob Hoskins, J
Partial solution that is fairly easy to maintain using Pivot tables:
Get start time column:
Add new column with formula: =VALUE(MID(RC[-4],1,4))
Where RC[-4] is your original time range.
Get end time column:
Add new column with formula: =VALUE(MID(RC[-5],6,10))
Where RC[-5] is your original time range.
Concatenated names column:
=CONCATENATE(RC[-5],RC[-4],RC[-3])
Where RC[-5], RC[-4], RC[-3] are the cells with the name values.
This is for grouping in Pivot Table.
You should get something like this:
Note headers are important!
Insert a pivot table with your new extended table into a new worksheet:
Set row labels to name concatenation column.
Add start time column as value, with value field setting as min
Add end time column as value, with value field setting as max
Set the number format of min of start and max of end as '0000' so it displays time correctly
In terms of maintainability:
Simplifications/Assumptions:
With excel, my advice is always to leverage existing tools as much as possible rather than use overly complicated cell formulas which can be hard to debug and possibly less efficient.
Let me know if this output is useful enough otherwise I'll see what else can be done.