Extract Timetable

fmorpheus34

New Member
Joined
Mar 30, 2011
Messages
14
Hi Folks!

I have the following Excel issue. I basically have a master timetable with hour entries on the left and classes on the top. The cells in the middle of the table are populated by the names of the theachers (at which time they are in which class). How can I from this extract "single timetables" for each teacher?

Thanks a lot!! :)
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Say your class times are in A2:A11 (10 lessons throughout the day) and your class names are in B1:N1 (13 different classes) you could have your teachers names in P1:AI1 (20 teachers) then in P2 use the INDEX and MATCH formulas:
=IF(ISNA(MATCH(P$1,$B2:$N2,0)),"Off",INDEX($B$1:$N$1,1,MATCH(P$1,$B2:$N2,0))) and copy down and across to give time tables for each teacher under their name header. The IF(ISNA(),"Off",) part will put an Off comment on the line if the teacher is not assigned to a class for that time period.
 
Upvote 0

Forum statistics

Threads
1,214,932
Messages
6,122,334
Members
449,077
Latest member
Jocksteriom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top