Find a Meeting Time

daveasu

Board Regular
Joined
Jan 4, 2012
Messages
55
Office Version
  1. 365
  2. 2024
Platform
  1. Windows
Hello All,
I'm attempting to create a spreadsheet that will visually show the days/times that instructors are busy to find an unused time to schedule a meeting.
I have a schedule of Names, Begin & End times, and days of the week.

Find Meeting Time.xlsx
JKLMNOPQ
3NAMEBEGIN_TIMEEND_TIMEMONDAYTUESDAYWEDNESDAYTHURSDAYFRIDAY
4Smith10501140M
5Smith9251040TR
6Smith10501205TR
7Jones9311101MTWRF
8Thomas10501255TR
9Thomas9251040TR
10Thomas13401430TR
11Thomas14401555R
12Thomas16101700R
13Jones800930MTWRF
14Jones11301245TR
15Jones13001555TR
16Jones11301400MW
Class Schedule


I have a formula that is close to finding the start times, but I'm stuck at finding if a time is within the range of the "busy" time of the instructor?
It doesn't matter if all the instructors who are busy are listed in the cell. Just one busy instructor would cancel that time slot.
In the example, I'm trying to get "Jones" to show up in the M column in the cells 815 - 1045 (although Smith could be in the 1045)

Cell Formulas
RangeFormula
C3:G38C3=XLOOKUP(1,(M:M=C$2)*($K:$K>=$B3)*($K:$K<=$B4),$J:$J,"")
Named Ranges
NameRefers ToCells
'Class Schedule'!_FilterDatabase='Class Schedule'!$J$3:$Q$17C3:G38
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
try it.
C3
=TEXTJOIN(",",TRUE,UNIQUE(FILTER($J$4:$J$16,(M$4:M$16<>"")*(($K$4:$K$16<=$B3)*($L$4:$L$16>=$B3)+($K$4:$K$16>=$B3)*($K$4:$K$16<$B4)),"")))
 
Upvote 1
Solution
Thank you Fluff & HongRu!! I was no where near your perfect solution! Thank you!
 
Upvote 0

Forum statistics

Threads
1,225,969
Messages
6,188,109
Members
453,460
Latest member
Cjohnson3

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